mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-02-01 01:29:58 +09:00
게시판 기본 스킨 IE6에서 깨어지지 않도록 수정
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@3537 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
69a0c59838
commit
08804f3721
13 changed files with 381 additions and 447 deletions
|
|
@ -52,16 +52,16 @@
|
|||
<div class="replyContent">
|
||||
<!--@if(!$comment->isAccessible())-->
|
||||
<!--%import("filter/input_password.xml")-->
|
||||
<strong>{$lang->msg_is_secret}</strong>
|
||||
<form action="./" method="get" onsubmit="return procFilter(this, input_password)">
|
||||
<input type="hidden" name="mid" value="{$mid}" />
|
||||
<input type="hidden" name="page" value="{$page}" />
|
||||
<input type="hidden" name="document_srl" value="{$comment->get('document_srl')}" />
|
||||
<input type="hidden" name="comment_srl" value="{$comment->get('comment_srl')}" />
|
||||
<div class="inputPassword">
|
||||
<input type="password" name="password" class="inputTypeText" /><span class="button"><input type="submit" value="{$lang->cmd_input}" accesskey="s" /></span>
|
||||
<div class="secretContent">
|
||||
<form action="./" method="get" onsubmit="return procFilter(this, input_password)">
|
||||
<input type="hidden" name="mid" value="{$mid}" />
|
||||
<input type="hidden" name="page" value="{$page}" />
|
||||
<input type="hidden" name="document_srl" value="{$comment->get('document_srl')}" />
|
||||
<input type="hidden" name="comment_srl" value="{$comment->get('comment_srl')}" />
|
||||
<div class="title">{$lang->msg_is_secret}</div>
|
||||
<div class="content"><input type="password" name="password" class="inputTypeText" /><span class="button"><input type="submit" value="{$lang->cmd_input}" accesskey="s" /></span></div>
|
||||
</form>
|
||||
</div>
|
||||
</form>
|
||||
<!--@else-->
|
||||
{$comment->getContent(true)}
|
||||
<!--@end-->
|
||||
|
|
|
|||
|
|
@ -22,47 +22,45 @@
|
|||
|
||||
<!-- 글쓰기 폼 -->
|
||||
<!--%import("filter/insert_comment.xml")-->
|
||||
<div class="boardWrite">
|
||||
<form action="./" method="post" onsubmit="return procFilter(this, insert_comment)" class="boardEditor" >
|
||||
<input type="hidden" name="mid" value="{$mid}" />
|
||||
<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="content" value="{htmlspecialchars($oComment->get('content'))}" />
|
||||
<input type="hidden" name="parent_srl" value="{$oComment->get('parent_srl')}" />
|
||||
|
||||
<form action="./" method="post" onsubmit="return procFilter(this, insert_comment)" class="boardEditor" >
|
||||
<fieldset>
|
||||
<input type="hidden" name="mid" value="{$mid}" />
|
||||
<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="content" value="{htmlspecialchars($oComment->get('content'))}" />
|
||||
<input type="hidden" name="parent_srl" value="{$oComment->get('parent_srl')}" />
|
||||
<div class="boardWrite commentEditor">
|
||||
|
||||
<div class="userNameAndPw">
|
||||
<!--@if(!$is_logged)-->
|
||||
<label for="userName">{$lang->writer}</label>
|
||||
<input type="text" name="nick_name" value="{$oComment->get('nick_name')}" class="userName inputTypeText" id="userName"/>
|
||||
<div class="userNameAndPw">
|
||||
<!--@if(!$is_logged)-->
|
||||
<label for="userName">{$lang->writer}</label>
|
||||
<input type="text" name="nick_name" value="{$oComment->get('nick_name')}" class="userName inputTypeText" id="userName"/>
|
||||
|
||||
<label for="userPw">{$lang->password}</label>
|
||||
<input type="password" name="password" value="" id="userPw" class="userPw inputTypeText" />
|
||||
<label for="userPw">{$lang->password}</label>
|
||||
<input type="password" name="password" value="" id="userPw" class="userPw inputTypeText" />
|
||||
|
||||
<label for="emailAddress">{$lang->email_address}</label>
|
||||
<input type="text" name="email_address" value="{htmlspecialchars($oComment->get('email_address'))}" id="emailAddress" class="emailAddress inputTypeText"/>
|
||||
<label for="emailAddress">{$lang->email_address}</label>
|
||||
<input type="text" name="email_address" value="{htmlspecialchars($oComment->get('email_address'))}" id="emailAddress" class="emailAddress inputTypeText"/>
|
||||
|
||||
<label for="homePage">{$lang->homepage}</label>
|
||||
<input type="text" name="homepage" value="{htmlspecialchars($oComment->get('homepage'))}" id="homePage" class="homePage inputTypeText"/>
|
||||
<!--@else-->
|
||||
<input type="checkbox" name="notify_message" value="Y" <!--@if($oComment->useNotify())-->checked="checked"<!--@end--> id="notify_message" />
|
||||
<label for="notify_message">{$lang->notify}</label>
|
||||
<!--@end-->
|
||||
<label for="homePage">{$lang->homepage}</label>
|
||||
<input type="text" name="homepage" value="{htmlspecialchars($oComment->get('homepage'))}" id="homePage" class="homePage inputTypeText"/>
|
||||
<!--@else-->
|
||||
<input type="checkbox" name="notify_message" value="Y" <!--@if($oComment->useNotify())-->checked="checked"<!--@end--> id="notify_message" />
|
||||
<label for="notify_message">{$lang->notify}</label>
|
||||
<!--@end-->
|
||||
|
||||
<input type="checkbox" name="is_secret" value="Y" <!--@if($oComment->isSecret())-->checked="checked"<!--@end--> id="is_secret" />
|
||||
<label for="is_secret">{$lang->secret}</label>
|
||||
</div>
|
||||
<input type="checkbox" name="is_secret" value="Y" <!--@if($oComment->isSecret())-->checked="checked"<!--@end--> id="is_secret" />
|
||||
<label for="is_secret">{$lang->secret}</label>
|
||||
</div>
|
||||
|
||||
<div <!--@if($is_logged)-->class="borderTop"<!--@end-->>{$comment_editor}</div>
|
||||
|
||||
</fieldset>
|
||||
|
||||
<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="submit" value="{$lang->cmd_comment_registration}" accesskey="s" /></span>
|
||||
</div>
|
||||
</form>
|
||||
<div class="editor">{$comment_editor}</div>
|
||||
</div>
|
||||
|
||||
<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="submit" value="{$lang->cmd_comment_registration}" accesskey="s" /></span>
|
||||
</div>
|
||||
|
||||
</form>
|
||||
|
||||
<!--#include("footer.html")-->
|
||||
|
|
|
|||
|
|
@ -10,25 +10,113 @@ Jeong, Chan Myeong 070601~070630
|
|||
**/
|
||||
|
||||
/* board Title */
|
||||
.boardHeader { border:1px solid #e1e1dd; border-bottom:none; background:#ffffff url(../images/common/bgH3.gif) repeat-x left bottom; overflow:hidden; _width:100%;}
|
||||
.boardHeader h3 { float:left; font-size:1.2em; padding:1em 2em .7em 1.2em; background:#ffffff url(../images/common/lineH3.gif) no-repeat right bottom;}
|
||||
.boardHeader { border:1px solid #e1e1dd; border-bottom:0; background:#ffffff url(../images/common/bgH3.gif) repeat-x left bottom; overflow:hidden;}
|
||||
.boardHeader .boardHeaderBorder { width:100%;}
|
||||
.boardHeader h3 { float:left; padding:15px 15px 12px 15px; font-size:1.2em; background:#ffffff url(../images/common/lineH3.gif) no-repeat right bottom;}
|
||||
|
||||
/* board Description */
|
||||
.boardDescription { color:#AEAEAE; border:1px solid #DDDDDD; overflow:hidden; padding:1em; margin-top:1em;}
|
||||
.boardDescription { color:#AEAEAE; border:1px solid #DDDDDD; overflow:hidden; padding:10px; margin-top:5px; background-color:#FFFFFF;}
|
||||
|
||||
/* board Information */
|
||||
.boardInformation { width:100%; clear:both; margin:1em 0 .5em 0; overflow:hidden; color:#666666;}
|
||||
.boardInformation { width:100%; clear:both; margin:10px 0 2px 0; overflow:hidden; color:#666666;}
|
||||
.articleNum { float:left; padding:0 0 0 15px; }
|
||||
|
||||
/* account Navigation */
|
||||
.accountNavigation { float:right; }
|
||||
.accountNavigation li { float:left; margin-left:7px; list-style:none; padding-top:3px;}
|
||||
.accountNavigation li a { font-size:12px; white-space:nowrap; color:#666666; text-decoration:none;}
|
||||
.accountNavigation li { float:left; margin-left:7px; list-style:none; }
|
||||
.accountNavigation li a { white-space:nowrap; color:#666666; text-decoration:none;}
|
||||
.accountNavigation li.setup a { background:url(../images/common/iconSetup.gif) no-repeat left top; padding-left:14px; }
|
||||
.accountNavigation li.admin a { background:url(../images/common/iconAdmin.gif) no-repeat left top; padding-left:12px; }
|
||||
.accountNavigation li.listType { margin-left:5px; }
|
||||
.accountNavigation li.loginAndLogout { background:url(../images/common/line_1x10_e0e0e0.gif) no-repeat left 5px; padding-left:8px; _padding-top:5px;}
|
||||
*:first-child+html li.loginAndLogout { padding-top:5px; }
|
||||
.accountNavigation li.loginAndLogout a { background:url(../images/common/line_1x10_e0e0e0.gif) no-repeat left 2px; padding-left:8px; }
|
||||
|
||||
/* secret Content */
|
||||
.secretContent { margin:20px auto; text-align:center; border:1px solid #EFEFEF; width:240px; }
|
||||
.secretContent .title { padding:10px 0 10px 0; background-color:#EFEFEF; display:block; font-weight:bold;}
|
||||
.secretContent .content { padding:10px 0 10px 0; background-color:#FFFFFF; display:block; }
|
||||
|
||||
/* boardRead */
|
||||
.boardRead { border:1px solid #e0e1db; margin-bottom:10px; }
|
||||
|
||||
.boardRead .readHeader { margin:15px 10px 10px 10px; border-bottom:1px solid #eff0ed; padding:0; height:22px; }
|
||||
|
||||
.boardRead .titleAndCategory { float:left;}
|
||||
.boardRead .titleAndCategory h4 { font-size:1.4em; display:inline; padding-left:.2em;}
|
||||
.boardRead .titleAndCategory .vr { margin:0 10px; color:#c5c7c0;}
|
||||
.boardRead .titleAndCategory .category { color:#999999; }
|
||||
|
||||
.boardRead .dateAndCount { font-size:.9em; float:right; white-space:nowrap; color:#999999; margin-top:6px; }
|
||||
|
||||
.boardRead .contentInfo { margin:10px 10px 0 10px; clear:both; background-color:#FFFFFF;}
|
||||
|
||||
.boardRead ul.uri { overflow:hidden; float:right; }
|
||||
.boardRead ul.uri li { color:#c5c7c0; white-space:nowrap;}
|
||||
|
||||
.boardRead .userInfo { float:left; white-space:nowrap; }
|
||||
.boardRead .userInfo .author { color:#3074a5; }
|
||||
.boardRead .userInfo .author a { font-size:.9em; color:#3074a5; text-decoration:none; }
|
||||
.boardRead .userInfo .ipaddress { font-size:.9em; color:#AAAAAA; }
|
||||
|
||||
/* extraVars list */
|
||||
.extraVarsList { width:100%; border-top:1px solid #e0e1db; border-bottom:none; margin:10px 0 10px 0; table-layout:fixed;}
|
||||
.extraVarsList th { font-weight:normal; color:#555555; text-align:left; padding:4px 0 4px 10px; border-bottom:1px solid #e0e1db; border-right:1px solid #e0e1db;}
|
||||
.extraVarsList td { color:#555555; border-bottom:1px solid #e0e1db; padding:4px 0 4px 10px; }
|
||||
.extraVarsList td a { color:#555555; }
|
||||
|
||||
.boardRead .readBody { margin:10px 10px 0 10px; color:#555555; }
|
||||
|
||||
.boardRead .tag { background:#FFFFFF url(../images/common/iconTag.gif) no-repeat 3px 2px; padding-left:25px; margin:10px 10px 0 10px; }
|
||||
.boardRead .tag li { display:inline; list-style:none; }
|
||||
.boardRead .tag li a { color:#444444;}
|
||||
|
||||
.boardRead .fileAttached { background-color:#FFFFFF; margin:10px 10px 0 10px; }
|
||||
.boardRead .fileAttached h5 { font-weight:normal; color:#999999; float:left; font-size:1em; }
|
||||
.boardRead .fileAttached li { display:block; float:left; margin:3px 5px 0 3px; list-style:none;}
|
||||
.boardRead .fileAttached li a { text-decoration:none; font-size:.9em; padding:0 0 2px 17px; white-space:nowrap; color:#444444; }
|
||||
.boardRead .fileAttached li a:visited { color:#777777;}
|
||||
|
||||
.boardRead .buttonBox { background-color:#FFFFFF; margin:20px 10px 5px 10px; overflow:hidden; }
|
||||
|
||||
.boardRead .buttonBox .replyAndTrackback { float:left; overflow:hidden; margin-top:3px; }
|
||||
.boardRead .buttonBox .replyAndTrackback a { color:#333333; white-space:nowrap; text-decoration:none;}
|
||||
.boardRead .buttonBox .replyAndTrackback a.reply { background:#FFFFFF url(../images/common/iconReply.gif) no-repeat left top; padding-left:15px; }
|
||||
.boardRead .buttonBox .replyAndTrackback a.trackback { background:#FFFFFF url(../images/common/iconTrackback.gif) no-repeat left top; padding-left:15px; margin-left:10px; }
|
||||
|
||||
.boardRead .buttonBox .contentButton { float:right; }
|
||||
|
||||
.trackbackBox { padding:.6em .6em; color:#666666; border:1px solid #e0e1db;;margin-top:.5em;}
|
||||
.trackbackBox .trackbackItem { background-color:#FFFFFF; padding:.6em .8em .6em .6em; line-height:1.25em; border-bottom:1px dotted #EEEEEE; list-style:none;}
|
||||
.trackbackBox p { display:inline; margin-bottom:1em;}
|
||||
.trackbackBox a { color:#666666; text-decoration:none;}
|
||||
.trackbackBox div { clear:both; }
|
||||
.trackbackBox address { display:block; padding:0 .3em 0 0; }
|
||||
.trackbackBox address a { font-size:.9em; color:#3074a5; margin-right:.3em; float:left;}
|
||||
.trackbackBox address .date { font:.8em Tahoma; color:#cccccc; float:right;}
|
||||
|
||||
.replyBox { padding:.6em .6em; color:#666666; border:1px solid #e0e1db; margin-top:.5em;}
|
||||
.replyBox .replyItem { background-color:#FFFFFF; padding:.6em .8em .6em .6em; line-height:1.25em; clear:both; border-bottom:1px dotted #EEEEEE; list-style:none;}
|
||||
.replyBox p { display:inline; margin-bottom:1em;}
|
||||
.replyBox .author { background-color:#FFFFFF; float:left; padding:0 .3em 0 0; font-size:.9em; color:#3074a5; margin:0 .3em .5em 0;}
|
||||
.replyBox .author a { color:#3074a5; margin-right:.3em; text-decoration:none; }
|
||||
.replyBox .voted { float:left; font-size:.9em; color:#AAAAAA; margin:0 .3em .5em 1em;}
|
||||
.replyBox .date { float:right; font:.8em Tahoma; color:#cccccc; margin:.3em 0 .5em 0;}
|
||||
|
||||
.replyBox .replyOption { float:right; white-space:nowrap; margin-left:.2em;}
|
||||
.replyBox .replyOption img { vertical-align:middle;}
|
||||
|
||||
.replyBox .replyContent { clear:left; }
|
||||
.replyBox .replyContent p { display:block; }
|
||||
.replyBox .replyContent ul li { padding:0; border:none; line-height:1.25em; list-style:disc;}
|
||||
.replyBox .replyContent ol li { padding:0; border:none; line-height:1.25em; list-style:decimal;}
|
||||
.replyBox .reply { background-color:#FAFAFA;}
|
||||
.replyBox .replyIndent { background:url(../images/common/iconReplyArrow.gif) no-repeat .0em .3em; padding-left:1.3em;}
|
||||
|
||||
.replyBox .fileAttached { _width:99%; border:1px solid #eaeae7; overflow:hidden; background:#fbfbfb; margin-top:.3em; list-style:none;}
|
||||
.replyBox .fileAttached ul { float:left; padding:.3em 1em .2em 0; margin-left:.5em; _margin-left:.25em;}
|
||||
.replyBox .fileAttached li a { font-size:.9em; white-space:nowrap; position:relative; color:#444444; }
|
||||
.replyBox .fileAttached li a:visited { color:#777777;}
|
||||
|
||||
.commentButton { margin-top:.5em; }
|
||||
|
||||
/* gallery sub menu */
|
||||
.boardSubMenu { margin:0 0 .5em 0; padding:1em 0 .5em .5em; border-bottom:1px solid #e0e1db;}
|
||||
|
|
@ -144,141 +232,31 @@ Jeong, Chan Myeong 070601~070630
|
|||
.boardSearch select { height:20px; }
|
||||
.boardSearch input { height:18px; }
|
||||
|
||||
/* boardRead */
|
||||
.boardRead { padding:0; margin:0; border:1px solid #e0e1db; border-bottom:2px solid #666760; }
|
||||
.boardRead .originalContent { padding:2em 1.2em 2em 1.2em;}
|
||||
.boardRead .readHeader { padding:0 0 .5em 0; margin-bottom:1em; border-bottom:1px solid #eff0ed; overflow:hidden;}
|
||||
|
||||
.boardRead .titleAndCategory { float:left;}
|
||||
.boardRead .titleAndCategory h4 { font-size:1.4em; display:inline; padding-left:.2em;}
|
||||
.boardRead .titleAndCategory .vr { font-size:.9em; margin:0 .3em; color:#c5c7c0;}
|
||||
.boardRead .titleAndCategory .category { font-size:.9em; color:#999999; white-space:nowrap;}
|
||||
|
||||
.boardRead .dateAndCount { float:right; white-space:nowrap; font-size:.8em; color:#999999; padding-top:5px; }
|
||||
.boardRead .dateAndCount strong { font-size:1em; font-family:Tahoma;}
|
||||
|
||||
.boardRead ul.uri { overflow:hidden; margin:0 0 2em .3em; float:right; clear:left; }
|
||||
.boardRead ul.uri li { font-size:8pt; color:#c5c7c0; }
|
||||
|
||||
.boardRead .userInfo { float:left; white-space:nowrap; }
|
||||
.boardRead .userInfo .author { color:#3074a5; }
|
||||
.boardRead .userInfo .author a { font-size:.9em; color:#3074a5; text-decoration:none; }
|
||||
.boardRead .userInfo .ipaddress { font-size:.9em; color:#AAAAAA; margin-top:.3em;}
|
||||
|
||||
.boardRead .contentBody { width:100%; overflow:hidden; }
|
||||
.boardRead .readBody { padding:0 .3em; color:#555555; overflow:hidden; margin-bottom:2em; clear:both; margin-top:2em;}
|
||||
.boardRead .readBody p { margin:1em 0; line-height:1.5em;}
|
||||
.boardRead .readBody .alignLeft { float:left; margin:0 1em 1em 0; }
|
||||
.boardRead .readBody .alignRight { float:right; margin:0 0 1em 1em; }
|
||||
.boardRead .readBody .valignCenter { vertical-align:middle;}
|
||||
.boardRead .readBody .clearBoth { display:block; margin:0 0 1em 0;}
|
||||
.boardRead .readFooter { padding:0 .3em;}
|
||||
.boardRead .readFooter .tag { margin-bottom:1em;}
|
||||
.boardRead .readFooter .tag h5 { display:inline; font-size:1em; margin-right:.5em;}
|
||||
.boardRead .readFooter .tag ul,
|
||||
.boardRead .readFooter .tag li { display:inline;}
|
||||
.boardRead .readFooter .tag a { color:#444444;}
|
||||
.boardRead .readFooter .tag .tagIcon { vertical-align:middle;}
|
||||
.boardRead .readFooter .fileAttached { border:1px solid #eaeae7; overflow:hidden; background:#fbfbfb;}
|
||||
.boardRead .readFooter .fileAttached h5 { font-weight:normal; color:#999999; float:left; font-size:1em; margin:.5em .5em 0 .5em; line-height:1.5em;}
|
||||
.boardRead .readFooter .fileAttached ul { float:left; margin-top:.5em; padding-bottom:1em; }
|
||||
.boardRead .readFooter .fileAttached li { display:inline; margin-right:.75em; line-height:1.5em;}
|
||||
.boardRead .readFooter .fileAttached li a { text-decoration:none; font-size:.9em; padding:.1em 0 .1em 1.5em; white-space:nowrap; color:#444444; }
|
||||
.boardRead .readFooter .fileAttached li a:visited { color:#777777;}
|
||||
.boardRead .buttonBox { float:right; height:40px; margin-right:1em;}
|
||||
|
||||
.boardRead .replyAndTrackbackBox { overflow:hidden; height:40px; float:left;}
|
||||
.boardRead .replyAndTrackback li { margin-top:10px; _margin-top:8px; margin-left:1em; padding-left:1.4em; float:left; list-style:none;}
|
||||
.boardRead .replyAndTrackback li.reply { background:url(../images/common/iconReply.gif) no-repeat left top;}
|
||||
.boardRead .replyAndTrackback li.reply a { _position:relative; _top:-.6em;}
|
||||
.boardRead .replyAndTrackback li.trackback { background:url(../images/common/iconTrackback.gif) no-repeat left top;}
|
||||
.boardRead .replyAndTrackback li.trackback a { _position:relative; _top:0em;}
|
||||
.boardRead .replyAndTrackback a { color:#333333; white-space:nowrap; text-decoration:none;}
|
||||
.boardRead .replyAndTrackback a#toggleReply { background:url(../images/common/buttonToggleReply.gif) no-repeat right top;}
|
||||
.boardRead .replyAndTrackback a#toggleTrackback { background:url(../images/common/buttonToggleReply.gif) no-repeat right -13px;}
|
||||
.boardRead .replyAndTrackback .listButton { position:relative; right: 10px; top:-7px; _top:-6px; float:right;}
|
||||
|
||||
/* extraVars list */
|
||||
.extraVarsList { width:100%; border:1px solid #e0e1db; clear:both; margin-bottom:1em; margin-top:1em; border-bottom:none; table-layout:fixed;}
|
||||
.extraVarsList tr.notice { background:#f8f8f8;}
|
||||
.extraVarsList tr.notice .num { font-size:.9em; font-weight:bold;}
|
||||
.extraVarsList tr.bg1 { background:#ffffff}
|
||||
.extraVarsList tr.bg2 { background:#fbfbfb;}
|
||||
.extraVarsList th { color:#3e3f3e; font-weight:bold; padding:.8em .5em .5em .5em; border-bottom:1px solid #e0e1db; border-right:1px solid #e0e1db;}
|
||||
.extraVarsList td { border-bottom:1px solid #e0e1db; padding:.5em .5em .5em 1em; overflow:hidden;}
|
||||
|
||||
.trackbackBox { padding:.6em .6em; color:#666666; border:1px solid #e0e1db;;margin-top:.5em;}
|
||||
.trackbackBox .trackbackItem { padding:.6em .8em .6em .6em; line-height:1.25em; border-bottom:1px dotted #EEEEEE; list-style:none;}
|
||||
.trackbackBox p { display:inline; margin-bottom:1em;}
|
||||
.trackbackBox a { color:#666666; text-decoration:none;}
|
||||
.trackbackBox div { clear:both; }
|
||||
.trackbackBox address { display:block; padding:0 .3em 0 0; }
|
||||
.trackbackBox address a { font-size:.9em; color:#3074a5; margin-right:.3em; float:left;}
|
||||
.trackbackBox address .date { font:.8em Tahoma; color:#cccccc; float:right;}
|
||||
|
||||
.replyBox { padding:.6em .6em; color:#666666; border:1px solid #e0e1db; margin-top:.5em;}
|
||||
.replyBox .replyItem { padding:.6em .8em .6em .6em; line-height:1.25em; clear:both; border-bottom:1px dotted #EEEEEE; list-style:none;}
|
||||
.replyBox p { display:inline; margin-bottom:1em;}
|
||||
.replyBox .author { float:left; padding:0 .3em 0 0; font-size:.9em; color:#3074a5; margin:0 .3em .5em 0;}
|
||||
.replyBox .author a { color:#3074a5; margin-right:.3em; text-decoration:none; }
|
||||
.replyBox .voted { float:left; font-size:.9em; color:#AAAAAA; margin:0 .3em .5em 1em;}
|
||||
.replyBox .date { float:right; font:.8em Tahoma; color:#cccccc; margin:.3em 0 .5em 0;}
|
||||
|
||||
.replyBox .replyOption { float:right; white-space:nowrap; margin-left:.2em;}
|
||||
.replyBox .replyOption img { vertical-align:middle;}
|
||||
|
||||
.replyBox .replyContent { clear:left; }
|
||||
.replyBox .replyContent p { display:block; }
|
||||
.replyBox .replyContent ul li { padding:0; border:none; line-height:1.25em; list-style:disc;}
|
||||
.replyBox .replyContent ol li { padding:0; border:none; line-height:1.25em; list-style:decimal;}
|
||||
.replyBox .reply { background-color:#FAFAFA;}
|
||||
.replyBox .replyIndent { background:url(../images/common/iconReplyArrow.gif) no-repeat .0em .3em; padding-left:1.3em;}
|
||||
|
||||
.replyBox .fileAttached { _width:99%; border:1px solid #eaeae7; overflow:hidden; background:#fbfbfb; margin-top:.3em; list-style:none;}
|
||||
.replyBox .fileAttached ul { float:left; padding:.3em 1em .2em 0; margin-left:.5em; _margin-left:.25em;}
|
||||
.replyBox .fileAttached li a { font-size:.9em; white-space:nowrap; position:relative; color:#444444; }
|
||||
.replyBox .fileAttached li a:visited { color:#777777;}
|
||||
|
||||
.commentButton { margin-top:.5em; }
|
||||
|
||||
/* boardEditor */
|
||||
.boardEditor { padding:.5em 0 1em 0; width:100%; overflow:hidden;}
|
||||
.boardEditor.reply { padding:.5em 1em 1em 1em; width:auto; overflow:hidden;}
|
||||
.boardEditor legend { position:absolute; overflow:hidden; width:1px; height:1px; font-size:.001em;}
|
||||
.boardEditor fieldset { _width:100%; border:1px solid #eaeae7; border-top:none;}
|
||||
.boardEditor .userNameAndPw { position:relative; background:#fbfbfb; border-top:1px solid #eaeae7; border-bottom:1px solid #e1e1e1; padding:.5em 1em; white-space:nowrap;}
|
||||
.boardEditor .userNameAndPw * { vertical-align:middle;}
|
||||
.boardEditor .userNameAndPw label { margin-right:.2em; color:#666760;}
|
||||
.boardEditor .userNameAndPw input { color:#aaaaaa;}
|
||||
.boardEditor .userNameAndPw .userName { width:6em; margin-right:.8em;}
|
||||
.boardEditor .userNameAndPw .userPw { width:5em;}
|
||||
.boardEditor .userNameAndPw .emailAddress { width:6em;}
|
||||
.boardEditor .userNameAndPw .homePage { width:6em;}
|
||||
.boardEditor .userNameAndPw .checkSecret { position:absolute; right:2em; top:.7em;}
|
||||
.boardEditor .borderTop { border-top:1px solid #eaeae7; }
|
||||
|
||||
/* boardWrite */
|
||||
.boardWrite { width:100%; position:relative;}
|
||||
.commentEditor { margin-top:10px; }
|
||||
.boardWrite { border:1px solid #e0e1db; padding-bottom:10px;}
|
||||
.boardWrite fieldset { border:none; }
|
||||
.boardWrite .userNameAndPw { margin-bottom:-1px;}
|
||||
.boardWrite .boardEditor fieldset { width:auto; position:relative;}
|
||||
.boardWrite div.title { border-bottom:1px solid #eff0ed; border-top:1px solid #eff0ed; padding:.5em 0; white-space:nowrap;}
|
||||
.boardWrite div.title label.title { display:block; float:left; font-weight:bold; padding:.4em 0 0 1.5em; width:8em; white-space:nowrap;}
|
||||
.boardWrite div.title input#title { width:60%;}
|
||||
.boardWrite .option { border-bottom:1px solid #e1e1e1; padding:.5em 0; overflow:hidden; width:100%;}
|
||||
.boardWrite .option dt { display:block; float:left; font-weight:bold; padding:.3em 0 0 1.5em; width:8em; white-space:nowrap;}
|
||||
.boardWrite .option dd { float:left; margin-right:1em; padding-top:.2em; _padding-top:.1em;}
|
||||
.boardWrite .option dd * { vertical-align:middle;}
|
||||
.boardWrite .option dd select { width:7em; font-size:.95em;height:20px;}
|
||||
.boardWrite .inputTypeText { background:#fbfbfb;}
|
||||
.boardWrite .trackbackURI { clear:both; border-top:1px solid #eff0ed; padding:4px 0 .8em 0;}
|
||||
.boardWrite .trackbackURI label { display:block; float:left; color:#333333; font-weight:bold; padding:.4em 0 0 1.5em; width:11em;}
|
||||
.boardWrite .trackbackURI .inputTypeText { width:50%;}
|
||||
.boardWrite .tag { clear:both; border-top:1px solid #eff0ed; padding:.8em 0;}
|
||||
.boardWrite .tag label { display:block; float:left; color:#333333; font-weight:bold; padding:.4em 0 0 1.5em; width:11em;}
|
||||
.boardWrite .tag .inputTypeText { width:50%;}
|
||||
.boardWrite .userNameAndPw { margin:10px 10px 0 10px; }
|
||||
.boardWrite .userNameAndPw .userName {width:80px; margin-right:10px; }
|
||||
.boardWrite .userNameAndPw .userPw {width:80px; margin-right:10px; }
|
||||
.boardWrite .userNameAndPw .emailAddress {width:80px; margin-right:10px; }
|
||||
.boardWrite .userNameAndPw .homePage {width:80px; margin-right:10px; }
|
||||
|
||||
.boardWrite .title { margin-left:10px; margin-top:5px; }
|
||||
.boardWrite .title input.title { width:60%;}
|
||||
|
||||
.boardWrite dl.option { margin:3px 0 3px 10px; padding:0;}
|
||||
.boardWrite dl.option dd { display:inline; margin-right:11px; }
|
||||
.boardWrite dl.option dd * { vertical-align:middle;}
|
||||
.boardWrite dl.option dd select { width:8em; font-size:.95em; }
|
||||
|
||||
.boardWrite .editor { border-top:1px solid #e0e1db; margin-top:10px;}
|
||||
|
||||
.boardWrite .tag { margin-left:10px; }
|
||||
.boardWrite .tag .inputTypeText { width:90%; background:#FFFFFF url(../images/common/iconTag.gif) no-repeat 5px 5px; padding-left:30px;}
|
||||
.boardWrite .tag .help { vertical-align:middle;}
|
||||
.boardWrite .tag .info { padding:.5em 0 0 .6em; margin-left:14em; font-size:.9em; color:#999999; background:url(../images/common/iconArrowD8.gif) no-repeat left center;}
|
||||
.boardWrite .tag .info { font-size:.9em; color:#999999; background:url(../images/common/iconArrowD8.gif) no-repeat left center;}
|
||||
|
||||
.boardWrite .extra_vars { clear:both; border-bottom:1px solid #eff0ed; padding-bottom:5px; }
|
||||
.boardWrite .extra_vars label { display:block; float:left; color:#333333; font-weight:bold; padding:.4em 0 0 1.5em; width:11em;}
|
||||
.boardWrite .extra_vars .info { clear:both; padding:.5em 0 0 .6em; margin-left:14em; font-size:.9em; color:#999999; background:url(../images/common/iconArrowD8.gif) no-repeat left center;}
|
||||
|
|
|
|||
|
|
@ -21,9 +21,9 @@
|
|||
.pageNavigation .current { color:#2895c0; border-right:1px solid #CCCCCC; }
|
||||
|
||||
/* boardRead */
|
||||
boardRead .readFooter .fileAttached li a { background:url(../images/cyan/iconFile.gif) no-repeat left top;}
|
||||
boardRead .fileAttached li a { background:url(../images/cyan/iconFile.gif) no-repeat left top;}
|
||||
|
||||
/* replyAndTrackback */
|
||||
.replyAndTrackback { background:url(../images/cyan/bgBoardListTh.gif) repeat-x left 0px; }
|
||||
.replyAndTrackback a strong { color:#2895c0;}
|
||||
.buttonBox .replyAndTrackback a strong { color:#2895c0;}
|
||||
|
||||
.replyBox .fileAttached li { border:0px; display:inline; margin-right:.75em; line-height:1.5em; padding:.1em 0 .1em 1.5em; background:url(../images/cyan/iconFile.gif) no-repeat left;}
|
||||
|
|
|
|||
|
|
@ -21,9 +21,9 @@
|
|||
.pageNavigation .current { color:#38b549; border-right:1px solid #CCCCCC; }
|
||||
|
||||
/* boardRead */
|
||||
.boardRead .readFooter .fileAttached li a { background:url(../images/green/iconFile.gif) no-repeat left top;}
|
||||
.boardRead .fileAttached li a { background:url(../images/green/iconFile.gif) no-repeat left top;}
|
||||
|
||||
/* replyAndTrackback */
|
||||
.replyAndTrackback { background:url(../images/green/bgBoardListTh.gif) repeat-x left 0px; }
|
||||
.replyAndTrackback a strong { color:#38b549;}
|
||||
.buttonBox .replyAndTrackback a strong { color:#38b549;}
|
||||
|
||||
.replyBox .fileAttached li { border:0px; display:inline; margin-right:.75em; line-height:1.5em; padding:.1em 0 .1em 1.5em; background:url(../images/green/iconFile.gif) no-repeat left;}
|
||||
|
|
|
|||
|
|
@ -21,9 +21,9 @@
|
|||
.pageNavigation .current { color:#b1ae00; border-right:1px solid #CCCCCC; }
|
||||
|
||||
/* boardRead */
|
||||
.boardRead .readFooter .fileAttached li a { background:url(../images/purple/iconFile.gif) no-repeat left top;}
|
||||
.boardRead .fileAttached li a { background:url(../images/purple/iconFile.gif) no-repeat left top;}
|
||||
|
||||
/* replyAndTrackback */
|
||||
.replyAndTrackback { background:url(../images/purple/bgBoardListTh.gif) repeat-x left 0px; }
|
||||
.replyAndTrackback a strong { color:#b1ae00;}
|
||||
.buttonBox .replyAndTrackback a strong { color:#b1ae00;}
|
||||
|
||||
.replyBox .fileAttached li { border:0px; display:inline; margin-right:.75em; line-height:1.5em; padding:.1em 0 .1em 1.5em; background:url(../images/purple/iconFile.gif) no-repeat left;}
|
||||
|
|
|
|||
|
|
@ -21,9 +21,9 @@
|
|||
.pageNavigation .current { color:#ff6600; border-right:1px solid #CCCCCC; }
|
||||
|
||||
/* boardRead */
|
||||
.boardRead .readFooter .fileAttached li a { background:url(../images/red/iconFile.gif) no-repeat left top;}
|
||||
.boardRead .fileAttached li a { background:url(../images/red/iconFile.gif) no-repeat left top;}
|
||||
|
||||
/* replyAndTrackback */
|
||||
.replyAndTrackback { background:url(../images/red/bgBoardListTh.gif) repeat-x left 0px; }
|
||||
.replyAndTrackback a strong { color:#ff6600;}
|
||||
.buttonBox .replyAndTrackback a strong { color:#ff6600;}
|
||||
|
||||
.replyBox .fileAttached li { border:0px; display:inline; margin-right:.75em; line-height:1.5em; padding:.1em 0 .1em 1.5em; background:url(../images/red/iconFile.gif) no-repeat left;}
|
||||
|
|
|
|||
|
|
@ -11,6 +11,9 @@
|
|||
.accountNavigation li.join a { background:url(../images/white/iconMyInfo.gif) no-repeat left top; padding-left:14px; }
|
||||
.accountNavigation li.myInfo a { background:url(../images/white/iconMyInfo.gif) no-repeat left top; padding-left:14px; }
|
||||
|
||||
/* boardRead */
|
||||
.boardRead .fileAttached li a { background:url(../images/white/iconFile.gif) no-repeat left top;}
|
||||
|
||||
/* style.list */
|
||||
.boardList th { background:#ffffff url(../images/white/lineBoardListTh.gif) no-repeat left bottom; }
|
||||
.boardList td.recommend { color:#ff6600; }
|
||||
|
|
@ -20,10 +23,7 @@
|
|||
/* pageNavigation */
|
||||
.pageNavigation .current { color:#ff6600; border-right:1px solid #CCCCCC; }
|
||||
|
||||
/* boardRead */
|
||||
.boardRead .readFooter .fileAttached li a { background:url(../images/white/iconFile.gif) no-repeat left top;}
|
||||
|
||||
/* replyAndTrackback */
|
||||
.replyAndTrackback { background:url(../images/white/bgBoardListTh.gif) repeat-x left 0px; }
|
||||
.replyAndTrackback a strong { color:#ff6600;}
|
||||
.buttonBox .replyAndTrackback a strong { color:#ff6600;}
|
||||
|
||||
.replyBox .fileAttached li { border:0px; display:inline; margin-right:.75em; line-height:1.5em; padding:.1em 0 .1em 1.5em; background:url(../images/white/iconFile.gif) no-repeat left;}
|
||||
|
|
|
|||
|
|
@ -52,7 +52,9 @@
|
|||
<!-- 스킨의 제목/간단한 설명 출력 -->
|
||||
<!--@if($module_info->title)-->
|
||||
<div class="boardHeader">
|
||||
<h3>{$module_info->title}<!--@if($module_info->sub_title)--> - {$module_info->sub_title}<!--@end--></h3>
|
||||
<div class="boardHeaderBorder">
|
||||
<h3>{$module_info->title}<!--@if($module_info->sub_title)--> - {$module_info->sub_title}<!--@end--></h3>
|
||||
</div>
|
||||
</div>
|
||||
<!--@end-->
|
||||
|
||||
|
|
@ -112,4 +114,5 @@
|
|||
<li class="listType"><a href="{getUrl('listStyle','gallery','act','')}"><img src="./images/common/typeGallery.gif" border="0" width="13" height="13" alt="Gallery" /></a></li>
|
||||
<!--@end-->
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@
|
|||
<h4>{$oDocument->getTitle()}</h4>
|
||||
|
||||
<!--@if($module_info->use_category == "Y" && $oDocument->get('category_srl'))-->
|
||||
<span class="vr">|</span><span class="category">{$category_list[$oDocument->get('category_srl')]->title}</span>
|
||||
<span class="vr">-</span><span class="category">{$category_list[$oDocument->get('category_srl')]->title}</span>
|
||||
<!--@end-->
|
||||
</div>
|
||||
|
||||
|
|
@ -22,41 +22,44 @@
|
|||
|
||||
<strong>{$oDocument->getRegdate('Y.m.d')}</strong> {$oDocument->getRegdate('H:i:s')}
|
||||
</div>
|
||||
|
||||
<div class="clear"></div>
|
||||
</div>
|
||||
|
||||
<ul class="uri">
|
||||
<li>{$lang->document_url} : {$oDocument->getPermanentUrl()}</li>
|
||||
<!--@if($oDocument->allowTrackback())-->
|
||||
<li>{$lang->trackback_url} : {$oDocument->getTrackbackUrl()}</li>
|
||||
<!--@end-->
|
||||
</ul>
|
||||
|
||||
<div class="userInfo">
|
||||
<!--@if(!$oDocument->getMemberSrl())-->
|
||||
<div class="author">
|
||||
<!--@if($oDocument->isExistsHomepage())-->
|
||||
<a href="{$oDocument->getHomepageUrl()}" onclick="window.open(this.href);return false;">{$oDocument->getNickName()}</a>
|
||||
<div class="contentInfo">
|
||||
<div class="userInfo">
|
||||
<!--@if(!$oDocument->getMemberSrl())-->
|
||||
<div class="author">
|
||||
<!--@if($oDocument->isExistsHomepage())-->
|
||||
<a href="{$oDocument->getHomepageUrl()}" onclick="window.open(this.href);return false;">{$oDocument->getNickName()}</a>
|
||||
<!--@else-->
|
||||
{$oDocument->getNickName()}
|
||||
<!--@end-->
|
||||
</div>
|
||||
<!--@else-->
|
||||
{$oDocument->getNickName()}
|
||||
<div class="author"><span class="member_{$oDocument->get('member_srl')}">{$oDocument->getNickName()}</span></div>
|
||||
<!--@end-->
|
||||
</div>
|
||||
<!--@else-->
|
||||
<div class="author"><span class="member_{$oDocument->get('member_srl')}">{$oDocument->getNickName()}</span></div>
|
||||
<!--@end-->
|
||||
|
||||
<!--@if($grant->is_admin)-->
|
||||
<div class="ipaddress">{$oDocument->get('ipaddress')}</div>
|
||||
<!--@end-->
|
||||
<!--@if($grant->is_admin)-->
|
||||
<div class="ipaddress">{$oDocument->get('ipaddress')}</div>
|
||||
<!--@end-->
|
||||
</div>
|
||||
<ul class="uri">
|
||||
<li>{$lang->document_url} : {$oDocument->getPermanentUrl()}</li>
|
||||
<!--@if($oDocument->allowTrackback())-->
|
||||
<li>{$lang->trackback_url} : {$oDocument->getTrackbackUrl()}</li>
|
||||
<!--@end-->
|
||||
</ul>
|
||||
<div class="clear"></div>
|
||||
</div>
|
||||
|
||||
<!--@if($oDocument->isExtraVarsExists())-->
|
||||
<!--@if($oDocument->isExtraVarsExists() && (!$oDocument->isSecret() || $oDocument->isGranted()) )-->
|
||||
<table cellspacing="0" summary="" class="extraVarsList">
|
||||
<col width="150" />
|
||||
<col />
|
||||
<!--@foreach($module_info->extra_vars as $key => $val)-->
|
||||
<!--@if($val->name)-->
|
||||
<tr class="bg{($key+1)%2+1}">
|
||||
<tr>
|
||||
<th scope="row">{$val->name}</th>
|
||||
<td>
|
||||
<!-- 확장변수(extra_var)의 type에 따른 값을 출력하기 위해서 특별히 제작된 파일을 include 한다 -->
|
||||
|
|
@ -70,81 +73,75 @@
|
|||
|
||||
<div class="readBody">
|
||||
<div class="contentBody">
|
||||
|
||||
<!--@if($oDocument->isSecret() && !$oDocument->isGranted())-->
|
||||
<!--%import("filter/input_password.xml")-->
|
||||
<strong>{$lang->msg_is_secret}</strong>
|
||||
<form action="./" method="get" onsubmit="return procFilter(this, input_password)">
|
||||
<input type="hidden" name="mid" value="{$mid}" />
|
||||
<input type="hidden" name="page" value="{$page}" />
|
||||
<input type="hidden" name="document_srl" value="{$oDocument->document_srl}" />
|
||||
<div class="secretContent">
|
||||
<form action="./" method="get" onsubmit="return procFilter(this, input_password)">
|
||||
<input type="hidden" name="mid" value="{$mid}" />
|
||||
<input type="hidden" name="page" value="{$page}" />
|
||||
<input type="hidden" name="document_srl" value="{$oDocument->document_srl}" />
|
||||
|
||||
<div class="inputPassword">
|
||||
<input type="password" name="password" id="cpw" class="inputTypeText" /><span class="button"><input type="submit" value="{$lang->cmd_input}" accesskey="s" /></span>
|
||||
</div>
|
||||
<div class="title">{$lang->msg_is_secret}</div>
|
||||
<div class="content"><input type="password" name="password" id="cpw" class="inputTypeText" /><span class="button"><input type="submit" value="{$lang->cmd_input}" accesskey="s" /></span></div>
|
||||
|
||||
</form>
|
||||
</form>
|
||||
</div>
|
||||
<!--@else-->
|
||||
{$oDocument->getContent()}
|
||||
<!--@end-->
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="readFooter">
|
||||
{@ $tag_list = $oDocument->get('tag_list') }
|
||||
<!--@if(count($tag_list))-->
|
||||
<div class="tag">
|
||||
<h5><img src="./images/common/iconTag.gif" alt="{$lang->tag}" width="17" height="10" class="tagIcon" /></h5>
|
||||
<ul>
|
||||
<!--@for($i=0;$i<count($tag_list);$i++)-->
|
||||
{@ $tag = $tag_list[$i]; }
|
||||
<li>
|
||||
<a href="{getUrl('search_target','tag','search_keyword',urlencode($tag),'document_srl','')}" rel="tag">{htmlspecialchars($tag)}</a><!--@if($i<count($tag_list)-1)-->,<!--@end-->
|
||||
</li>
|
||||
<!--@end-->
|
||||
</ul>
|
||||
</div>
|
||||
<!--@end-->
|
||||
|
||||
<!--@if($oDocument->hasUploadedFiles())-->
|
||||
<div class="fileAttached">
|
||||
<h5>{$lang->uploaded_file} : </h5>
|
||||
<ul>
|
||||
{@ $uploaded_list = $oDocument->getUploadedFiles() }
|
||||
<!--@foreach($uploaded_list as $key => $file)-->
|
||||
<li><a href="{getUrl('')}{$file->download_url}">{$file->source_filename} ({FileHandler::filesize($file->file_size)})({number_format($file->download_count)})</a></li>
|
||||
<!--@end-->
|
||||
</ul>
|
||||
<div class="clear"></div>
|
||||
</div>
|
||||
<!--@end-->
|
||||
{@ $tag_list = $oDocument->get('tag_list') }
|
||||
<!--@if(count($tag_list))-->
|
||||
<div class="tag">
|
||||
<ul>
|
||||
<!--@for($i=0;$i<count($tag_list);$i++)-->
|
||||
{@ $tag = $tag_list[$i]; }
|
||||
<li><a href="{getUrl('search_target','tag','search_keyword',urlencode($tag),'document_srl','')}" rel="tag">{htmlspecialchars($tag)}</a><!--@if($i<count($tag_list)-1)-->, <!--@end--></li>
|
||||
<!--@end-->
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<!--@end-->
|
||||
|
||||
<div class="replyAndTrackbackBox">
|
||||
<ul class="replyAndTrackback">
|
||||
<!--@if($grant->write_comment && $oDocument->allowComment()) -->
|
||||
<li class="reply"><a href="#comment">{$lang->comment} : <strong>{$oDocument->getCommentcount()}</strong></a></li>
|
||||
<!--@end-->
|
||||
|
||||
<!--@if($oDocument->allowTrackback())-->
|
||||
<li class="trackback"><a href="#trackback">{$lang->trackback} : <strong>{$oDocument->getTrackbackCount()}</strong></a></li>
|
||||
<!--@end-->
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<!-- 목록, 수정/삭제 버튼 -->
|
||||
<div class="buttonBox">
|
||||
<a href="{getUrl('document_srl','')}" class="button"><span>{$lang->cmd_list}</span></a>
|
||||
<!--@if($oDocument->isEditable())-->
|
||||
<a href="{getUrl('act','dispBoardWrite','document_srl',$oDocument->document_srl)}" class="button"><span>{$lang->cmd_modify}</span></a>
|
||||
<a href="{getUrl('act','dispBoardDelete','document_srl',$oDocument->document_srl)}" class="button"><span>{$lang->cmd_delete}</span></a>
|
||||
<!--@if($oDocument->hasUploadedFiles())-->
|
||||
<div class="fileAttached">
|
||||
<h5>{$lang->uploaded_file} : </h5>
|
||||
<ul>
|
||||
{@ $uploaded_list = $oDocument->getUploadedFiles() }
|
||||
<!--@foreach($uploaded_list as $key => $file)-->
|
||||
<li><a href="{getUrl('')}{$file->download_url}">{$file->source_filename} ({FileHandler::filesize($file->file_size)})({number_format($file->download_count)})</a></li>
|
||||
<!--@end-->
|
||||
</ul>
|
||||
<div class="clear"></div>
|
||||
</div>
|
||||
<!--@end-->
|
||||
</div>
|
||||
|
||||
<div class="buttonBox">
|
||||
<div class="replyAndTrackback">
|
||||
<!--@if($grant->write_comment && $oDocument->allowComment()) -->
|
||||
<a href="#comment" class="reply">{$lang->comment} : <strong>{$oDocument->getCommentcount()}</strong></a>
|
||||
<!--@end-->
|
||||
<!--@if($oDocument->allowTrackback())-->
|
||||
<a href="#trackback" class="trackback">{$lang->trackback} : <strong>{$oDocument->getTrackbackCount()}</strong></a>
|
||||
<!--@end-->
|
||||
</div>
|
||||
|
||||
<!-- 목록, 수정/삭제 버튼 -->
|
||||
<div class="contentButton">
|
||||
<a href="{getUrl('document_srl','')}" class="button"><span>{$lang->cmd_list}</span></a>
|
||||
<!--@if($oDocument->isEditable())-->
|
||||
<a href="{getUrl('act','dispBoardWrite','document_srl',$oDocument->document_srl)}" class="button"><span>{$lang->cmd_modify}</span></a>
|
||||
<a href="{getUrl('act','dispBoardDelete','document_srl',$oDocument->document_srl)}" class="button"><span>{$lang->cmd_delete}</span></a>
|
||||
<!--@end-->
|
||||
</div>
|
||||
</div>
|
||||
<div class="clear"></div>
|
||||
</div>
|
||||
|
||||
|
||||
<!-- 엮인글 -->
|
||||
<!--@if($oDocument->allowTrackback())-->
|
||||
<a name="trackback"></a>
|
||||
|
|
@ -158,45 +155,40 @@
|
|||
<!-- 댓글 입력 폼 -->
|
||||
<!--@if($grant->write_comment && !$oDocument->isLocked() && $oDocument->allowComment() )-->
|
||||
<!--%import("filter/insert_comment.xml")-->
|
||||
<div class="boardWrite">
|
||||
<form action="./" method="post" onsubmit="return procFilter(this, insert_comment)" class="boardEditor" >
|
||||
<input type="hidden" name="mid" value="{$mid}" />
|
||||
<input type="hidden" name="document_srl" value="{$document_srl}" />
|
||||
<input type="hidden" name="comment_srl" value="" />
|
||||
<input type="hidden" name="content" value="" />
|
||||
<div class="boardWrite commentEditor">
|
||||
<div class="userNameAndPw">
|
||||
<!--@if(!$is_logged)-->
|
||||
<label for="userName">{$lang->writer}</label>
|
||||
<input type="text" name="nick_name" value="" class="userName inputTypeText" id="userName"/>
|
||||
|
||||
<form action="./" method="post" onsubmit="return procFilter(this, insert_comment)" class="boardEditor" >
|
||||
<fieldset>
|
||||
<input type="hidden" name="mid" value="{$mid}" />
|
||||
<input type="hidden" name="document_srl" value="{$document_srl}" />
|
||||
<input type="hidden" name="comment_srl" value="" />
|
||||
<input type="hidden" name="content" value="" />
|
||||
<label for="userPw">{$lang->password}</label>
|
||||
<input type="password" name="password" value="" id="userPw" class="userPw inputTypeText" />
|
||||
|
||||
<div class="userNameAndPw">
|
||||
<!--@if(!$is_logged)-->
|
||||
<label for="userName">{$lang->writer}</label>
|
||||
<input type="text" name="nick_name" value="" class="userName inputTypeText" id="userName"/>
|
||||
<label for="emailAddress">{$lang->email_address}</label>
|
||||
<input type="text" name="email_address" value="" id="emailAddress" class="emailAddress inputTypeText"/>
|
||||
|
||||
<label for="userPw">{$lang->password}</label>
|
||||
<input type="password" name="password" value="" id="userPw" class="userPw inputTypeText" />
|
||||
<label for="homePage">{$lang->homepage}</label>
|
||||
<input type="text" name="homepage" value="" id="homePage" class="homePage inputTypeText"/>
|
||||
<!--@else-->
|
||||
<input type="checkbox" name="notify_message" value="Y" id="notify_message" />
|
||||
<label for="notify_message">{$lang->notify}</label>
|
||||
<!--@end-->
|
||||
|
||||
<label for="emailAddress">{$lang->email_address}</label>
|
||||
<input type="text" name="email_address" value="" id="emailAddress" class="emailAddress inputTypeText"/>
|
||||
<input type="checkbox" name="is_secret" value="Y" id="is_secret" />
|
||||
<label for="is_secret">{$lang->secret}</label>
|
||||
|
||||
<label for="homePage">{$lang->homepage}</label>
|
||||
<input type="text" name="homepage" value="" id="homePage" class="homePage inputTypeText"/>
|
||||
<!--@else-->
|
||||
<input type="checkbox" name="notify_message" value="Y" id="notify_message" />
|
||||
<label for="notify_message">{$lang->notify}</label>
|
||||
<!--@end-->
|
||||
|
||||
<input type="checkbox" name="is_secret" value="Y" id="is_secret" />
|
||||
<label for="is_secret">{$lang->secret}</label>
|
||||
|
||||
</div>
|
||||
|
||||
<div <!--@if($is_logged)-->class="borderTop"<!--@end-->>{$comment_editor}</div>
|
||||
|
||||
</fieldset>
|
||||
|
||||
<div class="commentButton tRight">
|
||||
<span class="button"><input type="submit" value="{$lang->cmd_comment_registration}" accesskey="s" /></span>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
|
||||
<div class="editor">{$comment_editor}</div>
|
||||
</div>
|
||||
|
||||
<div class="commentButton tRight">
|
||||
<span class="button"><input type="submit" value="{$lang->cmd_comment_registration}" accesskey="s" /></span>
|
||||
</div>
|
||||
</form>
|
||||
<!--@end-->
|
||||
|
|
|
|||
|
|
@ -1,106 +1,99 @@
|
|||
<!--%import("filter/insert.xml")-->
|
||||
<!--#include("header.html")-->
|
||||
|
||||
<form action="./" method="post" onsubmit="return procFilter(this, window.insert)" id="fo_write">
|
||||
<input type="hidden" name="mid" value="{$mid}" />
|
||||
<input type="hidden" name="content" value="{$oDocument->getContentText()}" />
|
||||
<input type="hidden" name="document_srl" value="{$document_srl}" />
|
||||
|
||||
<div class="boardWrite">
|
||||
<form action="./" method="post" onsubmit="return procFilter(this, window.insert)" id="fo_write">
|
||||
<fieldset>
|
||||
<input type="hidden" name="mid" value="{$mid}" />
|
||||
<input type="hidden" name="content" value="{$oDocument->getContentText()}" />
|
||||
<input type="hidden" name="document_srl" value="{$document_srl}" />
|
||||
<!--@if(!$is_logged)-->
|
||||
<div class="userNameAndPw">
|
||||
<label for="userName">{$lang->writer}</label>
|
||||
<input type="text" name="nick_name" value="{$oDocument->getNickName()}" class="userName inputTypeText" id="userName"/>
|
||||
|
||||
<!--@if(!$is_logged)-->
|
||||
<div class="userNameAndPw">
|
||||
<label for="userName">{$lang->writer}</label>
|
||||
<input type="text" name="nick_name" value="{$oDocument->getNickName()}" class="userName inputTypeText" id="userName"/>
|
||||
<label for="userPw">{$lang->password}</label>
|
||||
<input type="password" name="password" value="" id="userPw" class="userPw inputTypeText" />
|
||||
|
||||
<label for="userPw">{$lang->password}</label>
|
||||
<input type="password" name="password" value="" id="userPw" class="userPw inputTypeText" />
|
||||
<label for="emailAddress">{$lang->email_address}</label>
|
||||
<input type="text" name="email_address" value="{htmlspecialchars($oDocument->get('email_address'))}" id="emailAddress" class="emailAddress inputTypeText"/>
|
||||
|
||||
<label for="emailAddress">{$lang->email_address}</label>
|
||||
<input type="text" name="email_address" value="{htmlspecialchars($oDocument->get('email_address'))}" id="emailAddress" class="emailAddress inputTypeText"/>
|
||||
<label for="homePage">{$lang->homepage}</label>
|
||||
<input type="text" name="homepage" value="{htmlspecialchars($oDocument->get('homepage'))}" id="homePage" class="homePage inputTypeText"/>
|
||||
</div>
|
||||
<!--@end-->
|
||||
|
||||
<label for="homePage">{$lang->homepage}</label>
|
||||
<input type="text" name="homepage" value="{htmlspecialchars($oDocument->get('homepage'))}" id="homePage" class="homePage inputTypeText"/>
|
||||
</div>
|
||||
<div class="title">
|
||||
<!--@if($module_info->use_category=="Y")-->
|
||||
<select name="category_srl" >
|
||||
<option value="">{$lang->category}</option>
|
||||
<!--@foreach($category_list as $val)-->
|
||||
<option value="{$val->category_srl}" <!--@if($category==$val->category_srl||$val->category_srl==$oDocument->get('category_srl'))-->selected="selected"<!--@end-->>{$val->title} <!--@if($val->document_count)-->({$val->document_count})<!--@end--></option>
|
||||
<!--@end-->
|
||||
</select>
|
||||
<!--@end-->
|
||||
<input type="text" name="title" class="title inputTypeText" value="{htmlspecialchars($oDocument->getTitleText())}" />
|
||||
</div>
|
||||
|
||||
<div class="title">
|
||||
<label for="title" class="title">{$lang->title}</label>
|
||||
|
||||
<!--@if($module_info->use_category=="Y")-->
|
||||
<select name="category_srl" >
|
||||
<option value="">{$lang->category}</option>
|
||||
<!--@foreach($category_list as $val)-->
|
||||
<option value="{$val->category_srl}" <!--@if($category==$val->category_srl||$val->category_srl==$oDocument->get('category_srl'))-->selected="selected"<!--@end-->>{$val->title} <!--@if($val->document_count)-->({$val->document_count})<!--@end--></option>
|
||||
<!--@end-->
|
||||
</select>
|
||||
<dl class="option">
|
||||
<!--@if($grant->manager)-->
|
||||
{@ $_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;">
|
||||
<option value="" style="background-color:none;">{$lang->title_color}</option>
|
||||
<!--@foreach($_color as $_col)-->
|
||||
<option value="{$_col}" style="background-color:#{$_col}" <!--@if($oDocument->get('title_color')==$_col)-->selected="selected"<!--@end-->>{$lang->title_color}</option>
|
||||
<!--@end-->
|
||||
</select></dd>
|
||||
<dd>
|
||||
<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>
|
||||
</dd>
|
||||
<dd>
|
||||
<input type="checkbox" name="is_notice" value="Y" <!--@if($oDocument->isNotice())-->checked="checked"<!--@end--> id="is_notice" />
|
||||
<label for="is_notice">{$lang->notice}</label>
|
||||
</dd>
|
||||
<dd>
|
||||
<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>
|
||||
</dd>
|
||||
<!--@end-->
|
||||
<dd>
|
||||
<input type="checkbox" name="is_secret" value="Y" <!--@if($oDocument->isSecret())-->checked="checked"<!--@end--> id="is_secret" />
|
||||
<label for="is_secret">{$lang->secret}</label>
|
||||
</dd>
|
||||
<dd>
|
||||
<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>
|
||||
</dd>
|
||||
<dd>
|
||||
<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>
|
||||
</dd>
|
||||
<!--@if($is_logged)-->
|
||||
<dd>
|
||||
<input type="checkbox" name="notify_message" value="Y" <!--@if($oDocument->useNotify())-->checked="checked"<!--@end--> id="notify_message" />
|
||||
<label for="notify_message">{$lang->notify}</label>
|
||||
</dd>
|
||||
<!--@end-->
|
||||
</dl>
|
||||
|
||||
<input type="text" name="title" id="title" class="inputTypeText" value="{htmlspecialchars($oDocument->getTitleText())}" />
|
||||
</div>
|
||||
<!--@foreach($module_info->extra_vars as $key => $val)-->
|
||||
<!--@if($val->name)-->
|
||||
<div class="extra_vars">
|
||||
<label>{$val->name} <!--@if($val->is_required=='Y')-->*<!--@end--></label>
|
||||
<!-- 확장변수(extra_var)의 type에 따른 form을 출력하기 위해서 특별히 제작된 파일을 include 한다 -->
|
||||
<!--#include("./extra_var_form.html")-->
|
||||
</div>
|
||||
<!--@end-->
|
||||
<!--@end-->
|
||||
|
||||
<dl class="option">
|
||||
<dt>{$lang->cmd_option}</dt>
|
||||
<!--@if($grant->manager)-->
|
||||
{@ $_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;">
|
||||
<option value="" style="background-color:none;">{$lang->title_color}</option>
|
||||
<!--@foreach($_color as $_col)-->
|
||||
<option value="{$_col}" style="background-color:#{$_col}" <!--@if($oDocument->get('title_color')==$_col)-->selected="selected"<!--@end-->>{$lang->title_color}</option>
|
||||
<!--@end-->
|
||||
</select></dd>
|
||||
<dd>
|
||||
<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>
|
||||
</dd>
|
||||
<dd>
|
||||
<input type="checkbox" name="is_notice" value="Y" <!--@if($oDocument->isNotice())-->checked="checked"<!--@end--> id="is_notice" />
|
||||
<label for="is_notice">{$lang->notice}</label>
|
||||
</dd>
|
||||
<dd>
|
||||
<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>
|
||||
</dd>
|
||||
<!--@end-->
|
||||
<dd>
|
||||
<input type="checkbox" name="is_secret" value="Y" <!--@if($oDocument->isSecret())-->checked="checked"<!--@end--> id="is_secret" />
|
||||
<label for="is_secret">{$lang->secret}</label>
|
||||
</dd>
|
||||
<dd>
|
||||
<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>
|
||||
</dd>
|
||||
<dd>
|
||||
<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>
|
||||
</dd>
|
||||
<!--@if($is_logged)-->
|
||||
<dd>
|
||||
<input type="checkbox" name="notify_message" value="Y" <!--@if($oDocument->useNotify())-->checked="checked"<!--@end--> id="notify_message" />
|
||||
<label for="notify_message">{$lang->notify}</label>
|
||||
</dd>
|
||||
<!--@end-->
|
||||
</dl>
|
||||
<div class="editor">{$editor}</div>
|
||||
|
||||
<!--@foreach($module_info->extra_vars as $key => $val)-->
|
||||
<!--@if($val->name)-->
|
||||
<div class="extra_vars">
|
||||
<label>{$val->name} <!--@if($val->is_required=='Y')-->*<!--@end--></label>
|
||||
<!-- 확장변수(extra_var)의 type에 따른 form을 출력하기 위해서 특별히 제작된 파일을 include 한다 -->
|
||||
<!--#include("./extra_var_form.html")-->
|
||||
</div>
|
||||
<!--@end-->
|
||||
<!--@end-->
|
||||
|
||||
<div>{$editor}</div>
|
||||
|
||||
<div class="tag">
|
||||
<label for="tag_input">{$lang->tag}</label>
|
||||
<input type="text" name="tags" id="tag_input" value="{htmlspecialchars($oDocument->get('tags'))}" class="inputTypeText" />
|
||||
<p class="info">{$lang->about_tag}</p>
|
||||
</div>
|
||||
|
||||
</fieldset>
|
||||
<div class="tag">
|
||||
<input type="text" name="tags" value="{htmlspecialchars($oDocument->get('tags'))}" class="inputTypeText" />
|
||||
<p class="info">{$lang->about_tag}</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="fl gap1">
|
||||
<!--@if($is_logged)-->
|
||||
|
|
@ -117,5 +110,4 @@
|
|||
|
||||
<div class="clear"></div>
|
||||
</form>
|
||||
</div>
|
||||
<!--#include("footer.html")-->
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue