Changeset 1053 for trunk/htdocs/coverager/coverager.tpl.php
- Timestamp:
- 2012-07-27T09:17:42+02:00 (11 months ago)
- File:
-
- 1 edited
-
trunk/htdocs/coverager/coverager.tpl.php (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/htdocs/coverager/coverager.tpl.php
r530 r1053 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> 2 <html xmlns="http://www.w3.org/1999/xhtml"> 3 <head> 4 <?php 5 echo <<<HEAD 6 <meta http-equiv="Content-Type" content="text/html; charset=$this->charset" /> 7 <meta http-equiv="Content-Language" content="{$this->lang}" /> 8 <script type="text/javascript" src="tablesort.js" charset="$this->charset"></script> 9 HEAD; 10 ?> 11 12 <link rel="stylesheet" type="text/css" href="coverager.css" /> 13 <title><?php echo _T("XCache PHP Code Coverage Viewer"); ?></title> 14 </head> 15 <body> 16 <h1><?php echo _T("XCache PHP Code Coverage Viewer"); ?></h1> 1 <?php include "../common/header.tpl.php"; ?> 17 2 18 3 <?php … … 50 35 global $cycle; 51 36 $cycle = new Cycle('class="col1"', 'class="col2"'); 52 $l_dir = _ T("Directory");53 $l_per = _ T("Percent");54 $l_hit = _ T("Hits");55 $l_lns = _ T("Lines");56 $l_tds = _ T("TODO");37 $l_dir = _("Directory"); 38 $l_per = _("Percent"); 39 $l_hit = _("Hits"); 40 $l_lns = _("Lines"); 41 $l_tds = _("TODO"); 57 42 return <<<EOS 58 43 <div class="table-center"> … … 114 99 global $cycle; 115 100 $cycle = new Cycle('class="col1"', 'class="col2"'); 116 $l_fil = _ T("File");117 $l_per = _ T("Percent");118 $l_hit = _ T("Hits");119 $l_lns = _ T("Lines");101 $l_fil = _("File"); 102 $l_per = _("Percent"); 103 $l_hit = _("Hits"); 104 $l_lns = _("Lines"); 120 105 return <<<EOS 121 106 <div class="center-table"> … … 168 153 } 169 154 170 $l_root = _ T("root");155 $l_root = _("root"); 171 156 if ($action == 'dir') { 172 157 if (function_exists('ob_filter_path_nicer')) { … … 246 231 ?> 247 232 248 <div class="footnote"> 249 Powered By: XCache <?php echo $xcache_version; ?> coverager <?php echo _T("module"); ?> 250 </div> 251 252 </body> 253 </html> 233 <?php include "../common/footer.tpl.php"; ?> 234
Note: See TracChangeset
for help on using the changeset viewer.

