1<?php
2# ---------------------------------------------------------------------
3# rth is a requirement, test, and bugtracking system
4# Copyright (C) 2005 George Holbrook - rth@lists.sourceforge.net
5# This program is distributed under the terms and conditions of the GPL
6# See the README and LICENSE files for details
7#----------------------------------------------------------------------
8# ------------------------------------
9# Report Page
10#
11# $RCSfile: report_page.php,v $  $Revision: 1.7 $
12# ------------------------------------
13
14include"./api/include_api.php";
15auth_authenticate_user();
16
17$project_name = session_get_project_name();
18$page                   = basename(__FILE__);
19
20html_window_title();
21html_print_body();
22html_page_title($project_name ." - " . lang_get('reporting_page') );
23html_page_header( $db, $project_name );
24html_print_menu();
25
26error_report_check( $_GET );
27
28#print"<br>Please select from one of the reports below<br><br>";
29
30print"<br><br>". NEWLINE;
31print"<div align=center>". NEWLINE;
32print"<table class=width90 rules=cols>". NEWLINE;
33
34print"<tr class=tbl_header>". NEWLINE;
35html_tbl_print_header( lang_get('report_name') );
36html_tbl_print_header( lang_get('description') );
37print"</tr>". NEWLINE;
38
39# Custom Report
40print"<tr class='row-2'>";
41//print"<td class='tbl-l'><a href='report_custom_page.php'>". lang_get('report_custom_page') ."</a></td>". NEWLINE;
42print"<td class='tbl-l'>". lang_get('report_custom_page') ."</td>". NEWLINE;
43print"<td class='tbl-l'>". lang_get('report_custom_page_desc') ."</td>". NEWLINE;
44print"</tr>". NEWLINE;
45
46# TEST AREA REPORT
47print"<tr class='row-1'>";
48print"<td class='tbl-l'><a href='report_area_tested_page.php'>". lang_get('area_tested') ."</a></td>". NEWLINE;
49print"<td class='tbl-l'>". lang_get('area_tested_desc') ."</td>". NEWLINE;
50print"</tr>". NEWLINE;
51
52# BUILD STATUS REPORT
53print"<tr class='row-2'>";
54print"<td class='tbl-l'><a href='report_build_status_page.php'>". lang_get('build_status') ."</a></td>". NEWLINE;
55print"<td class='tbl-l'>". lang_get('build_status_desc') ."</td>". NEWLINE;
56print"</tr>". NEWLINE;
57
58# FAILED VERIFICATIONS
59print"<tr class='row-1'>";
60print"<td class='tbl-l'><a href='report_verif_page.php'>". lang_get('failed_verifications') ."</a></td>". NEWLINE;
61print"<td class='tbl-l'>". lang_get('failed_ver_desc') ."</td>". NEWLINE;
62print"</tr>". NEWLINE;
63
64# REQUIREMENT COVERAGE REPORT
65print"<tr class='row-2'>";
66print"<td class='tbl-l'><a href='report_requirements_page.php'>". lang_get('requirements_coverage') ."</a></td>". NEWLINE;
67print"<td class='tbl-l'>". lang_get('requirements_coverage_desc') ."</td>". NEWLINE;
68print"</tr>". NEWLINE;
69
70# SIGN OFF REPORT
71print"<tr class='row-1'>";
72print"<td class='tbl-l'><a href='report_signoff_page.php'>". lang_get('signoff_report') ."</a></td>". NEWLINE;
73print"<td class='tbl-l'>". lang_get('signoff_report_desc') ."</td>". NEWLINE;
74print"</tr>". NEWLINE;
75
76#TESTSETS STATUS PAGE
77print"<tr class='row-2'>";
78print"<td class='tbl-l'><a href='testset_viewlast_page.php'>". lang_get('testsets_status') ."</a></td>". NEWLINE;
79print"<td class='tbl-l'>". lang_get('testsets_status_desc') ."</td>". NEWLINE;
80print"</tr>". NEWLINE;
81
82print"</table>". NEWLINE;
83print"</div>". NEWLINE;
84
85/*
86print"<a href='report_build_status_page.php'>Build Status</a>";
87print"<br><br>";
88
89print"<a href='report_verif_page.php'>Failed Verifications</a>";
90print" <br><br>";
91
92print"<a href='report_requirements_page.php'>Requirements</a>";
93print" <br><br>";
94
95print"<a href='report_signoff_page.php'>Sign Off</a>";
96print" <br><br>";
97*/
98
99
100html_print_footer();
101
102
103# ------------------------------------
104# $Log: report_page.php,v $
105# Revision 1.7  2008/07/17 13:54:12  peter_thal
106# added new feature: test sets status (overview)
107# +fixed some bugs with project_id parameter in testdetail_page references
108#
109# Revision 1.6  2006/08/05 22:08:37  gth2
110# adding NEWLINE constant to support multiple OS newline chars - gth
111#
112# Revision 1.5  2006/06/10 01:55:06  gth2
113# no message
114#
115# Revision 1.4  2006/04/08 13:38:41  gth2
116# Adding to reporting module
117#
118# Revision 1.3  2006/02/24 11:37:48  gth2
119# update to div - class=div-c not working in firefox - gth
120#
121# Revision 1.2  2005/12/08 19:39:51  gth2
122# updating reports containing calls to jp-graph - gth
123#
124# Revision 1.1.1.1  2005/11/30 23:00:57  gth2
125# importing initial version - gth
126#
127# ------------------------------------
128?>
129