diff options
author | Romain d'Alverny <rda@mageia.org> | 2012-09-04 09:02:09 +0000 |
---|---|---|
committer | Romain d'Alverny <rda@mageia.org> | 2012-09-04 09:02:09 +0000 |
commit | b3b88ea646af31ee94d1589fd12ab086bc0fc7b6 (patch) | |
tree | 34e99a2716198fbdb5fafeef4342449c18ace7d6 /conf.php | |
parent | 59fcc04bb1e92ce0476ae3eecf8d4967c9dd3133 (diff) | |
download | pkgsubmit-b3b88ea646af31ee94d1589fd12ab086bc0fc7b6.tar pkgsubmit-b3b88ea646af31ee94d1589fd12ab086bc0fc7b6.tar.gz pkgsubmit-b3b88ea646af31ee94d1589fd12ab086bc0fc7b6.tar.bz2 pkgsubmit-b3b88ea646af31ee94d1589fd12ab086bc0fc7b6.tar.xz pkgsubmit-b3b88ea646af31ee94d1589fd12ab086bc0fc7b6.zip |
Code reorg.
- CSS move in style.css
- configuration values move in conf.php
- function definitions move in lib.php
- a few code style fixes
- test_index.php to test these changes before pushing to prod file
Diffstat (limited to 'conf.php')
-rw-r--r-- | conf.php | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/conf.php b/conf.php new file mode 100644 index 0000000..71482fd --- /dev/null +++ b/conf.php @@ -0,0 +1,34 @@ +<?php +/** + * Mageia build-system quick status report script. + * + * @copyright Copyright (C) 2011 Mageia.Org + * + * @author Olivier Blin + * @author Pascal Terjan + * @author Romain d'Alverny + * @author Michael Scherer + * + * @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. + * +*/ + +/** Full system path where packages are uploaded. */ +$upload_dir = '/home/schedbot/uploads'; + +/** How long a history should we keep, in days. */ +$max_modified = 2; + +/** html > body > h1 title */ +$title = '<a href="http://mageia.org/">Mageia</a> build system status'; + +/** Should crawlers index this page or not? meta[robots] tag.*/ +$robots = 'index,nofollow,nosnippet,noarchive'; + +/** */ +$g_root_url = 'http://pkgsubmit.mageia.org/';
\ No newline at end of file |