통합검색 모듈인 integration_search 추가

git-svn-id: http://xe-core.googlecode.com/svn/trunk@1992 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
zero 2007-07-24 13:25:43 +00:00
parent 87e2fab04c
commit c4d1ed1c2e
26 changed files with 698 additions and 6 deletions

View file

@ -0,0 +1,36 @@
@charset "utf-8";
/* boardInformation */
.boardInformation { clear:both; margin:1em 0 .5em 0; overflow:hidden; color:#666666;}
.search strong { color:#ff6600;}
.articleNum strong { font:bold 11px Tahoma; color:#ff6600;}
.no_result { text-align:center; padding:3em; border-top:1px solid #EEEEEE; border-bottom:1px solid #EEEEEE;}
/* search_result */
.search_result { margin:1em 0 3em 0; list-style:none; clear:both;}
.search_result .thumbnail { float:left; padding:10px; }
.search_result .thumbnail img { width:100px; height:100px; border:1px solid #555555; }
.search_result .title { margin-bottom:.5em; border-top:1px solid #EEEEEE; padding-top:.5em; }
.search_result .title a { color:#4831F6; font-size:1.2em; font-weight:bold; text-decoration:none; }
.search_result .title a:visited { color:#A59AFD;}
.search_result .replyAndTrackback { font:.8em Tahoma; color:#ff6600; position:relative; top:-.2em;}
.search_result .replyAndTrackback img.trackback { margin-bottom:-.1em;}
.search_result .summary { margin-bottom:.5em; padding-left:2em; }
.search_result .summary a { color:#888888; font-size:1em; text-decoration:none; }
.search_result .summary a:visited { color:#BBBBBB;}
.search_result .summary a:hover { color:#BBBBBB; text-decoration:none;}
.search_result .author { padding-left:2em; float:left; color:#000000; font-size:.9em;}
.search_result .date { padding-left:2em; float:left; color:#888888; font-size:.9em;}
/* pageNavigation */
.pageNavigation { display:block; padding:1.5em 0 2em 0; text-align:center; font:bold .8em Tahoma; border-top:1px solid #EEEEEE; padding-top:.5em; }
.pageNavigation a { position:relative; margin-left:-4px; font:bold 1em Tahoma; color:#666666; display:inline-block; padding:1px 7px 2px 6px; border-left:1px solid #dedfde; border-right:1px solid #CCCCCC; text-decoration:none; line-height:1em; }
.pageNavigation a:hover { background:#F7F7F7; text-decoration:none; }
.pageNavigation a:visited { color:#999999;}
.pageNavigation a.goToFirst,
.pageNavigation a.goToLast { border:none; border-right:1px solid #ffffff; border-left:1px solid #ffffff; z-index:99; vertical-align:top; padding:0px 7px 4px 6px;}
.pageNavigation a.goToFirst img,
.pageNavigation a.goToLast img { display:inline-block; padding:2px 0; position:relative; top:2px; _top:1px;}
.pageNavigation .current { position:relative; margin-left:-4px; font:bold 1em Tahoma; color:#ff6600; display:inline-block; padding:1px 7px 1px 6px; border-left:1px solid #dedfde; border-right:1px solid #CCCCCC; text-decoration:none; line-height:1em; }

Binary file not shown.

After

Width:  |  Height:  |  Size: 51 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 51 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 219 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 106 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 101 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 44 B

View file

@ -0,0 +1,63 @@
<!-- 컬러셋 체크 -->
<!--@if($module_info->colorset != "white")-->
{@$module_info->colorset = "white"}
<!--@end-->
<!-- CSS 파일 로드 (컬러셋에 따라서) -->
<!--@if($module_info->colorset == "white")-->
<!--%import("css/white.css")-->
<!--@end-->
<div class="boardInformation">
<div class="fl">
<span class="search">{$lang->search_keyword} : <strong>{$is_keyword}</strong></span>
</div>
<div class="fr">
<span class="articleNum">{$lang->document_count} : <strong>{number_format($total_count)}</strong></span>
</div>
</div>
<!--@if(!$document_list)-->
<!-- 게시물이 없으면 등록된 글이 없음을 표시 -->
<div class="no_result">
{$lang->no_documents}
</div>
<!--@else-->
<!--@foreach($document_list as $no => $document)-->
<ul class="search_result">
<li class="title">
<a href="{getUrl('','document_srl',$document->document_srl)}" onclick="window.open(this.href);return false;">{$document->getTitleText()}</a>
<!--@if($document->getCommentCount())-->
<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="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-->
</li>
<!--@if($document->thumbnailExists(100))-->
<li class="thumbnail"><a href="{getUrl('','document_srl',$document->document_srl)}" onclick="window.open(this.href);return false;"><img src="{$document->getThumbnail(100)}" border="0" alt="" /></a></li>
<!--@end-->
<li class="summary"><a href="{getUrl('','document_srl',$document->document_srl)}" onclick="window.open(this.href);return false;">{$document->getSummary(140)}</a></li>
<li class="author"><div class="member_{$document->get('member_srl')}">{$document->getNickName()}</div></li>
<li class="date">{$document->getRegdate('Y-m-d H:i')}</li>
</ul>
<div class="clear"></div>
<!--@end-->
<!-- 페이지 네비게이션 -->
<div class="pageNavigation">
<a href="{getUrl('page','','document_srl','')}" class="goToFirst"><img src="./images/{$module_info->colorset}/bottomGotoFirst.gif" alt="{$lang->first_page}" width="7" height="5" /></a>
<!--@while($page_no = $page_navigation->getNextPage())-->
<!--@if($page == $page_no)-->
<span class="current">{$page_no}</span>
<!--@else-->
<a href="{getUrl('page',$page_no,'document_srl','')}">{$page_no}</a>
<!--@end-->
<!--@end-->
<a href="{getUrl('page',$page_navigation->last_page,'document_srl','')}" class="goToLast"><img src="./images/{$module_info->colorset}/bottomGotoLast.gif" alt="{$lang->last_page}" width="7" height="5" /></a>
</div>
<!--@end-->

View file

@ -0,0 +1,19 @@
<?xml version="1.0" encoding="utf-8"?>
<skin>
<title xml:lang="ko">통합 검색 기본 스킨</title>
<maker email_address="zero@zeroboard.com" link="http://www.zeroboard.com" date="2007. 7. 24">
<name xml:lang="ko">제로</name>
<description xml:lang="ko">통합검색 모듈의 기본 스킨</description>
</maker>
<colorset>
<color name="normal" src="screenshot/normal.gif">
<title xml:lang="ko">기본</title>
</color>
</colorset>
<extra_vars>
<var name="memo" type="textarea">
<title xml:lang="ko">설명</title>
<description lang="ko">검색결과 상단에 결과가 출력됩니다.</description>
</var>
</extra_vars>
</skin>