aboutsummaryrefslogtreecommitdiffstats
path: root/rev.php
diff options
context:
space:
mode:
authorMarek Laane <bald@smail.ee>2014-10-12 10:54:11 +0300
committerMarek Laane <bald@smail.ee>2014-10-12 10:54:11 +0300
commita0b2d09125d7911656fe4cb286f20643c4432281 (patch)
tree4b825dc642cb6eb9a060e54bf8d69288fbee4904 /rev.php
parente32d8242187534c387106ff344201c42ff6afb44 (diff)
downloadwww-a0b2d09125d7911656fe4cb286f20643c4432281.tar
www-a0b2d09125d7911656fe4cb286f20643c4432281.tar.gz
www-a0b2d09125d7911656fe4cb286f20643c4432281.tar.bz2
www-a0b2d09125d7911656fe4cb286f20643c4432281.tar.xz
www-a0b2d09125d7911656fe4cb286f20643c4432281.zip
Updated Estonian translation
Diffstat (limited to 'rev.php')
-rw-r--r--rev.php53
1 files changed, 0 insertions, 53 deletions
diff --git a/rev.php b/rev.php
deleted file mode 100644
index 00b9a6d7c..000000000
--- a/rev.php
+++ /dev/null
@@ -1,53 +0,0 @@
-<?php
-/**
- * Place this at the public root of your system and adapt $app_root
- * so it relates to the app branch root.
- *
- * Used for a continuous integration prototype, on various hosts.
- *
- * PHP version 5
- *
- * @license BSD-2-Clause
- * @author Romain d'Alverny <rda at mageia.org>
-*/
-
-$app_root = __DIR__;
-
-$vars = array(
- 'app' => $_SERVER['SERVER_NAME'] . ':' . $_SERVER['SERVER_PORT'],
- 'git' => get_git_info($app_root),
- 'status' => get_status($app_root),
-);
-
-header('Content-Type: application/json; charset=utf-8');
-echo json_encode($vars);
-
-//---
-
-/**
- * TODO Return app status (tests, config, other?)
- *
- * @param string $app_root
- *
- * @return string
-*/
-function get_status($app_root)
-{
- return 'OK';
-}
-
-/**
- * Return basic Subversion status info. See $keys array.
- *
- * @param string $app_root
- *
- * @return array
-*/
-function get_git_info($app_root)
-{
- exec(escapeshellcmd(sprintf('LC_ALL=C %s show %s %s', exec('which git'), '-s --pretty="Revision: %H%nLast Author: %an%nDate Revision: %ar%nTitle: %s"', escapeshellarg($app_root))),
- $out, $ret);
-
-
- return $out;
-}