| Marcus Boerger 2006-03-20, 6:56 pm |
| helly Mon Mar 20 20:42:18 2006 UTC
Added files:
/php-gcov-web gcov_epilog.inc gcov_prolog.inc
Modified files:
/php-gcov-web .htaccess index.php
/php-gcov-web/PHP_4_4 .htaccess
/php-gcov-web/PHP_5_1 .htaccess
/php-gcov-web/PHP_HEAD .htaccess
Log:
- Change to use LTP's genhtml 1.11
http://cvs.php.net/viewcvs.cgi/php-...2&diff_format=u
Index: php-gcov-web/.htaccess
diff -u php-gcov-web/.htaccess:1.1.1.1 php-gcov-web/.htaccess:1.2
--- php-gcov-web/.htaccess:1.1.1.1 Sun Mar 12 19:52:45 2006
+++ php-gcov-web/.htaccess Mon Mar 20 20:42:18 2006
@@ -21,7 +21,7 @@
#<IfModule mod_rewrite.c>
RewriteEngine On
- RewriteRule ^PHP_([_A-Z0-9]+)/?$ /PHP_$1/lcov/index.html [R,L]
+ RewriteRule ^PHP_([_A-Z0-9]+)/?$ /PHP_$1/lcov/index.php [R,L]
#</IfModule>
ErrorDocument 300 /index.php
http://cvs.php.net/viewcvs.cgi/php-...6&diff_format=u
Index: php-gcov-web/index.php
diff -u php-gcov-web/index.php:1.5 php-gcov-web/index.php:1.6
--- php-gcov-web/index.php:1.5 Mon Mar 13 01:11:33 2006
+++ php-gcov-web/index.php Mon Mar 20 20:42:18 2006
@@ -49,7 +49,7 @@
{
echo "<tr>";
echo "<th align='left'>$tag</th>";
- show_link($tag, 'lcov/index.html');
+ show_link($tag, 'lcov/index.php');
show_link($tag, 'run-tests.log.php', 'run-tests.html.inc');
$l_time = show_link($tag, 'make.log.php', 'make.log');
show_link($tag, 'make.log.new.php', 'make.log.new', $l_time);
http://cvs.php.net/viewcvs.cgi/php-...3&diff_format=u
Index: php-gcov-web/PHP_4_4/.htaccess
diff -u php-gcov-web/PHP_4_4/.htaccess:1.2 php-gcov-web/PHP_4_4/.htaccess:1.3
--- php-gcov-web/PHP_4_4/.htaccess:1.2 Mon Mar 13 21:01:51 2006
+++ php-gcov-web/PHP_4_4/.htaccess Mon Mar 20 20:42:18 2006
@@ -1,3 +1,2 @@
ErrorDocument 300 /PHP_4_4/
ErrorDocument 404 /PHP_4_4/
-AddType application/x-httpd-php .php .html
http://cvs.php.net/viewcvs.cgi/php-...3&diff_format=u
Index: php-gcov-web/PHP_5_1/.htaccess
diff -u php-gcov-web/PHP_5_1/.htaccess:1.2 php-gcov-web/PHP_5_1/.htaccess:1.3
--- php-gcov-web/PHP_5_1/.htaccess:1.2 Mon Mar 13 21:01:52 2006
+++ php-gcov-web/PHP_5_1/.htaccess Mon Mar 20 20:42:18 2006
@@ -1,3 +1,2 @@
ErrorDocument 300 /PHP_5_1/
ErrorDocument 404 /PHP_5_1/
-AddType application/x-httpd-php .php .html
http://cvs.php.net/viewcvs.cgi/php-...3&diff_format=u
Index: php-gcov-web/PHP_HEAD/.htaccess
diff -u php-gcov-web/PHP_HEAD/.htaccess:1.2 php-gcov-web/PHP_HEAD/.htaccess:1.3
--- php-gcov-web/PHP_HEAD/.htaccess:1.2 Mon Mar 13 21:01:52 2006
+++ php-gcov-web/PHP_HEAD/.htaccess Mon Mar 20 20:42:18 2006
@@ -1,3 +1,2 @@
ErrorDocument 300 /PHP_HEAD/
ErrorDocument 404 /PHP_HEAD/
-AddType application/x-httpd-php .php .html
http://cvs.php.net/viewcvs.cgi/php-...=markup&rev=1.1
Index: php-gcov-web/gcov_epilog.inc
+++ php-gcov-web/gcov_epilog.inc
</td>
</tr>
</table><!-- content -->
</td>
</tr>
</table><!-- outer -->
<?php include $maindir.'/footer.inc'; ?>
</body>
</html>
http://cvs.php.net/viewcvs.cgi/php-...=markup&rev=1.1
Index: php-gcov-web/gcov_prolog.inc
+++ php-gcov-web/gcov_prolog.inc
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html lang="en">
<?php $maindir='/local/Web/sites/php-gcov-web'; require $maindir.'/main.inc'; ?>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>@pagetitle@</title>
<link rel="stylesheet" type="text/css" href="@basedir@gcov.css">
<link rel="stylesheet" href="/style.css" />
<link rel="shortcut icon" href="/favicon.ico" />
</head>
<body bgcolor="#ffffff" text="#000000" link="#000099" alink="#0000ff" vlink="#000099">
<?php include $maindir.'/header.inc'; ?>
<table border="0" cellspacing="0" cellpadding="0"><!-- outer -->
<tr>
<td align="left" valign="top" width="120" bgcolor="#f0f0f0">
<?php include $maindir.'/sidebar.inc'; ?>
</td>
<td bgcolor="#cccccc" background="/images/checkerboard.gif" width="1"><img src="/images/spacer.gif" width="1" height="1" border="0" alt="" /></td>
<td align="left" valign="top">
<table cellpadding="10" cellspacing="0" width="100%"><tr><td align="left" valign="top"><!- content -->
|