git-svn-id: http://xe-core.googlecode.com/svn/trunk@1628 201d5d3c-b55e-5fd7-737f-ddc643e51545

This commit is contained in:
zero 2007-06-14 06:05:26 +00:00
parent 3f649ab32a
commit 67572cebaf
39 changed files with 543 additions and 459 deletions

View file

@ -14,11 +14,11 @@
<!--@end-->
<div class="document_box">
<!--@foreach($plugin_info->document_list as $val)-->
<!--@foreach($plugin_info->document_list as $oDocument)-->
<div class="document">
<a href="{getUrl('','document_srl',$val->document_srl)}#{$val->comment_count}">{htmlspecialchars(cut_str($val->title,20))}</a>
<!--@if($val->comment_count)-->
&nbsp;<span class="comment"><a href="{getUrl('','document_srl',$val->document_srl)}#comment_top_{$val->document_srl}">*{$val->comment_count}</a></span>
<a href="{$oDocument->getPermanentUrl()}#{$oDocument->getCommentCount()}">{$oDocument->getTitleText(20)}</a>
<!--@if($oDocument->getCommentCount())-->
&nbsp;<span class="comment"><a href="{$oDocument->getPermanentUrl()}#comment_top_{$oDocument->document_srl}">*{$oDocument->getCommentCount()}</a></span>
<!--@end-->
</div>
<!--@end-->

View file

@ -17,18 +17,18 @@
<!--@end-->
</div>
<!--@foreach($plugin_info->document_list as $val)-->
<!--@foreach($plugin_info->document_list as $oDocument)-->
<div class="document_box">
<div class="document">
<a href="{getUrl('','document_srl',$val->document_srl)}#{$val->comment_count}">{htmlspecialchars(cut_str($val->title,20))}</a>
<!--@if($val->comment_count)-->
<span class="comment"><a href="{getUrl('','document_srl',$val->document_srl)}#comment_top_{$val->document_srl}">( {$val->comment_count} )</a></span>
<a href="{$oDocument->getPermanentUrl()}#{$oDocument->getCommentCount()}">{$oDocument->getTitleText(20)}</a>
<!--@if($oDocument->getCommentCount())-->
&nbsp;<span class="comment"><a href="{$oDocument->getPermanentUrl()}#comment_top_{$oDocument->document_srl}">*{$oDocument->getCommentCount()}</a></span>
<!--@end-->
<span class="writer">
- {$val->nick_name}
- {$oDocument->getNickName()}
</span>
</div>
<div class="regdate">{zdate($val->regdate, "Y-m-d")}</div>
<div class="regdate">{$oDocument->getRegdate("Y-m-d")}</div>
</div>
<!--@end-->
</div>