diff options
author | Romain d'Alverny <rda@mageia.org> | 2011-01-14 14:59:15 +0000 |
---|---|---|
committer | Romain d'Alverny <rda@mageia.org> | 2011-01-14 14:59:15 +0000 |
commit | 1fd4ad1bab65dfbefe31ebdfeaeaf6e97e6f2105 (patch) | |
tree | 396af1a7cf5062ac7d8904f73903ffebf2d397d6 /index.php | |
parent | b489c78dcd2cb0bbc6daacda826a90dd3b025290 (diff) | |
download | pkgsubmit-1fd4ad1bab65dfbefe31ebdfeaeaf6e97e6f2105.tar pkgsubmit-1fd4ad1bab65dfbefe31ebdfeaeaf6e97e6f2105.tar.gz pkgsubmit-1fd4ad1bab65dfbefe31ebdfeaeaf6e97e6f2105.tar.bz2 pkgsubmit-1fd4ad1bab65dfbefe31ebdfeaeaf6e97e6f2105.tar.xz pkgsubmit-1fd4ad1bab65dfbefe31ebdfeaeaf6e97e6f2105.zip |
more explicit header, phpdoc format
Diffstat (limited to 'index.php')
-rw-r--r-- | index.php | 30 |
1 files changed, 22 insertions, 8 deletions
@@ -1,12 +1,26 @@ <?php - -/* Copyright (C) 2011 Oliver Blin *\ -/**************************************************************************\ -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU General Public License aspublished by the * -* Free Software Foundation; either version 2 of the License, or (at your * -* option) any later version. * -\**************************************************************************/ +/** + * Mageia build-system quick status report script. + * + * @copyright Copyright (C) 2011 Oliver Blin + * + * @author Pascal Terjan + * @author Romain d'Alverny + * + * @license http://www.gnu.org/licenses/gpl-2.0.html GNU GPL v2 + * + * This program is free software; you can redistribute it and/or modify it + * under the terms of the GNU General Public License aspublished by the + * Free Software Foundation; either version 2 of the License, or (at your + * option) any later version. + * + * + * Shows submitted packages in the past $max_modified 24 hours and their + * status (built & uploaded, failed build, rejected, etc.). + * + * This was written anew in Jan. 2011 because existing Mandriva build-system + * web report code was not clearly licensed at this very time. +*/ error_reporting(E_ALL); |