forked from php/web-qa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
77 lines (69 loc) · 2.4 KB
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<?php
include("include/functions.php");
include("include/release-qa.php");
$TITLE = "PHP-QAT: Quality Assurance Team";
$SITE_UPDATE = date("D M d H:i:s Y T", filectime(__FILE__))."<br />\n".
'/* $Id$ */';
common_header();
?>
<table width="70%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="10"><img src="gfx/spacer.gif" width="10" height="1"></td>
<td width="100%">
<h1>Welcome to the<br />PHP Quality Assurance Team Web Page.</h1>
<p>
The PHP Quality Assurance Team supports the PHP Development Team by
providing them with information on compatibility and stability issues.
</p>
</td>
<td width="10"><img src="gfx/spacer.gif" width="10" height="1"></td>
</tr>
<tr>
<td width="10"> </td>
<td width="100%">
<br />
<h3>Make test results:</h3>
<ul>
<li>
All users who compile PHP are encouraged to run '<a href="http://qa.php.net/running-tests.php">make test</a>', which
runs the test suite and optionally sends the <a href=" http://news.php.net/php.qa.reports">results here</a>.
<br /><br />
</li>
<li>
Compiled <a href="reports/">user submitted test result reports</a> for analysis
<br /><br />
</li>
<li>
Additional test results are available at <a href="http://gcov.php.net/">gcov.php.net</a> and <a href="http://ci.qa.php.net">ci.qa.php.net</a>.
</li>
</ul>
<h3>The team is currently focused on:</h3>
<ul>
<li>
<?php show_release_qa($QA_RELEASES); ?>
See <a href="http://windows.php.net/qa/">here</a> for the Windows builds.
</li>
</ul>
</td>
<td width="10"> </td>
</tr>
<tr>
<td width="10"> </td>
<td width="100%">
<br />
<p>
If you would like to contribute to these efforts, please
visit our <a href="howtohelp.php">How To Help</a> page.
</p>
</td>
<td width="10"> </td>
</tr>
<tr>
<td width="10"> </td>
<td width="100%"> </td>
<td width="10"> </td>
</tr>
</table>
<?php
common_footer();
?>