Git-Center/utils.php

27 lines
627 B
PHP
Raw Normal View History

2013-10-02 13:22:31 +00:00
<?php
2013-10-16 19:16:17 +00:00
session_start();
if (defined('ONGITLAB') && ONGITLAB) {
2013-10-16 21:10:51 +00:00
if (!isset($_COOKIE['remember_user_token'])) {
header('Location: /');
2013-10-16 19:16:17 +00:00
exit;
}
}
2013-10-02 13:22:31 +00:00
function ansi2html($string) {
$dictionary = array(
'[30m' => '<span style="color:blue">',
'[31m' => '<span style="color:blue">',
'[32m' => '<span style="color:blue">',
'[33m' => '<span style="color:blue">',
'[34m' => '<span style="color:blue">',
'[35m' => '<span style="color:blue">',
'[36m' => '<span style="color:blue">',
'[37m' => '<span style="color:blue">',
'[m' => '</span>',
);
return str_replace(array_keys($dictionary), $dictionary, $string);
}