css 및 js 호출순서 조정기능 추가

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@5785 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
ngleader 2009-03-06 05:33:56 +00:00
parent 4f380d9c48
commit 61851f1dfe
2149 changed files with 109090 additions and 18689 deletions

View file

@ -1,9 +0,0 @@
@charset "utf-8";
.adminTable.counter th { font-size:.9em; text-align:center; padding:0;}
.adminTable.counter th em { font:normal 1em Tahoma;}
.adminTable td .graph { width:90%; position:relative;}
.adminTable td .graph .bar { width:100%; position:absolute; margin-top:4px;}
.adminTable td .graph .num { position:relative; background:#ffffff; color:#636363; font:.9em Tahoma; padding-left:10px; white-space:nowrap;}
#str_selected_date { font-size:9pt; font-family:tahoma; }
#trigger_calendar { vertical-align:middle; }

Binary file not shown.

Before

Width:  |  Height:  |  Size: 81 B

After

Width:  |  Height:  |  Size: 50 B

Before After
Before After

View file

@ -12,7 +12,7 @@
</script>
<h3>{$lang->counter} <span class="gray">{$lang->cmd_management}</span></h3>
<h3 class="xeAdmin">{$lang->counter} <span class="gray">{$lang->cmd_management}</span></h3>
<div class="header4 gap1">
@ -21,7 +21,7 @@
<input type="hidden" name="act" value="{$act}" />
<input type="hidden" name="selected_date" id="selected_date" value="{zDate('Ymd',$selected_date)}" />
<table cellspacing="0" class="adminTable">
<table cellspacing="0" class="colTable">
<thead>
<tr>
<th scope="row" class="half_wide"><div>{$lang->total_counter}</div></th>
@ -82,11 +82,11 @@
<!-- unique visitor 그래프 -->
<table cellspacing="0" class="adminTable">
<table cellspacing="0" class="rowTable">
<!--@foreach($detail_status->list as $key => $val)-->
<!--@if($detail_status->sum>0)-->
{@$percent = sprintf("%0.2f", $val / $detail_status->sum * 100 )}
{@$img_width = sprintf("%0.0f", $val / $detail_status->max * 100 )}
{@$img_width = sprintf("%d", $val / $detail_status->max * 100 )}
<!--@else-->
{@$percent = 0}
{@$img_width = 1}
@ -123,13 +123,14 @@
</div>
</th>
<!--@end-->
<td>
<div class="graph">
<img src="./images/iconBar.gif" alt="" width="12" height="6" class="bar" />
<div class="num" style="left:{$percent}%;width:{100-$percent}%;">
<strong>{number_format($val)}</strong> ({$percent}%)
</div>
</div>
<td class="wide">
{@$img_percent = $img_width-30}
<!--@if($img_percent<1)-->
<img class="graphHr" style="width:3px;" alt="" src="./images/iconBar.gif" />
<!--@else-->
<img class="graphHr" style="width:{$img_percent}%;" alt="" src="./images/iconBar.gif" />
<!--@end-->
{number_format($val)}({$percent}%)
</td>
</tr>
<!--@end-->

View file

@ -1,14 +0,0 @@
/**
* @brief 카운터 정보 수집 javascript
* window.onload 이벤트 후에 counter 모듈을 호출한다.
**/
// 이벤트 등록
jQuery(doCallCounter);
// counter 모듈을 호출하는 함수
function doCallCounter() {
show_waiting_message = false;
exec_xml('counter','procCounterExecute');
show_waiting_message = true;
}