2006-08-19 09:04:45 +02:00
|
|
|
<?php
|
2016-03-23 20:58:33 +01:00
|
|
|
define('VERSION_STATIC', '16.3');
|
2013-04-23 18:22:55 +02:00
|
|
|
|
|
|
|
function get_version() {
|
2013-04-24 06:56:37 +02:00
|
|
|
date_default_timezone_set('UTC');
|
2013-04-23 18:22:55 +02:00
|
|
|
$root_dir = dirname(dirname(__FILE__));
|
|
|
|
|
2016-03-23 17:08:38 +01:00
|
|
|
if (is_dir("$root_dir/.git") && file_exists("$root_dir/.git/HEAD")) {
|
|
|
|
$head = trim(file_get_contents("$root_dir/.git/HEAD"));
|
2013-04-23 18:22:55 +02:00
|
|
|
|
2016-03-23 17:08:38 +01:00
|
|
|
if ($head) {
|
|
|
|
$matches = array();
|
2015-02-03 12:39:15 +01:00
|
|
|
|
2016-03-23 17:08:38 +01:00
|
|
|
if (preg_match("/^ref: (.*)/", $head, $matches)) {
|
|
|
|
$ref = $matches[1];
|
2013-04-23 18:22:55 +02:00
|
|
|
|
2016-03-23 17:08:38 +01:00
|
|
|
$suffix = substr(trim(file_get_contents("$root_dir/.git/$ref")), 0, 7);
|
|
|
|
$timestamp = filemtime("$root_dir/.git/$ref");
|
|
|
|
|
|
|
|
define("GIT_VERSION_HEAD", $suffix);
|
|
|
|
define("GIT_VERSION_TIMESTAMP", $timestamp);
|
|
|
|
|
|
|
|
return VERSION_STATIC . " ($suffix)";
|
|
|
|
|
|
|
|
} else {
|
|
|
|
$suffix = trim($head, 0, 7);
|
|
|
|
$timestamp = filemtime("$root_dir/.git/HEAD");
|
|
|
|
|
|
|
|
define("GIT_VERSION_HEAD", $suffix);
|
|
|
|
define("GIT_VERSION_TIMESTAMP", $timestamp);
|
|
|
|
|
|
|
|
return VERSION_STATIC . " ($suffix)";
|
|
|
|
}
|
|
|
|
}
|
2013-04-23 18:22:55 +02:00
|
|
|
}
|
2016-03-23 17:08:38 +01:00
|
|
|
|
|
|
|
return VERSION_STATIC;
|
|
|
|
|
2013-04-23 18:22:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
define('VERSION', get_version());
|
2005-08-25 16:01:20 +02:00
|
|
|
?>
|