mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-31 17:19:59 +09:00
삭제
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@2327 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
commit
8326004cb2
2773 changed files with 91485 additions and 0 deletions
23
widgets/newest_images/skins/default/css/normal.css
Normal file
23
widgets/newest_images/skins/default/css/normal.css
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
.ni_box { overflow:hidden; }
|
||||
.ni_box .title_box { border:1px solid #EEEEEE; padding:5px; height:14px; overflow:hidden; }
|
||||
.ni_box .title_box .title { no-repeat left; font-weight:bold; height:14px; float:left; }
|
||||
.ni_box .title_box .more A { float:right; color:#AAAAAA; text-decoration:none; font-weight:bold; font-size:.75em; }
|
||||
|
||||
.ni_box .thumbnail_box { width:100%; table-layout:fixed; }
|
||||
.ni_box .thumbnail_box .thumbnail { margin:3px; padding:3px; border:1px solid #EFEFEF; text-align:center; }
|
||||
.ni_box .thumbnail_box .thumbnail:hover { border:1px solid #888888; }
|
||||
.ni_box .thumbnail_box .thumbnail img { border:none; }
|
||||
.ni_box .thumbnail_box .thumbnail img:hover { border:none; }
|
||||
|
||||
.ni_box .thumbnail_box a { color:#444444; text-decoration:none; }
|
||||
.ni_box .thumbnail_box a:visited { color:#AAAAAA; text-decoration:none; }
|
||||
|
||||
.ni_box .thumbnail_box td.bottomBorder { border-bottom:1px dashed #EEEEEE; padding-bottom:5px; }
|
||||
.ni_box .thumbnail_box div strong { font-weight:bold; font-size:0.75em; color:#CCCCCC; }
|
||||
.ni_box .thumbnail_box div.author { color:#AAAAAA; }
|
||||
.ni_box .thumbnail_box div.author a { color:#AAAAAA; }
|
||||
.ni_box .thumbnail_box div.regdate { font-size:0.75em; color:#CCCCCC; margin-top:2px;}
|
||||
|
||||
.ni_box .thumbnail_box div.readAndVoted { color:#AAAAAA; font-size:0.75em; }
|
||||
.ni_box .thumbnail_box div.readAndVoted span.div_block { color:#DDDDDD; font-size:0.75em; }
|
||||
.ni_box .thumbnail_box div.readAndVoted strong { color:#FE6700; }
|
||||
BIN
widgets/newest_images/skins/default/images/blank.gif
Normal file
BIN
widgets/newest_images/skins/default/images/blank.gif
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 43 B |
67
widgets/newest_images/skins/default/list.html
Normal file
67
widgets/newest_images/skins/default/list.html
Normal file
|
|
@ -0,0 +1,67 @@
|
|||
<!-- 설정된 컬러셋의 종류에 따라서 css파일을 import 합니다 -->
|
||||
|
||||
<!--@if($colorset=="normal"||!$colorset)-->
|
||||
<!--%import("css/normal.css")-->
|
||||
<!--@end-->
|
||||
|
||||
<div class="ni_box">
|
||||
<!--@if($widget_info->title)-->
|
||||
<div class="title_box">
|
||||
<div class="title">{$widget_info->title}</div>
|
||||
<!--@if($widget_info->module_name)-->
|
||||
<div class="more"><a href="{getUrl('','mid',$widget_info->module_name)}">more</a></div>
|
||||
<!--@end-->
|
||||
</div>
|
||||
<!--@end-->
|
||||
|
||||
<!--@if(count($widget_info->document_list))-->
|
||||
<table class="thumbnail_box">
|
||||
{@ $count = 0; }
|
||||
<!--@for($i=0;$i<$widget_info->rows_list_count;$i++)-->
|
||||
<tr valign="top">
|
||||
<!--@for($j=0;$j<$widget_info->cols_list_count;$j++)-->
|
||||
{@ $oDocument = $widget_info->document_list[$i*$widget_info->cols_list_count + $j]}
|
||||
<td <!--@if($widget_info->rows_list_count>1)-->class="bottomBorder"<!--@end-->>
|
||||
<!--@if($oDocument->document_srl)-->
|
||||
<div class="thumbnail"><a href="{getUrl('','document_srl',$oDocument->document_srl)}"><img src="{$oDocument->getThumbnail($widget_info->thumbnail_width)}" width="{$widget_info->thumbnail_width}" height="{$widget_info->thumbnail_width}" border="0" alt="" class="thumbnail" /></a></div>
|
||||
|
||||
<div>
|
||||
<a href="{$oDocument->getPermanentUrl()}#{$oDocument->getCommentCount()}">{$oDocument->getTitleText($widget_info->title_length)}</a>
|
||||
<!--@if($oDocument->getCommentCount())--><strong>[{$oDocument->getCommentCount()}]</strong><!--@end-->
|
||||
</div>
|
||||
<!--@if($widget_info->display_author == 'Y')-->
|
||||
<div class="author member_{$oDocument->get('member_srl')}">{$oDocument->getNickName()}</div>
|
||||
<!--@end-->
|
||||
|
||||
<!--@if($widget_info->display_regdate == 'Y')-->
|
||||
<div class="regdate">{$oDocument->getRegdate()}</div>
|
||||
<!--@end-->
|
||||
|
||||
<!--@if($widget_info->display_readed_count == 'Y' || $widget_info->display_voted_count == 'Y' )-->
|
||||
<div class="readAndVoted">
|
||||
<!--@if($widget_info->display_readed_count == 'Y')-->
|
||||
|
||||
{$lang->readed_count} {$oDocument->get('readed_count')}
|
||||
|
||||
<!--@end-->
|
||||
|
||||
<!--@if($widget_info->display_voted_count == 'Y' )-->
|
||||
|
||||
<!--@if($widget_info->display_readed_count == 'Y')--><span class="div_block">|</span><!--@end-->
|
||||
|
||||
{$lang->voted_count} <strong>{$oDocument->get('voted_count')}</strong>
|
||||
|
||||
<!--@end-->
|
||||
</div>
|
||||
<!--@end-->
|
||||
<!--@end-->
|
||||
|
||||
</td>
|
||||
<!--@end-->
|
||||
<!--@for($k=$j;$k<$widget_info->cols_list_count;$k++)--><td> </td><!--@end-->
|
||||
</tr>
|
||||
<!--@end-->
|
||||
</table>
|
||||
<!--@end-->
|
||||
<div class="clear"></div>
|
||||
</div>
|
||||
25
widgets/newest_images/skins/default/skin.xml
Normal file
25
widgets/newest_images/skins/default/skin.xml
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<skin>
|
||||
<title xml:lang="ko">최신 이미지 위젯 기본 스킨</title>
|
||||
<title xml:lang="jp">最新イメージ表示のデフォルトスキン</title>
|
||||
<title xml:lang="zh-CN">最新图片列表默认皮肤</title>
|
||||
<title xml:lang="en">Newest Image Widget Default Skin</title>
|
||||
<maker email_address="zero@zeroboard.com" link="http://www.zeroboard.com" date="2007. 2. 28">
|
||||
<name xml:lang="ko">제로</name>
|
||||
<name xml:lang="jp">Zero</name>
|
||||
<name xml:lang="zh-CN">Zero</name>
|
||||
<name xml:lang="en">Zero</name>
|
||||
<description xml:lang="ko">최신 이미지 위젯의 기본 스킨입니다.</description>
|
||||
<description xml:lang="jp">最新イメージを表示するウィジェットのデフォルトスキンです。</description>
|
||||
<description xml:lang="zh-CN">最新图片列表控件的默认皮肤.</description>
|
||||
<description xml:lang="en">This is default skin of newest image widget.</description>
|
||||
</maker>
|
||||
<colorset>
|
||||
<color name="normal">
|
||||
<title xml:lang="ko">기본 컬러</title>
|
||||
<title xml:lang="jp">デフォルトカラー</title>
|
||||
<title xml:lang="zh-CN">默认颜色</title>
|
||||
<title xml:lang="en">Default Color</title>
|
||||
</color>
|
||||
</colorset>
|
||||
</skin>
|
||||
Loading…
Add table
Add a link
Reference in a new issue