cozy_simple 스킨의 댓글 부분을 table로 일단 처리. (div중첩시 IE6에서 다운되는 현상 발견..)

git-svn-id: http://xe-core.googlecode.com/svn/trunk@2169 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
zero 2007-08-04 03:49:47 +00:00
parent cd30ec4085
commit c47db285b2
4 changed files with 164 additions and 124 deletions

View file

@ -6,43 +6,53 @@
<div class="contentBox <!--@if($val->depth>0)-->indent_box<!--@end--> <!--@if($idx>0)-->top_border<!--@end-->"> <div class="contentBox <!--@if($val->depth>0)-->indent_box<!--@end--> <!--@if($idx>0)-->top_border<!--@end-->">
<!--@if($val->depth>0)--> <!--@if($val->depth>0)-->
<div style="padding-left:{($val->depth*1.5)}em;"> <div style="margin-left:{($val->depth*1.5)}em;">
<div class="indent"> <div class="indent">
<!--@end--> <!--@end-->
<div class="content"> <table cellspacing="0" width="100%">
{$val->content} <col />
</div> <col width="120" />
<tr>
<div class="author member_{$val->member_srl}">{htmlspecialchars($val->nick_name)}</div> <td>{$val->content}</td>
<div class="replyOption"> <td class="tRight" valign="top">
<!--@if($val->is_granted || !$val->member_srl || $grant->is_admin)--> <!--@if($val->is_granted || !$val->member_srl || $grant->is_admin)-->
<a href="{getUrl('act','dispBlogDeleteComment','comment_srl',$val->comment_srl)}"><img src="./images/common/btn_delete.gif" alt="{$lang->cmd_delete}" /></a> <a href="{getUrl('act','dispBoardDeleteComment','comment_srl',$val->comment_srl)}"><img src="./images/common/btn_delete.gif" alt="{$lang->cmd_delete}" /></a>
<a href="{getUrl('act','dispBlogModifyComment','comment_srl',$val->comment_srl)}"><img src="./images/common/btn_edit.gif" alt="{$lang->cmd_modify}" /></a> <a href="{getUrl('act','dispBoardModifyComment','comment_srl',$val->comment_srl)}"><img src="./images/common/btn_edit.gif" alt="{$lang->cmd_modify}" /></a>
<!--@end--> <!--@end-->
<a href="{getUrl('act','dispBlogReplyComment','comment_srl',$val->comment_srl)}"><img src="./images/common/btn_reply.gif" alt="{$lang->cmd_reply}" /></a> <a href="{getUrl('act','dispBoardReplyComment','comment_srl',$val->comment_srl)}"><img src="./images/common/btn_reply.gif" alt="{$lang->cmd_reply}" /></a>
</div> </td>
<span class="date"> </tr>
{zdate($val->regdate, "Y.m.d H:i")}
<!--@if($grant->is_admin)-->
({$val->ipaddress})
<!--@end-->
</span>
<!--@if($val->uploaded_count && $val->uploaded_list)--> <!--@if($val->uploaded_count && $val->uploaded_list)-->
<div class="fileAttached"> <tr>
<ul> <td colspan="2">
<!--@foreach($val->uploaded_list as $key => $file)--> <div class="fileAttached">
<li><img src="./images/common/iconFile.gif" alt="attached file" /><a href="{getUrl('')}{$file->download_url}">{$file->source_filename} ({FileHandler::filesize($file->file_size)})({number_format($file->download_count)})</a></li> <ul>
<!--@end--> <!--@foreach($val->uploaded_list as $key => $file)-->
</ul> <li><img src="./images/common/iconFile.gif" alt="attached file" /><a href="{getUrl('')}{$file->download_url}">{$file->source_filename} ({FileHandler::filesize($file->file_size)})({number_format($file->download_count)})</a></li>
</div> <!--@end-->
<div class="clear"></div> </ul>
</div>
<div class="clear"></div>
</td>
</tr>
<!--@end--> <!--@end-->
<tr>
<td><div class="author member_{$val->member_srl}">{htmlspecialchars($val->nick_name)}</div></td>
<td>
<span class="date">
{zdate($val->regdate, "Y.m.d H:i")}
<!--@if($grant->is_admin)-->
({$val->ipaddress})
<!--@end-->
</span>
</td>
</tr>
</table>
<!--@if($val->depth>0)--> <!--@if($val->depth>0)-->
</div> </div>
</div> </div>
<!--@end--> <!--@end-->
</div> </div>

View file

@ -6,43 +6,53 @@
<div class="contentBox <!--@if($val->depth>0)-->indent_box<!--@end--> <!--@if($idx>0)-->top_border<!--@end-->"> <div class="contentBox <!--@if($val->depth>0)-->indent_box<!--@end--> <!--@if($idx>0)-->top_border<!--@end-->">
<!--@if($val->depth>0)--> <!--@if($val->depth>0)-->
<div style="padding-left:{($val->depth*1.5)}em;"> <div style="margin-left:{($val->depth*1.5)}em;">
<div class="indent"> <div class="indent">
<!--@end--> <!--@end-->
<div class="content"> <table cellspacing="0" width="100%">
{$val->content} <col />
</div> <col width="120" />
<tr>
<div class="author member_{$val->member_srl}">{htmlspecialchars($val->nick_name)}</div> <td>{$val->content}</td>
<div class="replyOption"> <td class="tRight" valign="top">
<!--@if($val->is_granted || !$val->member_srl || $grant->is_admin)--> <!--@if($val->is_granted || !$val->member_srl || $grant->is_admin)-->
<a href="{getUrl('act','dispBoardDeleteComment','comment_srl',$val->comment_srl)}"><img src="./images/common/btn_delete.gif" alt="{$lang->cmd_delete}" /></a> <a href="{getUrl('act','dispBoardDeleteComment','comment_srl',$val->comment_srl)}"><img src="./images/common/btn_delete.gif" alt="{$lang->cmd_delete}" /></a>
<a href="{getUrl('act','dispBoardModifyComment','comment_srl',$val->comment_srl)}"><img src="./images/common/btn_edit.gif" alt="{$lang->cmd_modify}" /></a> <a href="{getUrl('act','dispBoardModifyComment','comment_srl',$val->comment_srl)}"><img src="./images/common/btn_edit.gif" alt="{$lang->cmd_modify}" /></a>
<!--@end--> <!--@end-->
<a href="{getUrl('act','dispBoardReplyComment','comment_srl',$val->comment_srl)}"><img src="./images/common/btn_reply.gif" alt="{$lang->cmd_reply}" /></a> <a href="{getUrl('act','dispBoardReplyComment','comment_srl',$val->comment_srl)}"><img src="./images/common/btn_reply.gif" alt="{$lang->cmd_reply}" /></a>
</div> </td>
<span class="date"> </tr>
{zdate($val->regdate, "Y.m.d H:i")}
<!--@if($grant->is_admin)-->
({$val->ipaddress})
<!--@end-->
</span>
<!--@if($val->uploaded_count && $val->uploaded_list)--> <!--@if($val->uploaded_count && $val->uploaded_list)-->
<div class="fileAttached"> <tr>
<ul> <td colspan="2">
<!--@foreach($val->uploaded_list as $key => $file)--> <div class="fileAttached">
<li><img src="./images/common/iconFile.gif" alt="attached file" /><a href="{getUrl('')}{$file->download_url}">{$file->source_filename} ({FileHandler::filesize($file->file_size)})({number_format($file->download_count)})</a></li> <ul>
<!--@end--> <!--@foreach($val->uploaded_list as $key => $file)-->
</ul> <li><img src="./images/common/iconFile.gif" alt="attached file" /><a href="{getUrl('')}{$file->download_url}">{$file->source_filename} ({FileHandler::filesize($file->file_size)})({number_format($file->download_count)})</a></li>
</div> <!--@end-->
<div class="clear"></div> </ul>
</div>
<div class="clear"></div>
</td>
</tr>
<!--@end--> <!--@end-->
<tr>
<td><div class="author member_{$val->member_srl}">{htmlspecialchars($val->nick_name)}</div></td>
<td>
<span class="date">
{zdate($val->regdate, "Y.m.d H:i")}
<!--@if($grant->is_admin)-->
({$val->ipaddress})
<!--@end-->
</span>
</td>
</tr>
</table>
<!--@if($val->depth>0)--> <!--@if($val->depth>0)-->
</div> </div>
</div> </div>
<!--@end--> <!--@end-->
</div> </div>

View file

@ -6,43 +6,53 @@
<div class="contentBox <!--@if($val->depth>0)-->indent_box<!--@end--> <!--@if($idx>0)-->top_border<!--@end-->"> <div class="contentBox <!--@if($val->depth>0)-->indent_box<!--@end--> <!--@if($idx>0)-->top_border<!--@end-->">
<!--@if($val->depth>0)--> <!--@if($val->depth>0)-->
<div style="padding-left:{($val->depth*1.5)}em;"> <div style="margin-left:{($val->depth*1.5)}em;">
<div class="indent"> <div class="indent">
<!--@end--> <!--@end-->
<div class="content"> <table cellspacing="0" width="100%">
{$val->content} <col />
</div> <col width="120" />
<tr>
<div class="author member_{$val->member_srl}">{htmlspecialchars($val->nick_name)}</div> <td>{$val->content}</td>
<div class="replyOption"> <td class="tRight" valign="top">
<!--@if($val->is_granted || !$val->member_srl || $grant->is_admin)--> <!--@if($val->is_granted || !$val->member_srl || $grant->is_admin)-->
<a href="{getUrl('act','dispBoardDeleteComment','comment_srl',$val->comment_srl)}"><img src="./images/common/btn_delete.gif" alt="{$lang->cmd_delete}" /></a> <a href="{getUrl('act','dispBoardDeleteComment','comment_srl',$val->comment_srl)}"><img src="./images/common/btn_delete.gif" alt="{$lang->cmd_delete}" /></a>
<a href="{getUrl('act','dispBoardModifyComment','comment_srl',$val->comment_srl)}"><img src="./images/common/btn_edit.gif" alt="{$lang->cmd_modify}" /></a> <a href="{getUrl('act','dispBoardModifyComment','comment_srl',$val->comment_srl)}"><img src="./images/common/btn_edit.gif" alt="{$lang->cmd_modify}" /></a>
<!--@end--> <!--@end-->
<a href="{getUrl('act','dispBoardReplyComment','comment_srl',$val->comment_srl)}"><img src="./images/common/btn_reply.gif" alt="{$lang->cmd_reply}" /></a> <a href="{getUrl('act','dispBoardReplyComment','comment_srl',$val->comment_srl)}"><img src="./images/common/btn_reply.gif" alt="{$lang->cmd_reply}" /></a>
</div> </td>
<span class="date"> </tr>
{zdate($val->regdate, "Y.m.d H:i")}
<!--@if($grant->is_admin)-->
({$val->ipaddress})
<!--@end-->
</span>
<!--@if($val->uploaded_count && $val->uploaded_list)--> <!--@if($val->uploaded_count && $val->uploaded_list)-->
<div class="fileAttached"> <tr>
<ul> <td colspan="2">
<!--@foreach($val->uploaded_list as $key => $file)--> <div class="fileAttached">
<li><img src="./images/common/iconFile.gif" alt="attached file" /><a href="{getUrl('')}{$file->download_url}">{$file->source_filename} ({FileHandler::filesize($file->file_size)})({number_format($file->download_count)})</a></li> <ul>
<!--@end--> <!--@foreach($val->uploaded_list as $key => $file)-->
</ul> <li><img src="./images/common/iconFile.gif" alt="attached file" /><a href="{getUrl('')}{$file->download_url}">{$file->source_filename} ({FileHandler::filesize($file->file_size)})({number_format($file->download_count)})</a></li>
</div> <!--@end-->
<div class="clear"></div> </ul>
</div>
<div class="clear"></div>
</td>
</tr>
<!--@end--> <!--@end-->
<tr>
<td><div class="author member_{$val->member_srl}">{htmlspecialchars($val->nick_name)}</div></td>
<td>
<span class="date">
{zdate($val->regdate, "Y.m.d H:i")}
<!--@if($grant->is_admin)-->
({$val->ipaddress})
<!--@end-->
</span>
</td>
</tr>
</table>
<!--@if($val->depth>0)--> <!--@if($val->depth>0)-->
</div> </div>
</div> </div>
<!--@end--> <!--@end-->
</div> </div>

View file

@ -6,43 +6,53 @@
<div class="contentBox <!--@if($val->depth>0)-->indent_box<!--@end--> <!--@if($idx>0)-->top_border<!--@end-->"> <div class="contentBox <!--@if($val->depth>0)-->indent_box<!--@end--> <!--@if($idx>0)-->top_border<!--@end-->">
<!--@if($val->depth>0)--> <!--@if($val->depth>0)-->
<div style="padding-left:{($val->depth*1.5)}em;"> <div style="margin-left:{($val->depth*1.5)}em;">
<div class="indent"> <div class="indent">
<!--@end--> <!--@end-->
<div class="content"> <table cellspacing="0" width="100%">
{$val->content} <col />
</div> <col width="120" />
<tr>
<div class="author member_{$val->member_srl}">{htmlspecialchars($val->nick_name)}</div> <td>{$val->content}</td>
<div class="replyOption"> <td class="tRight" valign="top">
<!--@if($val->is_granted || !$val->member_srl || $grant->is_admin)--> <!--@if($val->is_granted || !$val->member_srl || $grant->is_admin)-->
<a href="{getUrl('act','dispBoardDeleteComment','comment_srl',$val->comment_srl)}"><img src="./images/common/btn_delete.gif" alt="{$lang->cmd_delete}" /></a> <a href="{getUrl('act','dispBoardDeleteComment','comment_srl',$val->comment_srl)}"><img src="./images/common/btn_delete.gif" alt="{$lang->cmd_delete}" /></a>
<a href="{getUrl('act','dispBoardModifyComment','comment_srl',$val->comment_srl)}"><img src="./images/common/btn_edit.gif" alt="{$lang->cmd_modify}" /></a> <a href="{getUrl('act','dispBoardModifyComment','comment_srl',$val->comment_srl)}"><img src="./images/common/btn_edit.gif" alt="{$lang->cmd_modify}" /></a>
<!--@end--> <!--@end-->
<a href="{getUrl('act','dispBoardReplyComment','comment_srl',$val->comment_srl)}"><img src="./images/common/btn_reply.gif" alt="{$lang->cmd_reply}" /></a> <a href="{getUrl('act','dispBoardReplyComment','comment_srl',$val->comment_srl)}"><img src="./images/common/btn_reply.gif" alt="{$lang->cmd_reply}" /></a>
</div> </td>
<span class="date"> </tr>
{zdate($val->regdate, "Y.m.d H:i")}
<!--@if($grant->is_admin)-->
({$val->ipaddress})
<!--@end-->
</span>
<!--@if($val->uploaded_count && $val->uploaded_list)--> <!--@if($val->uploaded_count && $val->uploaded_list)-->
<div class="fileAttached"> <tr>
<ul> <td colspan="2">
<!--@foreach($val->uploaded_list as $key => $file)--> <div class="fileAttached">
<li><img src="./images/common/iconFile.gif" alt="attached file" /><a href="{getUrl('')}{$file->download_url}">{$file->source_filename} ({FileHandler::filesize($file->file_size)})({number_format($file->download_count)})</a></li> <ul>
<!--@end--> <!--@foreach($val->uploaded_list as $key => $file)-->
</ul> <li><img src="./images/common/iconFile.gif" alt="attached file" /><a href="{getUrl('')}{$file->download_url}">{$file->source_filename} ({FileHandler::filesize($file->file_size)})({number_format($file->download_count)})</a></li>
</div> <!--@end-->
<div class="clear"></div> </ul>
</div>
<div class="clear"></div>
</td>
</tr>
<!--@end--> <!--@end-->
<tr>
<td><div class="author member_{$val->member_srl}">{htmlspecialchars($val->nick_name)}</div></td>
<td>
<span class="date">
{zdate($val->regdate, "Y.m.d H:i")}
<!--@if($grant->is_admin)-->
({$val->ipaddress})
<!--@end-->
</span>
</td>
</tr>
</table>
<!--@if($val->depth>0)--> <!--@if($val->depth>0)-->
</div> </div>
</div> </div>
<!--@end--> <!--@end-->
</div> </div>