blob: be11d18cf9ab6ced4352d0c7a9b0988d708a4467 (
plain)
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
|
<?php
/**
* Generate dashboard static report page.
*
* Should be called by a cron job, every 15 minutes.
*
* PHP version 5
*
* @category Dashboard
* @package Buildsystem
* @author Romain d'Alverny <rda@mageia.org>
* @license MIT License, see LICENSE.txt
* @link http://svnweb.mageia.org/svn/soft/dashboard/
*/
require 'Report/Box.php';
require 'Report/HTML.php';
Report_Box::run_report();
die;
// todo locales/languages summary : how many in total, which coverage globally?
$a = new Report_Box_SourcePackage();
//$a->update();
print_r($a->render());
echo "\n";
|