forked from Kitware/CDash
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathloggingAdministration.php
51 lines (41 loc) · 1.74 KB
/
loggingAdministration.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
<?php
/*=========================================================================
Program: CDash - Cross-Platform Dashboard System
Module: $Id: buildOverview.php 1161 2008-09-19 14:56:14Z jjomier $
Language: PHP
Date: $Date: 2008-01-25 14:40:27 -0500 (Fri, 25 Jan 2008) $
Version: $Revision: 373 $
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.
=========================================================================*/
include("cdash/config.php");
require_once("cdash/pdo.php");
include('login.php');
include_once("cdash/common.php");
include("cdash/version.php");
@$db = pdo_connect("$CDASH_DB_HOST", "$CDASH_DB_LOGIN","$CDASH_DB_PASS");
pdo_select_db("$CDASH_DB_NAME",$db);
checkUserPolicy(@$_SESSION['cdash']['loginid'],0); // only admin
$xml = begin_XML_for_XSLT();
$xml .= "<backurl>user.php</backurl>";
$xml .= "<title>CDash - Logging Administration</title>";
$xml .= "<menutitle>CDash</menutitle>";
$xml .= "<menusubtitle>Log Viewer</menusubtitle>";
$xml .= "<log>";
$xml .= htmlentities(file_get_contents($CDASH_LOG_FILE));
$xml .= "</log>";
// List of the file in the directory that have other*.xml
foreach (glob($CDASH_BACKUP_DIRECTORY."/*_Other*.xml") as $filename)
{
$xml .= "<file>";
$xml .= "<name>".substr($filename,strrpos($filename,"/")+1)."</name>";
$xml .= "<fullpath>".$filename."</fullpath>";
$xml .= "</file>";
}
$xml .= "</cdash>";
// Now doing the xslt transition
generate_XSLT($xml,"loggingAdministration");
?>