27 lines
627 B
PHP
27 lines
627 B
PHP
<?php
|
|
|
|
session_start();
|
|
|
|
if (defined('ONGITLAB') && ONGITLAB) {
|
|
if (!isset($_COOKIE['remember_user_token'])) {
|
|
header('Location: /');
|
|
exit;
|
|
}
|
|
}
|
|
|
|
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);
|
|
}
|