diff options
| author | Patrick Seeger <pseeger@ccwn.org> | 2012-04-13 23:11:05 +0200 |
|---|---|---|
| committer | Patrick Seeger <pseeger@ccwn.org> | 2012-04-13 23:11:05 +0200 |
| commit | 341cc4dd9c53ffbfb863e026dd58549c1082c7a7 (patch) | |
| tree | 1bbbed20313bafb9b063b6b4d894fe580d8b000f /framework/views/ko | |
Diffstat (limited to 'framework/views/ko')
| -rw-r--r-- | framework/views/ko/error.php | 37 | ||||
| -rw-r--r-- | framework/views/ko/error400.php | 32 | ||||
| -rw-r--r-- | framework/views/ko/error403.php | 32 | ||||
| -rw-r--r-- | framework/views/ko/error404.php | 33 | ||||
| -rw-r--r-- | framework/views/ko/error500.php | 35 | ||||
| -rw-r--r-- | framework/views/ko/error503.php | 31 | ||||
| -rw-r--r-- | framework/views/ko/exception.php | 242 | ||||
| -rw-r--r-- | framework/views/ko/log-firebug.php | 23 | ||||
| -rw-r--r-- | framework/views/ko/log.php | 40 | ||||
| -rw-r--r-- | framework/views/ko/profile-callstack-firebug.php | 19 | ||||
| -rw-r--r-- | framework/views/ko/profile-callstack.php | 30 | ||||
| -rw-r--r-- | framework/views/ko/profile-summary-firebug.php | 22 | ||||
| -rw-r--r-- | framework/views/ko/profile-summary.php | 41 |
13 files changed, 617 insertions, 0 deletions
diff --git a/framework/views/ko/error.php b/framework/views/ko/error.php new file mode 100644 index 0000000..356f01e --- /dev/null +++ b/framework/views/ko/error.php @@ -0,0 +1,37 @@ +<!DOCTYPE html PUBLIC + "-//W3C//DTD XHTML 1.0 Transitional//EN" + "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> +<head> +<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> +<title>에러 <?php echo $data['code']; ?></title> + +<style type="text/css"> +/*<![CDATA[*/ +body {font-family:"Verdana";font-weight:normal;color:black;background-color:white;} +h1 { font-family:"Verdana";font-weight:normal;font-size:18pt;color:red } +h2 { font-family:"Verdana";font-weight:normal;font-size:14pt;color:maroon } +h3 {font-family:"Verdana";font-weight:bold;font-size:11pt} +p {font-family:"Verdana";font-weight:normal;color:black;font-size:9pt;margin-top: -5px} +.version {color: gray;font-size:8pt;border-top:1px solid #aaaaaa;} +/*]]>*/ +</style> +</head> + +<body> +<h1>에러 <?php echo $data['code']; ?></h1> +<h2><?php echo nl2br(CHtml::encode($data['message'])); ?></h2> +<p> +웹 서버가 요청을 처리하는 동안 에러가 발생했습니다. +</p> +<p> +서버 에러로 의심되면 <?php echo $data['admin']; ?>에게 문의 바랍니다. +</p> +<p> +고맙습니다. +</p> +<div class="version"> +<?php echo date('Y-m-d H:i:s',$data['time']) .' '. $data['version']; ?> +</div> +</body> +</html> diff --git a/framework/views/ko/error400.php b/framework/views/ko/error400.php new file mode 100644 index 0000000..7e689d8 --- /dev/null +++ b/framework/views/ko/error400.php @@ -0,0 +1,32 @@ +<!DOCTYPE html PUBLIC + "-//W3C//DTD XHTML 1.0 Transitional//EN" + "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> +<head> +<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> +<title>잘못된 요청</title> +<style type="text/css"> +/*<![CDATA[*/ +body {font-family:"Verdana";font-weight:normal;color:black;background-color:white;} +h1 { font-family:"Verdana";font-weight:normal;font-size:18pt;color:red } +h2 { font-family:"Verdana";font-weight:normal;font-size:14pt;color:maroon } +h3 {font-family:"Verdana";font-weight:bold;font-size:11pt} +p {font-family:"Verdana";font-weight:normal;color:black;font-size:9pt;margin-top: -5px} +.version {color: gray;font-size:8pt;border-top:1px solid #aaaaaa;} +/*]]>*/ +</style> +</head> +<body> +<h1>잘못된 요청</h1> +<h2><?php echo nl2br(CHtml::encode($data['message'])); ?></h2> +<p> +문법 오류로 요청을 처리하지 못했습니다. 수정 후 다시 요청하기 바랍니다. +</p> +<p> +서버 에러로 의심되면 <?php echo $data['admin']; ?>에게 문의 바랍니다. +</p> +<div class="version"> +<?php echo date('Y-m-d H:i:s',$data['time']) .' '. $data['version']; ?> +</div> +</body> +</html> diff --git a/framework/views/ko/error403.php b/framework/views/ko/error403.php new file mode 100644 index 0000000..ab9d48c --- /dev/null +++ b/framework/views/ko/error403.php @@ -0,0 +1,32 @@ +<!DOCTYPE html PUBLIC + "-//W3C//DTD XHTML 1.0 Transitional//EN" + "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> +<head> +<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> +<title>권한 없음</title> +<style type="text/css"> +/*<![CDATA[*/ +body {font-family:"Verdana";font-weight:normal;color:black;background-color:white;} +h1 { font-family:"Verdana";font-weight:normal;font-size:18pt;color:red } +h2 { font-family:"Verdana";font-weight:normal;font-size:14pt;color:maroon } +h3 {font-family:"Verdana";font-weight:bold;font-size:11pt} +p {font-family:"Verdana";font-weight:normal;color:black;font-size:9pt;margin-top: -5px} +.version {color: gray;font-size:8pt;border-top:1px solid #aaaaaa;} +/*]]>*/ +</style> +</head> +<body> +<h1>권한 없음</h1> +<h2><?php echo nl2br(CHtml::encode($data['message'])); ?></h2> +<p> +이 페이지에 접근할 권한이 없습니다. +</p> +<p> +서버 에러로 의심되면 <?php echo $data['admin']; ?>에게 문의 바랍니다. +</p> +<div class="version"> +<?php echo date('Y-m-d H:i:s',$data['time']) .' '. $data['version']; ?> +</div> +</body> +</html> diff --git a/framework/views/ko/error404.php b/framework/views/ko/error404.php new file mode 100644 index 0000000..8bfa70c --- /dev/null +++ b/framework/views/ko/error404.php @@ -0,0 +1,33 @@ +<!DOCTYPE html PUBLIC + "-//W3C//DTD XHTML 1.0 Transitional//EN" + "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> +<head> +<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> +<title>페이지 없음</title> +<style type="text/css"> +/*<![CDATA[*/ +body {font-family:"Verdana";font-weight:normal;color:black;background-color:white;} +h1 { font-family:"Verdana";font-weight:normal;font-size:18pt;color:red } +h2 { font-family:"Verdana";font-weight:normal;font-size:14pt;color:maroon } +h3 {font-family:"Verdana";font-weight:bold;font-size:11pt} +p {font-family:"Verdana";font-weight:normal;color:black;font-size:9pt;margin-top: -5px} +.version {color: gray;font-size:8pt;border-top:1px solid #aaaaaa;} +/*]]>*/ +</style> +</head> +<body> +<h1>페이지 없음</h1> +<h2><?php echo nl2br(CHtml::encode($data['message'])); ?></h2> +<p> +서버에서 요청한 URL을 찾을 수 없습니다. +직접 URL을 입력했다면 스펠링을 확인 후 다시 시도하기 바랍니다. +</p> +<p> +서버 에러로 의심되면 <?php echo $data['admin']; ?>에게 문의 바랍니다. +</p> +<div class="version"> +<?php echo date('Y-m-d H:i:s',$data['time']) .' '. $data['version']; ?> +</div> +</body> +</html> diff --git a/framework/views/ko/error500.php b/framework/views/ko/error500.php new file mode 100644 index 0000000..799376a --- /dev/null +++ b/framework/views/ko/error500.php @@ -0,0 +1,35 @@ +<!DOCTYPE html PUBLIC + "-//W3C//DTD XHTML 1.0 Transitional//EN" + "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> +<head> +<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> +<title>내부 서버 에러</title> + +<style type="text/css"> +/*<![CDATA[*/ +body {font-family:"Verdana";font-weight:normal;color:black;background-color:white;} +h1 { font-family:"Verdana";font-weight:normal;font-size:18pt;color:red } +h2 { font-family:"Verdana";font-weight:normal;font-size:14pt;color:maroon } +h3 {font-family:"Verdana";font-weight:bold;font-size:11pt} +p {font-family:"Verdana";font-weight:normal;color:black;font-size:9pt;margin-top: -5px} +.version {color: gray;font-size:8pt;border-top:1px solid #aaaaaa;} +/*]]>*/ +</style> +</head> + +<body> +<h1>내부 서버 에러</h1> +<h2><?php echo nl2br(CHtml::encode($data['message'])); ?></h2> +<p> +웹 서버가 요청을 처리하는 동안 내부 서버 에러가 발생했습니다. +<?php echo $data['admin']; ?>으로 문제점 보고를 부탁드립니다. +</p> +<p> +고맙습니다. +</p> +<div class="version"> +<?php echo date('Y-m-d H:i:s',$data['time']) .' '. $data['version']; ?> +</div> +</body> +</html> diff --git a/framework/views/ko/error503.php b/framework/views/ko/error503.php new file mode 100644 index 0000000..bc0245d --- /dev/null +++ b/framework/views/ko/error503.php @@ -0,0 +1,31 @@ +<!DOCTYPE html PUBLIC + "-//W3C//DTD XHTML 1.0 Transitional//EN" + "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> +<head> +<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> +<title>접근 불가</title> +<style type="text/css"> +/*<![CDATA[*/ +body {font-family:"Verdana";font-weight:normal;color:black;background-color:white;} +h1 { font-family:"Verdana";font-weight:normal;font-size:18pt;color:red } +h2 { font-family:"Verdana";font-weight:normal;font-size:14pt;color:maroon } +h3 {font-family:"Verdana";font-weight:bold;font-size:11pt} +p {font-family:"Verdana";font-weight:normal;color:black;font-size:9pt;margin-top: -5px} +.version {color: gray;font-size:8pt;border-top:1px solid #aaaaaa;} +/*]]>*/ +</style> +</head> +<body> +<h1>접근 불가</h1> +<p> +현재 시스템 점검 중입니다. 조만간 다시 찾아뵙겠습니다. +</p> +<p> +고맙습니다. +</p> +<div class="version"> +<?php echo date('Y-m-d H:i:s',$data['time']) .' '. $data['version']; ?> +</div> +</body> +</html> diff --git a/framework/views/ko/exception.php b/framework/views/ko/exception.php new file mode 100644 index 0000000..6311c7c --- /dev/null +++ b/framework/views/ko/exception.php @@ -0,0 +1,242 @@ +<!DOCTYPE html PUBLIC + "-//W3C//DTD XHTML 1.0 Transitional//EN" + "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> +<head> +<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> +<title><?php echo CHtml::encode($data['type'])?></title> + +<style type="text/css"> +/*<![CDATA[*/ +html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,font,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td{border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;margin:0;padding:0;} +body{line-height:1;} +ol,ul{list-style:none;} +blockquote,q{quotes:none;} +blockquote:before,blockquote:after,q:before,q:after{content:none;} +:focus{outline:0;} +ins{text-decoration:none;} +del{text-decoration:line-through;} +table{border-collapse:collapse;border-spacing:0;} + +body { + font: normal 9pt "Verdana"; + color: #000; + background: #fff; +} + +h1 { + font: normal 18pt "Verdana"; + color: #f00; + margin-bottom: .5em; +} + +h2 { + font: normal 14pt "Verdana"; + color: #800000; + margin-bottom: .5em; +} + +h3 { + font: bold 11pt "Verdana"; +} + +pre { + font: normal 11pt Menlo, Consolas, "Lucida Console"; +} + +pre span.error { + display: block; + background: #fce3e3; +} + +pre span.ln { + color: #999; + padding-right: 0.5em; + border-right: 1px solid #ccc; +} + +pre span.error-ln { + font-weight: bold; +} + +.container { + margin: 1em 4em; +} + +.version { + color: gray; + font-size: 8pt; + border-top: 1px solid #aaa; + padding-top: 1em; + margin-bottom: 1em; +} + +.message { + color: #000; + padding: 1em; + font-size: 11pt; + background: #f3f3f3; + -webkit-border-radius: 10px; + -moz-border-radius: 10px; + border-radius: 10px; + margin-bottom: 1em; + line-height: 160%; +} + +.source { + margin-bottom: 1em; +} + +.code pre { + background-color: #ffe; + margin: 0.5em 0; + padding: 0.5em; + line-height: 125%; + border: 1px solid #eee; +} + +.source .file { + margin-bottom: 1em; + font-weight: bold; +} + +.traces { + margin: 2em 0; +} + +.trace { + margin: 0.5em 0; + padding: 0.5em; +} + +.trace.app { + border: 1px dashed #c00; +} + +.trace .number { + text-align: right; + width: 2em; + padding: 0.5em; +} + +.trace .content { + padding: 0.5em; +} + +.trace .plus, +.trace .minus { + display:inline; + vertical-align:middle; + text-align:center; + border:1px solid #000; + color:#000; + font-size:10px; + line-height:10px; + margin:0; + padding:0 1px; + width:10px; + height:10px; +} + +.trace.collapsed .minus, +.trace.expanded .plus, +.trace.collapsed pre { + display: none; +} + +.trace-file { + cursor: pointer; + padding: 0.2em; +} + +.trace-file:hover { + background: #f0ffff; +} +/*]]>*/ +</style> +</head> + +<body> +<div class="container"> + <h1><?php echo $data['type']?></h1> + + <p class="message"> + <?php echo nl2br(CHtml::encode($data['message']))?> + </p> + + <div class="source"> + <p class="file"><?php echo CHtml::encode($data['file'])."({$data['line']})"?></p> + <?php echo $this->renderSourceCode($data['file'],$data['line'],$this->maxSourceLines); ?> + </div> + + <div class="traces"> + <h2>Stack Trace</h2> + <?php $count=0; ?> + <table style="width:100%;"> + <?php foreach($data['traces'] as $n => $trace): ?> + <?php + if($this->isCoreCode($trace)) + $cssClass='core collapsed'; + else if(++$count>3) + $cssClass='app collapsed'; + else + $cssClass='app expanded'; + $hasCode=$trace['file']!=='unknown' && is_file($trace['file']); + ?> + <tr class="trace <?php echo $cssClass; ?>"> + <td class="number"> + #<?php echo $n; ?> + </td> + <td class="content"> + <div class="trace-file"> + <?php if($hasCode): ?> + <div class="plus">+</div> + <div class="minus">–</div> + <?php endif; ?> + <?php + echo ' '; + echo CHtml::encode($trace['file'])."(".$trace['line'].")"; + echo ': '; + if(!empty($trace['class'])) + echo "<strong>{$trace['class']}</strong>{$trace['type']}"; + echo "<strong>{$trace['function']}</strong>("; + if(!empty($trace['args'])) + echo CHtml::encode($this->argumentsToString($trace['args'])); + echo ')'; + ?> + </div> + + <?php if($hasCode) echo $this->renderSourceCode($trace['file'],$trace['line'],$this->maxTraceSourceLines); ?> + </td> + </tr> + <?php endforeach; ?> + </table> + </div> + + <div class="version"> + <?php echo date('Y-m-d H:i:s',$data['time']) .' '. $data['version']; ?> + </div> +</div> + +<script type="text/javascript"> +/*<![CDATA[*/ +var traceReg = new RegExp("(^|\\s)trace-file(\\s|$)"); +var collapsedReg = new RegExp("(^|\\s)collapsed(\\s|$)"); + +var e = document.getElementsByTagName("div"); +for(var j=0,len=e.length;j<len;j++){ + if(traceReg.test(e[j].className)){ + e[j].onclick = function(){ + var trace = this.parentNode.parentNode; + if(collapsedReg.test(trace.className)) + trace.className = trace.className.replace("collapsed", "expanded"); + else + trace.className = trace.className.replace("expanded", "collapsed"); + } + } +} +/*]]>*/ +</script> + +</body> +</html> diff --git a/framework/views/ko/log-firebug.php b/framework/views/ko/log-firebug.php new file mode 100644 index 0000000..9a0638f --- /dev/null +++ b/framework/views/ko/log-firebug.php @@ -0,0 +1,23 @@ +<script type="text/javascript"> +/*<![CDATA[*/ +if(typeof(console)=='object') +{ + console.group("Application Log"); +<?php +foreach($data as $index=>$log) +{ + $time=date('H:i:s.',$log[3]).sprintf('%03d',(int)(($log[3]-(int)$log[3])*1000)); + if($log[1]===CLogger::LEVEL_WARNING) + $func='warn'; + else if($log[1]===CLogger::LEVEL_ERROR) + $func='error'; + else + $func='log'; + $content=CJavaScript::quote("[$time][$log[1]][$log[2]] $log[0]"); + echo "\tconsole.{$func}(\"{$content}\");\n"; +} +?> + console.groupEnd(); +} +/*]]>*/ +</script>
\ No newline at end of file diff --git a/framework/views/ko/log.php b/framework/views/ko/log.php new file mode 100644 index 0000000..1187d2f --- /dev/null +++ b/framework/views/ko/log.php @@ -0,0 +1,40 @@ +<!-- start log messages --> +<table class="yiiLog" width="100%" cellpadding="2" style="border-spacing:1px;font:11px Verdana, Arial, Helvetica, sans-serif;background:#EEEEEE;color:#666666;"> + <tr> + <th style="background:black;color:white;" colspan="5"> + Application Log + </th> + </tr> + <tr style="background-color: #ccc;"> + <th style="width:120px">Timestamp</th> + <th>Level</th> + <th>Category</th> + <th>Message</th> + </tr> +<?php +$colors=array( + CLogger::LEVEL_PROFILE=>'#DFFFE0', + CLogger::LEVEL_INFO=>'#FFFFDF', + CLogger::LEVEL_WARNING=>'#FFDFE5', + CLogger::LEVEL_ERROR=>'#FFC0CB', +); +foreach($data as $index=>$log) +{ + $color=($index%2)?'#F5F5F5':'#FFFFFF'; + if(isset($colors[$log[1]])) + $color=$colors[$log[1]]; + $message='<pre>'.CHtml::encode(wordwrap($log[0])).'</pre>'; + $time=date('H:i:s.',$log[3]).sprintf('%06d',(int)(($log[3]-(int)$log[3])*1000000)); + + echo <<<EOD + <tr style="background:{$color}"> + <td align="center">{$time}</td> + <td>{$log[1]}</td> + <td>{$log[2]}</td> + <td>{$message}</td> + </tr> +EOD; +} +?> +</table> +<!-- end of log messages -->
\ No newline at end of file diff --git a/framework/views/ko/profile-callstack-firebug.php b/framework/views/ko/profile-callstack-firebug.php new file mode 100644 index 0000000..cfe1a26 --- /dev/null +++ b/framework/views/ko/profile-callstack-firebug.php @@ -0,0 +1,19 @@ +<script type="text/javascript"> +/*<![CDATA[*/ +if(typeof(console)=='object') +{ + console.group("Profiling Callstack Report"); +<?php +foreach($data as $index=>$entry) +{ + list($proc,$time,$level)=$entry; + $proc=CJavaScript::quote($proc); + $time=sprintf('%0.5f',$time); + $spaces=str_repeat(' ',$level*8); + echo "\tconsole.log(\"[$time]{$spaces}{$proc}\");\n"; +} +?> + console.groupEnd(); +} +/*]]>*/ +</script>
\ No newline at end of file diff --git a/framework/views/ko/profile-callstack.php b/framework/views/ko/profile-callstack.php new file mode 100644 index 0000000..f4b4014 --- /dev/null +++ b/framework/views/ko/profile-callstack.php @@ -0,0 +1,30 @@ +<!-- start profiling callstack --> +<table class="yiiLog" width="100%" cellpadding="2" style="border-spacing:1px;font:11px Verdana, Arial, Helvetica, sans-serif;background:#EEEEEE;color:#666666;"> + <tr> + <th style="background:black;color:white;" colspan="2"> + Profiling Callstack Report + </th> + </tr> + <tr style="background-color: #ccc;"> + <th>Procedure</th> + <th>Time (s)</th> + </tr> +<?php +foreach($data as $index=>$entry) +{ + $color=($index%2)?'#F5F5F5':'#FFFFFF'; + list($proc,$time,$level)=$entry; + $proc=CHtml::encode($proc); + $time=sprintf('%0.5f',$time); + $spaces=str_repeat(' ',$level*8); + + echo <<<EOD + <tr style="background:{$color}"> + <td>{$spaces}{$proc}</td> + <td align="center">{$time}</td> + </tr> +EOD; +} +?> +</table> +<!-- end of profiling callstack -->
\ No newline at end of file diff --git a/framework/views/ko/profile-summary-firebug.php b/framework/views/ko/profile-summary-firebug.php new file mode 100644 index 0000000..dcca4c0 --- /dev/null +++ b/framework/views/ko/profile-summary-firebug.php @@ -0,0 +1,22 @@ +<script type="text/javascript"> +/*<![CDATA[*/ +if(typeof(console)=='object') +{ + console.group("Profiling Summary Report"); + console.log(" count total average min max "); +<?php +foreach($data as $index=>$entry) +{ + $proc=CJavaScript::quote($entry[0]); + $count=sprintf('%5d',$entry[1]); + $min=sprintf('%0.5f',$entry[2]); + $max=sprintf('%0.5f',$entry[3]); + $total=sprintf('%0.5f',$entry[4]); + $average=sprintf('%0.5f',$entry[4]/$entry[1]); + echo "\tconsole.log(\" $count $total $average $min $max {$proc}\");\n"; +} +?> + console.groupEnd(); +} +/*]]>*/ +</script> diff --git a/framework/views/ko/profile-summary.php b/framework/views/ko/profile-summary.php new file mode 100644 index 0000000..9fe021b --- /dev/null +++ b/framework/views/ko/profile-summary.php @@ -0,0 +1,41 @@ +<!-- start profiling summary --> +<table class="yiiLog" width="100%" cellpadding="2" style="border-spacing:1px;font:11px Verdana, Arial, Helvetica, sans-serif;background:#EEEEEE;color:#666666;"> + <tr> + <th style="background:black;color:white;" colspan="6"> + Profiling Summary Report + (Time: <?php echo sprintf('%0.5f',Yii::getLogger()->getExecutionTime()); ?>s, + Memory: <?php echo number_format(Yii::getLogger()->getMemoryUsage()/1024); ?>KB) + </th> + </tr> + <tr style="background-color: #ccc;"> + <th>Procedure</th> + <th>Count</th> + <th>Total (s)</th> + <th>Avg. (s)</th> + <th>Min. (s)</th> + <th>Max. (s)</th> + </tr> +<?php +foreach($data as $index=>$entry) +{ + $color=($index%2)?'#F5F5F5':'#FFFFFF'; + $proc=CHtml::encode($entry[0]); + $min=sprintf('%0.5f',$entry[2]); + $max=sprintf('%0.5f',$entry[3]); + $total=sprintf('%0.5f',$entry[4]); + $average=sprintf('%0.5f',$entry[4]/$entry[1]); + + echo <<<EOD + <tr style="background:{$color}"> + <td>{$proc}</td> + <td align="center">{$entry[1]}</td> + <td align="center">{$total}</td> + <td align="center">{$average}</td> + <td align="center">{$min}</td> + <td align="center">{$max}</td> + </tr> +EOD; +} +?> +</table> +<!-- end of profiling summary -->
\ No newline at end of file |
