cozy 관련 스킨과 google_analytics 애드온을 기본 패키지에서 제거
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@3880 201d5d3c-b55e-5fd7-737f-ddc643e51545
|
|
@ -1,84 +0,0 @@
|
|||
<!-- 설정된 컬러셋의 종류에 따라서 css파일을 import 합니다 -->
|
||||
|
||||
<!--%import("css/common.css")-->
|
||||
<!--@if($colorset=="bluish_green")-->
|
||||
<!--%import("css/bluish_green.css")-->
|
||||
<!--@elseif($colorset=="green")-->
|
||||
<!--%import("css/green.css")-->
|
||||
<!--@elseif($colorset=="pink")-->
|
||||
<!--%import("css/pink.css")-->
|
||||
<!--@elseif($colorset=="blue")-->
|
||||
<!--%import("css/blue.css")-->
|
||||
<!--@else-->
|
||||
{@ $colorset = "red" }
|
||||
<!--%import("css/red.css")-->
|
||||
<!--@end-->
|
||||
|
||||
<div class="calendarBox cozy_cal_{$colorset}">
|
||||
<table cellspacing="0">
|
||||
<caption>
|
||||
<span class="fl">{zdate($widget_info->cur_date,"Y")}.<span class="mm">{zdate($widget_info->cur_date,"m")}</span></span>
|
||||
<span class="fr"><a href="{getUrl('search_target','regdate','search_keyword',$widget_info->prev_month)}"><img src="./images/{$colorset}/buttonArrowCalendarLeft.gif" alt="prev"></a><a href="{getUrl('search_target','regdate','search_keyword',$widget_info->next_month)}"><img src="./images/{$colorset}/buttonArrowCalendarRight.gif" alt="next"></a></span>
|
||||
</caption>
|
||||
<thead>
|
||||
<tr>
|
||||
<th class="sun" scope="col">S</th>
|
||||
<th scope="col">M</th>
|
||||
<th scope="col">T</th>
|
||||
<th scope="col">W</th>
|
||||
<th scope="col">T</th>
|
||||
<th scope="col">F</th>
|
||||
<th scope="col">S</th>
|
||||
|
||||
</tr>
|
||||
</thead>
|
||||
|
||||
{@ $day = ''}
|
||||
<tbody>
|
||||
<!--@for($i=0;$i<6;$i++)-->
|
||||
<!--@if($day < $widget_info->last_day)-->
|
||||
<tr>
|
||||
<!--@for($j=0;$j<7;$j++)-->
|
||||
|
||||
{@ $num = $i*7 + $j}
|
||||
<!--@if(!$started && $num >= $widget_info->start_week)-->
|
||||
{@ $started = true}
|
||||
{@ $day = 1}
|
||||
{@ $cur_date = $widget_info->cur_date.sprintf('%02d',$day) }
|
||||
<!--@elseif($started)-->
|
||||
{@ $day++}
|
||||
{@ $cur_date = $widget_info->cur_date.sprintf('%02d',$day) }
|
||||
<!--@end-->
|
||||
|
||||
<!--@if($cur_date == date("Ymd"))-->{@ $today_class = "today"}<!--@else-->{@ $today_class = ""}<!--@end-->
|
||||
|
||||
<!--@if($j==0)-->{@ $cell_class_name = "sun"}<!--@else-->{@ $cell_class_name = ""}<!--@end-->
|
||||
|
||||
<!--@if($widget_info->calendar[$cur_date])-->
|
||||
{@ $item_class_name = "posted"}
|
||||
<!--@if($layout_info->mid)-->
|
||||
{@ $day_link = getUrl('','mid',$widget_info->module_name?$widget_info->module_name:$layout_info->mid,'search_target','regdate','search_keyword',$cur_date) }
|
||||
<!--@else-->
|
||||
{@ $day_link = getUrl('','mid',$widget_info->module_name?$widget_info->module_name:$mid,'search_target','regdate','search_keyword',$cur_date) }
|
||||
<!--@end-->
|
||||
<!--@else-->
|
||||
{@ $item_class_name = ""}
|
||||
{@ $day_link = ''}
|
||||
<!--@end-->
|
||||
|
||||
<td class="{$today_class} {$cell_class_name} {$item_class_name}">
|
||||
<!--@if($day <= $widget_info->last_day)-->
|
||||
<!--@if($day_link)-->
|
||||
<a href="{$day_link}">{$day}</a>
|
||||
<!--@else-->
|
||||
{$day}
|
||||
<!--@end-->
|
||||
<!--@end-->
|
||||
</td>
|
||||
<!--@end-->
|
||||
</tr>
|
||||
<!--@end-->
|
||||
<!--@end-->
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
|
|
@ -1 +0,0 @@
|
|||
div.cozy_cal_blue table caption { font:bold 1em 돋움; color:#1187d8; padding:1em;}
|
||||
|
|
@ -1 +0,0 @@
|
|||
div.cozy_cal_bluish_green table caption { font:bold 1em 돋움; color:#9ab09f; padding:1em;}
|
||||
|
|
@ -1,17 +0,0 @@
|
|||
div.calendarBox {}
|
||||
div.calendarBox table { width:100%; background:url(../images/bg_line_dot_x.gif) repeat-x left top;}
|
||||
div.calendarBox table caption .mm { font:bold 1em 돋움; color:#555650;}
|
||||
div.calendarBox table caption a { padding:.2em;}
|
||||
div.calendarBox table caption a img { vertical-align:middle;}
|
||||
div.calendarBox table th { padding:.6em 0;}
|
||||
div.calendarBox table td { padding:.25em 0;}
|
||||
div.calendarBox table th { font:bold .9em tahoma; color:#717171;}
|
||||
div.calendarBox table th.sun { color:#000000;}
|
||||
div.calendarBox table td { text-align:center; font:.9em Tahoma; color:#9a9a9a;}
|
||||
div.calendarBox table td a { font:.9em Tahoma; color:#9a9a9a;}
|
||||
div.calendarBox table td.sun { color:#000000;}
|
||||
div.calendarBox table td.sun a { color:#000000;}
|
||||
div.calendarBox table td.today a { font:.9em Tahoma; font-weight:bold; color:#54564b;}
|
||||
div.calendarBox table td.posted a { text-decoration:underline;}
|
||||
|
||||
|
||||
|
|
@ -1 +0,0 @@
|
|||
div.cozy_cal_green table caption { font:bold 1em 돋움; color:#8dc63f; padding:1em;}
|
||||
|
|
@ -1 +0,0 @@
|
|||
div.cozy_cal_pink table caption { font:bold 1em 돋움; color:#f70795; padding:1em;}
|
||||
|
|
@ -1 +0,0 @@
|
|||
div.cozy_cal_red table caption { font:bold 1em 돋움; color:#ec1a25; padding:1em;}
|
||||
|
Before Width: | Height: | Size: 59 B |
|
Before Width: | Height: | Size: 57 B |
|
Before Width: | Height: | Size: 58 B |
|
Before Width: | Height: | Size: 57 B |
|
Before Width: | Height: | Size: 58 B |
|
Before Width: | Height: | Size: 57 B |
|
Before Width: | Height: | Size: 58 B |
|
Before Width: | Height: | Size: 57 B |
|
Before Width: | Height: | Size: 58 B |
|
Before Width: | Height: | Size: 59 B |
|
Before Width: | Height: | Size: 58 B |
|
|
@ -1,65 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<skin>
|
||||
<title xml:lang="ko">cozy simple</title>
|
||||
<title xml:lang="jp">Cozyシンプル</title>
|
||||
<title xml:lang="en">cozy simple skin</title>
|
||||
<title xml:lang="zh-CN">Cozy样式皮肤</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="en">zero</name>
|
||||
<name xml:lang="zh-CN">Zero</name>
|
||||
<description xml:lang="ko">
|
||||
cozy simple 위젯입니다.
|
||||
디자인 : 서기정 (http://blog.naver.com/addcozy)
|
||||
HTML/CSS : 소지훈
|
||||
</description>
|
||||
<description xml:lang="jp">
|
||||
Cozyシンプルウィジェットです。
|
||||
デザイン:ソギジョン(http://blog.naver.com/addcozy)
|
||||
HTML/CSS:ソジフン
|
||||
</description>
|
||||
<description xml:lang="en">
|
||||
This is cozy simple widget.
|
||||
Design : Ki-Jeong Seo (http://blog.naver.com/addcozy)
|
||||
HTML/CSS : Ji-Hun So
|
||||
</description>
|
||||
<description xml:lang="zh-CN">
|
||||
Cozy样式皮肤。
|
||||
设计 : Ki-Jeong Seo (http://blog.naver.com/addcozy)
|
||||
HTML/CSS : Ji-Hun So
|
||||
</description>
|
||||
</maker>
|
||||
<colorset>
|
||||
<color name="red">
|
||||
<title xml:lang="ko">빨간색</title>
|
||||
<title xml:lang="jp">赤</title>
|
||||
<title xml:lang="en">Red</title>
|
||||
<title xml:lang="zh-CN">红色</title>
|
||||
</color>
|
||||
<color name="green">
|
||||
<title xml:lang="ko">초록색</title>
|
||||
<title xml:lang="jp">緑</title>
|
||||
<title xml:lang="en">Green</title>
|
||||
<title xml:lang="zh-CN">绿色</title>
|
||||
</color>
|
||||
<color name="blue">
|
||||
<title xml:lang="ko">파란색</title>
|
||||
<title xml:lang="jp">青</title>
|
||||
<title xml:lang="en">Blue</title>
|
||||
<title xml:lang="zh-CN">蓝色</title>
|
||||
</color>
|
||||
<color name="pink">
|
||||
<title xml:lang="ko">분홍색</title>
|
||||
<title xml:lang="jp">ピンク</title>
|
||||
<title xml:lang="en">Pink</title>
|
||||
<title xml:lang="zh-CN">粉红色</title>
|
||||
</color>
|
||||
<color name="bluish_green">
|
||||
<title xml:lang="ko">청록색</title>
|
||||
<title xml:lang="jp">青緑</title>
|
||||
<title xml:lang="en">Cyan</title>
|
||||
<title xml:lang="zh-CN">青绿色</title>
|
||||
</color>
|
||||
</colorset>
|
||||
</skin>
|
||||