mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-25 14:19:58 +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
BIN
widgets/newest_document/skins/default/blue/document_bullet.gif
Normal file
BIN
widgets/newest_document/skins/default/blue/document_bullet.gif
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 282 B |
75
widgets/newest_document/skins/default/blue/style.css
Normal file
75
widgets/newest_document/skins/default/blue/style.css
Normal file
|
|
@ -0,0 +1,75 @@
|
|||
.newest_document_default_blue {
|
||||
}
|
||||
|
||||
.newest_document_default_blue .newest_document_default_box {
|
||||
}
|
||||
|
||||
.newest_document_default_blue .newest_document_default_box .title_box {
|
||||
border:1px solid #EEEEEE;
|
||||
padding:5px;
|
||||
height:14px;
|
||||
overflow:hidden;
|
||||
}
|
||||
|
||||
.newest_document_default_blue .newest_document_default_box .title_box .title {
|
||||
background:url(./title_bullet.gif) no-repeat left;
|
||||
font-weight:bold;
|
||||
height:16px;
|
||||
padding-left:20px;
|
||||
float:left;
|
||||
}
|
||||
|
||||
.newest_document_default_blue .newest_document_default_box .title_box .more A {
|
||||
float:right;
|
||||
color:#AAAAAA;
|
||||
text-decoration:none;
|
||||
font-weight:bold;
|
||||
font-size:.75em;
|
||||
}
|
||||
|
||||
.newest_document_default_blue .newest_document_default_box .document_box {
|
||||
padding:3px 3px 3px 5px;
|
||||
clear:both;
|
||||
border-bottom:1px solid #EEEEEE;
|
||||
height:16px;
|
||||
margin:0px 0px 2px 0px;
|
||||
overflow:hidden;
|
||||
}
|
||||
|
||||
.newest_document_default_blue .newest_document_default_box .document {
|
||||
padding:0px 0px 5px 20px;
|
||||
background:url(./document_bullet.gif) no-repeat left;
|
||||
float:left;
|
||||
}
|
||||
|
||||
.newest_document_default_blue .newest_document_default_box .document A {
|
||||
text-decoration:none;
|
||||
color:#555555;
|
||||
}
|
||||
|
||||
.newest_document_default_blue .newest_document_default_box .document A:hover {
|
||||
text-decoration:underline;
|
||||
color:#000000;
|
||||
}
|
||||
|
||||
.newest_document_default_blue .newest_document_default_box .document A:visited {
|
||||
color:#AAAAAA;
|
||||
}
|
||||
|
||||
.newest_document_default_blue .newest_document_default_box .document .comment A {
|
||||
font-size:7pt;
|
||||
color:#AAAAAA;
|
||||
letter-spacing:-1px;
|
||||
}
|
||||
|
||||
.newest_document_default_blue .newest_document_default_box .document .writer {
|
||||
color:#AAAAAA;
|
||||
}
|
||||
|
||||
|
||||
.newest_document_default_blue .newest_document_default_box .regdate {
|
||||
color:#AAAAAA;
|
||||
font-size:8pt;
|
||||
float:right;
|
||||
white-space:nowrap;
|
||||
}
|
||||
BIN
widgets/newest_document/skins/default/blue/title_bullet.gif
Normal file
BIN
widgets/newest_document/skins/default/blue/title_bullet.gif
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 1 KiB |
35
widgets/newest_document/skins/default/list.html
Normal file
35
widgets/newest_document/skins/default/list.html
Normal file
|
|
@ -0,0 +1,35 @@
|
|||
<!-- 설정된 컬러셋의 종류에 따라서 css파일을 import 합니다 -->
|
||||
|
||||
<!--@if($colorset=="normal"||!$colorset)-->
|
||||
<!--%import("normal/style.css")-->
|
||||
|
||||
<!--@elseif($colorset=="blue")-->
|
||||
<!--%import("blue/style.css")-->
|
||||
|
||||
<!--@end-->
|
||||
|
||||
<div class="newest_document_default_{$colorset}">
|
||||
<div class="newest_document_default_box">
|
||||
<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>
|
||||
|
||||
<!--@foreach($widget_info->document_list as $oDocument)-->
|
||||
<div class="document_box">
|
||||
<div class="document">
|
||||
<a href="{$oDocument->getPermanentUrl()}#{$oDocument->getCommentCount()}">{$oDocument->getTitleText($widget_info->subject_cut_size)}</a>
|
||||
<!--@if($oDocument->getCommentCount())-->
|
||||
<span class="comment"><a href="{$oDocument->getPermanentUrl()}#comment">*{$oDocument->getCommentCount()}</a></span>
|
||||
<!--@end-->
|
||||
<span class="writer">
|
||||
- {$oDocument->getNickName()}
|
||||
</span>
|
||||
</div>
|
||||
<div class="regdate">{$oDocument->getRegdate("Y-m-d")}</div>
|
||||
</div>
|
||||
<!--@end-->
|
||||
</div>
|
||||
</div>
|
||||
BIN
widgets/newest_document/skins/default/normal/document_bullet.gif
Normal file
BIN
widgets/newest_document/skins/default/normal/document_bullet.gif
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 282 B |
75
widgets/newest_document/skins/default/normal/style.css
Normal file
75
widgets/newest_document/skins/default/normal/style.css
Normal file
|
|
@ -0,0 +1,75 @@
|
|||
.newest_document_default_normal {
|
||||
}
|
||||
|
||||
.newest_document_default_normal .newest_document_default_box {
|
||||
}
|
||||
|
||||
.newest_document_default_normal .newest_document_default_box .title_box {
|
||||
border:1px solid #EEEEEE;
|
||||
padding:5px;
|
||||
height:14px;
|
||||
overflow:hidden;
|
||||
}
|
||||
|
||||
.newest_document_default_normal .newest_document_default_box .title_box .title {
|
||||
background:url(./title_bullet.gif) no-repeat left;
|
||||
font-weight:bold;
|
||||
height:14px;
|
||||
padding-left:20px;
|
||||
float:left;
|
||||
}
|
||||
|
||||
.newest_document_default_normal .newest_document_default_box .title_box .more A {
|
||||
float:right;
|
||||
color:#AAAAAA;
|
||||
text-decoration:none;
|
||||
font-weight:bold;
|
||||
font-size:.75em;
|
||||
}
|
||||
|
||||
.newest_document_default_normal .newest_document_default_box .document_box {
|
||||
padding:3px 3px 3px 5px;
|
||||
clear:both;
|
||||
border-bottom:1px solid #EEEEEE;
|
||||
height:16px;
|
||||
margin:0px 0px 2px 0px;
|
||||
overflow:hidden;
|
||||
}
|
||||
|
||||
.newest_document_default_normal .newest_document_default_box .document {
|
||||
padding:0px 0px 5px 20px;
|
||||
background:url(./document_bullet.gif) no-repeat left;
|
||||
float:left;
|
||||
}
|
||||
|
||||
.newest_document_default_normal .newest_document_default_box .document A {
|
||||
text-decoration:none;
|
||||
color:#555555;
|
||||
}
|
||||
|
||||
.newest_document_default_normal .newest_document_default_box .document A:hover {
|
||||
text-decoration:underline;
|
||||
color:#000000;
|
||||
}
|
||||
|
||||
.newest_document_default_normal .newest_document_default_box .document A:visited {
|
||||
color:#AAAAAA;
|
||||
}
|
||||
|
||||
.newest_document_default_normal .newest_document_default_box .document .comment A {
|
||||
font-size:7pt;
|
||||
color:#AAAAAA;
|
||||
letter-spacing:-1px;
|
||||
}
|
||||
|
||||
.newest_document_default_normal .newest_document_default_box .document .writer {
|
||||
color:#AAAAAA;
|
||||
}
|
||||
|
||||
|
||||
.newest_document_default_normal .newest_document_default_box .regdate {
|
||||
color:#AAAAAA;
|
||||
font-size:8pt;
|
||||
float:right;
|
||||
white-space:nowrap;
|
||||
}
|
||||
BIN
widgets/newest_document/skins/default/normal/title_bullet.gif
Normal file
BIN
widgets/newest_document/skins/default/normal/title_bullet.gif
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 589 B |
31
widgets/newest_document/skins/default/skin.xml
Normal file
31
widgets/newest_document/skins/default/skin.xml
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
<?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">Default Skin of Newest Article List</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">Default skin of newest article list 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>
|
||||
<color name="blue">
|
||||
<title xml:lang="ko">푸른계통의 컬러</title>
|
||||
<title xml:lang="jp">青系のカラー</title>
|
||||
<title xml:lang="zh-CN">蓝色</title>
|
||||
<title xml:lang="en">Blue style color</title>
|
||||
</color>
|
||||
</colorset>
|
||||
</skin>
|
||||
Loading…
Add table
Add a link
Reference in a new issue