forked from Kitware/CDash
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathviewIssues.php
50 lines (38 loc) · 1.37 KB
/
viewIssues.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
<?php
/*=========================================================================
Program: CDash - Cross-Platform Dashboard System
Module: $Id: index.php 1895 2009-05-15 04:21:03Z jjomier $
Language: PHP
Date: $Date: 2009-05-15 00:21:03 -0400 (Fri, 15 May 2009) $
Version: $Revision: 1895 $
Copyright (c) 2002 Kitware, Inc. All rights reserved.
See Copyright.txt or http://www.cmake.org/HTML/Copyright.html for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notices for more information.
=========================================================================*/
$NoXSLGenerate = 1;
include("index.php");
@$projectname = $_GET["project"];
if(!isset($projectname ))
{
$xml = generate_index_table();
generate_XSLT($xml, 'indextable');
}
else
{
$projectname = htmlspecialchars(pdo_real_escape_string($projectname));
$projectid = get_project_id($projectname);
@$date = $_GET["date"];
if ($date != NULL)
{
$date = htmlspecialchars(pdo_real_escape_string($date));
}
// Check if the project has any subproject
$Project = new Project();
$Project->Id = $projectid;
$Project->Fill();
$xml = generate_main_dashboard_XML($Project, $date);
generate_XSLT($xml, 'viewIssues');
}
?>