Version 1.12
|
|
@ -0,0 +1,7 @@
|
|||
Options -Indexes
|
||||
ErrorDocument 403 403.html
|
||||
ErrorDocument 404 404.html
|
||||
|
||||
<Files lectlog.php>
|
||||
|
||||
</Files>
|
||||
|
|
@ -1 +1 @@
|
|||
C:/Program Files/xampp/var/HB_new/onyx/
|
||||
/var/www/halo-battle/onyx2/load.php
|
||||
|
|
|
|||
184
htdocs/admin.php
|
|
@ -1,92 +1,108 @@
|
|||
<?php
|
||||
define("INDEX", 1);
|
||||
$chrono_start = microtime();
|
||||
$onyx = @file_get_contents('./.onyx') or die("Configuration introuvable.");
|
||||
define("_FCORE",trim($onyx));
|
||||
define("_PROFILE",'admin');
|
||||
require_once(_FCORE."common.php");
|
||||
define("DEBUG", false);
|
||||
|
||||
//Pistage Guillaume
|
||||
file_log(var_export($_REQUEST,TRUE));
|
||||
//Inclusion de l'API Onyx
|
||||
require_once(trim(file_get_contents('./.onyx')));
|
||||
require_once("common.php"); //Chargement de tout le nécessaire pour le jeu
|
||||
|
||||
//On vérifie si le client est connecté ou non sur le site
|
||||
if (isset($sess) && isset($sess->values['connected']) && $sess->values['connected'] && !empty($sess->values['id']) && !empty($sess->level) && $sess->level >= 3 && !empty($sess->values['idPlan']) && $sess->values['id'] != "172") {
|
||||
function infoPlan($galaxie, $ss, $pos, $info){
|
||||
$base = new bdd();
|
||||
$base->connexion();
|
||||
$resultat = $base->unique_query("SELECT * FROM planete WHERE galaxie = '$galaxie' AND ss = '$ss' AND position= '$pos';");
|
||||
$base->deconnexion();
|
||||
return $resultat[$info];
|
||||
}
|
||||
|
||||
//Connexion à la base de données
|
||||
$chapeau = new bdd();
|
||||
$chapeau->connexion();
|
||||
|
||||
//Passage des valeurs générales au template
|
||||
$titre = "Administration";
|
||||
$template->assign('page','admin');
|
||||
$template->assign('premiere_page', $config['first_page']);
|
||||
|
||||
$chapeau->unique_query("SELECT * FROM $table_user WHERE race = 'covenant'");
|
||||
$nbcovie = $chapeau->num_rows;
|
||||
$chapeau->unique_query("SELECT * FROM $table_user WHERE race = 'humain'");
|
||||
$nbhumain = $chapeau->num_rows;
|
||||
$template->assign('count',array('humains' => $nbhumain, 'covenants' => $nbcovie, 'serveurs' => 'cette'));
|
||||
|
||||
$id_user = $sess->values['id'];
|
||||
$queryUser = $chapeau->unique_query("SELECT * FROM $table_user WHERE id = '$id_user'");
|
||||
$chapeau->deconnexion();
|
||||
|
||||
$race = $queryUser['race'];
|
||||
$template->assign('race',$queryUser['race']);
|
||||
$template->assign('user',$queryUser);
|
||||
$tpsdejeu = time() - $queryUser['last_visite'];
|
||||
$heur = floor($tpsdejeu/3600);
|
||||
$min = floor(($tpsdejeu - $heur*3600)/60);
|
||||
if ($heur > 0) $min = $heur.' h '.$min;
|
||||
$template->assign('tpsdejeu',$min.' min');
|
||||
|
||||
if (!empty($sess->values['souscontrole'])) {
|
||||
$pagea = 'erreur';
|
||||
|
||||
$sess->values['id'] = $sess->values['souscontrole'][0];
|
||||
$sess->values['idPlan'] = $sess->values['souscontrole'][1];
|
||||
$sess->values['souscontrole'] = null;
|
||||
$sess->put();
|
||||
|
||||
$template->assign('message', 'Droits rétablis avec succès !<br />');
|
||||
}
|
||||
else {
|
||||
if (!isset($_GET['p'])) $_GET['p'] = '';
|
||||
if ($sess->level >= 5) {
|
||||
switch($_GET['p']){
|
||||
case 'djoueurs': include(_FCORE."../game/jeu/admin/supprimer_joueur.php"); break;
|
||||
case 'bandeau': include(_FCORE."../game/jeu/admin/bandeau.php"); break;
|
||||
case 'demarrage': include(_FCORE."../game/jeu/admin/demarrage.php"); break;
|
||||
case 'version': include(_FCORE."../game/jeu/admin/version.php"); break;
|
||||
case 'inscription': include(_FCORE."../game/jeu/admin/inscription.php"); break;
|
||||
if (isset($SESS) && isset($SESS->values['connected']) && $SESS->values['connected'] && !empty($SESS->values['id']) && !empty($SESS->level) && $SESS->level >= 3 && !empty($SESS->values['idPlan']))
|
||||
{
|
||||
function infoPlan($galaxie, $ss, $pos, $info)
|
||||
{
|
||||
$base = new BDD();
|
||||
$resultat = $base->unique_query("SELECT * FROM planete WHERE galaxie = '$galaxie' AND ss = '$ss' AND position= '$pos';");
|
||||
$base->deconnexion();
|
||||
return $resultat[$info];
|
||||
}
|
||||
}
|
||||
if (empty($pagea)) {
|
||||
switch($_GET['p']){
|
||||
case 'courrier': include(_FCORE."../game/jeu/admin/mail.php"); break;
|
||||
case 'vip': include(_FCORE."../game/jeu/admin/ip.php"); break;
|
||||
case 'vflotte': include(_FCORE."../game/jeu/admin/flottes.php"); break;
|
||||
case 'vplanetes': include(_FCORE."../game/jeu/admin/planete.php"); break;
|
||||
case 'vjoueurs': include(_FCORE."../game/jeu/admin/joueur.php"); break;
|
||||
case 'valliances': include(_FCORE."../game/jeu/admin/alliance.php"); break;
|
||||
case 'vrapports': include(_FCORE."../game/jeu/admin/rapport.php"); break;
|
||||
case 'sjoueurs': include(_FCORE."../game/jeu/admin/sanction_joueur.php"); break;
|
||||
case 'cjoueurs': include(_FCORE."../game/jeu/admin/prendre_controle.php"); break;
|
||||
default: include(_FCORE."../game/jeu/admin/accueil.php"); break;
|
||||
|
||||
//Passage des valeurs générales au template
|
||||
$titre = "Administration";
|
||||
$template->assign('page', 'admin');
|
||||
$template->assign('menu', $VAR['menu']);
|
||||
$template->assign('premiere_page', $VAR['first_page']);
|
||||
$template->assign('race', $SESS->values['race']);
|
||||
$template->assign("tpsdejeu", "un certain temps");
|
||||
|
||||
if (!empty($SESS->values['souscontrole']))
|
||||
{
|
||||
$pagea = 'erreur';
|
||||
|
||||
$SESS->values['id'] = $SESS->values['souscontrole'][0];
|
||||
$SESS->values['idPlan'] = $SESS->values['souscontrole'][1];
|
||||
$SESS->values['souscontrole'] = null;
|
||||
$SESS->put();
|
||||
|
||||
$template->assign('message', 'Droits rétablis avec succès !<br />');
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
if (!isset($_GET['p']))
|
||||
$_GET['p'] = '';
|
||||
if ($SESS->level >= 5)
|
||||
{
|
||||
switch($_GET['p'])
|
||||
{
|
||||
case 'djoueurs':
|
||||
include("admin/supprimer_joueur.php");
|
||||
break;
|
||||
case 'bandeau':
|
||||
include("admin/bandeau.php");
|
||||
break;
|
||||
case 'demarrage':
|
||||
include("admin/demarrage.php");
|
||||
break;
|
||||
case 'version':
|
||||
include("admin/version.php");
|
||||
break;
|
||||
case 'inscription':
|
||||
include("admin/inscription.php");
|
||||
break;
|
||||
}
|
||||
}
|
||||
if (empty($pagea))
|
||||
{
|
||||
switch($_GET['p'])
|
||||
{
|
||||
case 'courrier':
|
||||
include("admin/mail.php");
|
||||
break;
|
||||
case 'vip':
|
||||
include("admin/ip.php");
|
||||
break;
|
||||
case 'vflottes':
|
||||
include("admin/flottes.php");
|
||||
break;
|
||||
case 'vplanetes':
|
||||
include("admin/planete.php");
|
||||
break;
|
||||
case 'vjoueurs':
|
||||
include("admin/joueur.php");
|
||||
break;
|
||||
case 'valliances':
|
||||
include("admin/alliance.php");
|
||||
break;
|
||||
case 'vrapports':
|
||||
include("admin/rapport.php");
|
||||
break;
|
||||
case 'sjoueurs':
|
||||
include("admin/sanction_joueur.php");
|
||||
break;
|
||||
case 'cjoueurs':
|
||||
include("admin/prendre_controle.php");
|
||||
break;
|
||||
default:
|
||||
include("admin/accueil.php");
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
$template->assign('titre', $titre);
|
||||
$template->assign('pagea', $pagea);
|
||||
$template->display('admin/'.$pagea.'.tpl');
|
||||
}
|
||||
|
||||
$template->assign('titre',$titre);
|
||||
$template->assign('pagea',$pagea);
|
||||
$template->display('admin/'.$pagea.'.tpl');
|
||||
}
|
||||
else header('Location: index.php');
|
||||
?>
|
||||
else
|
||||
header('Location: '.$VAR['first_page']);
|
||||
?>
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@ define("INDEX", 1);
|
|||
$chrono_start = microtime();
|
||||
$onyx = @file_get_contents('./.onyx') or die("Configuration introuvable.");
|
||||
define("_FCORE",trim($onyx));
|
||||
require(_FCORE."hb_game/Class/JSON.php");
|
||||
require(_FCORE."../game/Class/JSON.php");
|
||||
require_once(_FCORE."common.php");
|
||||
|
||||
if (isset($sess) && isset($sess->values['connected']) && $sess->values['connected'] && !empty($sess->values['id']) && !empty($sess->level) && !empty($sess->values['idPlan'])) {
|
||||
|
|
@ -47,6 +47,8 @@ if (isset($sess) && isset($sess->values['connected']) && $sess->values['connecte
|
|||
if (!empty($sess->values['flcontenu']) && $met+$cri+$hyd >= 0 && $met >= 0 && $cri >= 0 && $hyd >= 0) $places = $sess->values['flcontenu'] - ($met+$cri+$hyd);
|
||||
else $places = 'inconnu';
|
||||
|
||||
|
||||
|
||||
if (empty($sess->values['fltime']) || $sess->values['fltime'] + 600 < time() || empty($sess->values['flnbvais']) || empty($sess->values['flvitesse']) && isset($sess->values['auth_level']))
|
||||
$datas = array(
|
||||
'root' => array(
|
||||
|
|
|
|||
41
htdocs/arbre.php
Normal file
|
|
@ -0,0 +1,41 @@
|
|||
<?php
|
||||
define("INDEX", 1); //Définition de la constante anti-hacking
|
||||
//Lancement du chronomètre de temps de la page
|
||||
$chrono_start = microtime();
|
||||
//Inclusion de l'API Onyx
|
||||
$onyx = @file_get_contents('./.onyx') or die("Configuration introuvable.");
|
||||
define("_FCORE",str_replace('/onyx2/load.php', '/onyx/', trim($onyx)));
|
||||
require_once(_FCORE."common.php");
|
||||
$race = 'humain';
|
||||
require_once(_FCORE."../game/noms.php");
|
||||
require_once(_FCORE."../game/vars.php");
|
||||
|
||||
$tree = array();
|
||||
|
||||
foreach($technologiesCALC as $keyB => $branche)
|
||||
{
|
||||
print "<h3><ins>Branche :</ins> ".$technologiesVAR[$keyB]."</h3>";
|
||||
foreach($branche as $keyT => $tech)
|
||||
{
|
||||
print $tech[0].' : '.$technolo[$keyB][$keyT]."<br />";
|
||||
if ($tech[1] > 0)
|
||||
{
|
||||
print '<em><ins>Requiert :</ins>';
|
||||
foreach($branche as $keyR => $req)
|
||||
{
|
||||
if ($req[0]&$tech[1])
|
||||
print ' '.$technolo[$keyB][$keyR].',';
|
||||
}
|
||||
print '</em><br />';
|
||||
}
|
||||
else
|
||||
{
|
||||
print '<em>Ne requiert aucune technologie</em><br />';
|
||||
$tree[] = array($tech);
|
||||
}
|
||||
print "<br />";
|
||||
}
|
||||
}
|
||||
|
||||
echo("\n<!--Page générée en : ".round((array_sum(explode(' ', microtime()))) - (array_sum(explode(' ', $chrono_start))), 4)." secondes.-->");
|
||||
?>
|
||||
100
htdocs/bourser.php
Normal file
|
|
@ -0,0 +1,100 @@
|
|||
<?php
|
||||
//Définition de la constante anti-hacking
|
||||
define("INDEX", 1);
|
||||
|
||||
//Inclusion de l'API Onyx
|
||||
require_once(trim(file_get_contents('./.onyx')));
|
||||
require_once("common.php"); //Chargement de tout le nécessaire pour le jeu
|
||||
|
||||
require_once("function.php"); //Inclusion des fonctions principales
|
||||
require_once("tables.php"); //Inclusion des noms des tables de base de données correspondant à l'architecture du serveur
|
||||
|
||||
function nomR($string, $race){
|
||||
if ($race == "covenant") {
|
||||
if ($string == 1) return "Cristal";
|
||||
elseif ($string == 2) return "Ions";
|
||||
else return "Metal";
|
||||
}
|
||||
else {
|
||||
if ($string == 1) return "Cristal";
|
||||
elseif ($string == 2) return "Hydrogene";
|
||||
else return "Metal";
|
||||
}
|
||||
}
|
||||
|
||||
$action = intval(gpc('a'));
|
||||
if (isset($sess->values['race'])) $race = $sess->values['race'];
|
||||
else $race = gpc('r');
|
||||
|
||||
$bdd = new BDD();
|
||||
$act = $bdd->unique_query("SELECT id, graph, dispo FROM $table_bourse_ressources WHERE id = $action;");
|
||||
$bdd->deconnexion();
|
||||
if (empty($act)) exit;
|
||||
|
||||
$values = array();
|
||||
$values_label = array();
|
||||
$values_abscisse = array();
|
||||
|
||||
$act['graph'] = unserialize($act['graph']);
|
||||
|
||||
for($i = 1; $i < 8; $i++){
|
||||
if (!isset($act['graph'][(date('w')+$i)%7])) $values[] = 0;
|
||||
else $values[] = ceil(pow($act['graph'][(date('w')+$i)%7], -0.1) * 2000)/10;
|
||||
}
|
||||
|
||||
for($i = 6; $i >= 0; $i--){
|
||||
$values_label[] = $values[$i];
|
||||
$values_abscisse[] = ucfirst(strftime('%a', time() - 86400 * $i));
|
||||
}
|
||||
|
||||
//*
|
||||
require_once ("jpgraph/jpgraph.php");
|
||||
require_once ("jpgraph/jpgraph_line.php");
|
||||
|
||||
if ($race != "humain" && $race != "covenant") $race = "humain";
|
||||
|
||||
$graph = new Graph(282, 200);
|
||||
$graph->SetScale("textlin");
|
||||
$graph->img->SetMargin(40,20,20,40);
|
||||
|
||||
$lineplot=new LinePlot($values);
|
||||
$lineplot->mark->SetType(MARK_UTRIANGLE);
|
||||
$lineplot->value->show();
|
||||
$lineplot->value->SetFont(FF_FONT1,FS_BOLD);
|
||||
//$lineplot->value->SetFormat('%0f');
|
||||
|
||||
//Définition des couleurs
|
||||
$graph->SetBackgroundImage(ONYX."include/content/bourse/".$race.".png", BGIMG_COPY);
|
||||
if ($race == "covenant") {
|
||||
$graph->yaxis->SetColor("#FFFFFF");
|
||||
$graph->xaxis->SetColor("white");
|
||||
$lineplot->SetFillColor("pink@0.8");
|
||||
$lineplot->value->SetColor('#FF0000');
|
||||
$graph->yaxis->title->SetColor("white");
|
||||
$graph->title->SetColor("white");
|
||||
$lineplot->SetColor("#c00000");
|
||||
}
|
||||
else {
|
||||
$graph->yaxis->SetColor("#00DD00");
|
||||
$lineplot->SetFillColor("cyan@0.8");
|
||||
$lineplot->value->SetColor('#FF0000');
|
||||
$graph->yaxis->title->SetColor("white");
|
||||
$graph->title->SetColor("white");
|
||||
$lineplot->SetColor("#3bb3ff");
|
||||
}
|
||||
|
||||
$act['nom'] = nomR($act['id'], $race);
|
||||
|
||||
$graph->Add($lineplot);
|
||||
$graph->title->Set($act['nom']);
|
||||
$graph->yaxis->title->Set("Evolution (%)");
|
||||
$graph->xaxis->SetTickLabels($values_abscisse);
|
||||
|
||||
$graph->title->SetFont(FF_FONT1,FS_BOLD);
|
||||
$graph->yaxis->title->SetFont(FF_FONT1,FS_BOLD);
|
||||
$graph->xaxis->title->SetFont(FF_FONT1,FS_BOLD);
|
||||
|
||||
$lineplot->SetWeight(2);
|
||||
|
||||
$graph->Stroke();
|
||||
?>
|
||||
1
htdocs/checkSum.php
Normal file
|
|
@ -0,0 +1 @@
|
|||
daecac3a14e7dc10e2bdd6f2d1eb82476e94cc12
|
||||
30
htdocs/export.php
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
<?php
|
||||
//Définition de la constante anti-hacking
|
||||
define("INDEX", 1);
|
||||
|
||||
//Inclusion de l'API Onyx
|
||||
require_once(trim(file_get_contents('./.onyx')));
|
||||
$race = "covenant";
|
||||
require_once("common.php"); //Chargement de tout le nécessaire pour le jeu
|
||||
include_once("game/vars.php");
|
||||
/*
|
||||
print '<var name="descriptions">'."\n";
|
||||
foreach($nomterde as $key => $lign)
|
||||
{
|
||||
print "\t".'<var name="'.$key.'">'.utf8_encode(html_entity_decode($lign)).'</var>'."\n";
|
||||
}
|
||||
print '</var>';
|
||||
*/
|
||||
|
||||
print '<var name="noms_sing">'."\n";
|
||||
foreach ($technolo as $i => $var)
|
||||
{
|
||||
/*print "\t".'<var name="'.$i.'">'."\n";
|
||||
foreach ($var as $k => $key)
|
||||
{*/
|
||||
print "\t\t".'<var name="'.$i.'">'.utf8_encode(html_entity_decode($var)).'</var>'."\n";
|
||||
/*}
|
||||
print "\t</var>\n";*/
|
||||
}
|
||||
print '</var>';
|
||||
?>
|
||||
31
htdocs/genereXML.php
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
<?php
|
||||
if (!defined("__DIR__"))
|
||||
define("__DIR__", dirname(__FILE__));
|
||||
|
||||
$xml = new DOMDocument('1.0', 'UTF-8');
|
||||
|
||||
$xml->load("/var/www/halo-battle/onyx2/config/root.xml");
|
||||
|
||||
$xml->formatOutput = true;
|
||||
|
||||
$xml_configs = $xml->createElement("configs");
|
||||
$xml_configs->setAttribute("active", true);
|
||||
$xml_configs->setAttribute("root", __DIR__.'/');
|
||||
$xml_configs->setAttribute("cache", true);
|
||||
|
||||
$xml_config = $xml->createElement("config");
|
||||
$xml_config->setAttribute("match", '*');
|
||||
|
||||
$xml_var = $xml->createElement("var", "Béta #1");
|
||||
$xml_var->setAttribute("name", 'serveur_name');
|
||||
$xml_config->appendChild($xml_var);
|
||||
|
||||
$xml_var = $xml->createElement("var", "Béta #1");
|
||||
$xml_var->setAttribute("name", 'serveur_name');
|
||||
$xml_config->appendChild($xml_var);
|
||||
|
||||
$xml_configs->appendChild($xml_config);
|
||||
$xml->appendChild($xml_configs);
|
||||
|
||||
print $xml->saveXML();
|
||||
?>
|
||||
BIN
htdocs/images/Thumbs.db
Normal file
1150
htdocs/images/planetes/.svn/entries
Normal file
1
htdocs/images/planetes/.svn/format
Normal file
|
|
@ -0,0 +1 @@
|
|||
9
|
||||
5
htdocs/images/planetes/.svn/prop-base/1.jpg.svn-base
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
K 13
|
||||
svn:mime-type
|
||||
V 24
|
||||
application/octet-stream
|
||||
END
|
||||
5
htdocs/images/planetes/.svn/prop-base/10.jpg.svn-base
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
K 13
|
||||
svn:mime-type
|
||||
V 24
|
||||
application/octet-stream
|
||||
END
|
||||
5
htdocs/images/planetes/.svn/prop-base/11.jpg.svn-base
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
K 13
|
||||
svn:mime-type
|
||||
V 24
|
||||
application/octet-stream
|
||||
END
|
||||
5
htdocs/images/planetes/.svn/prop-base/12.jpg.svn-base
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
K 13
|
||||
svn:mime-type
|
||||
V 24
|
||||
application/octet-stream
|
||||
END
|
||||
5
htdocs/images/planetes/.svn/prop-base/13.jpg.svn-base
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
K 13
|
||||
svn:mime-type
|
||||
V 24
|
||||
application/octet-stream
|
||||
END
|
||||
5
htdocs/images/planetes/.svn/prop-base/14.jpg.svn-base
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
K 13
|
||||
svn:mime-type
|
||||
V 24
|
||||
application/octet-stream
|
||||
END
|
||||
5
htdocs/images/planetes/.svn/prop-base/15.jpg.svn-base
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
K 13
|
||||
svn:mime-type
|
||||
V 24
|
||||
application/octet-stream
|
||||
END
|
||||
5
htdocs/images/planetes/.svn/prop-base/16.jpg.svn-base
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
K 13
|
||||
svn:mime-type
|
||||
V 24
|
||||
application/octet-stream
|
||||
END
|
||||
5
htdocs/images/planetes/.svn/prop-base/17.jpg.svn-base
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
K 13
|
||||
svn:mime-type
|
||||
V 24
|
||||
application/octet-stream
|
||||
END
|
||||
5
htdocs/images/planetes/.svn/prop-base/18.jpg.svn-base
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
K 13
|
||||
svn:mime-type
|
||||
V 24
|
||||
application/octet-stream
|
||||
END
|
||||
5
htdocs/images/planetes/.svn/prop-base/19.jpg.svn-base
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
K 13
|
||||
svn:mime-type
|
||||
V 24
|
||||
application/octet-stream
|
||||
END
|
||||
5
htdocs/images/planetes/.svn/prop-base/2.jpg.svn-base
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
K 13
|
||||
svn:mime-type
|
||||
V 24
|
||||
application/octet-stream
|
||||
END
|
||||
5
htdocs/images/planetes/.svn/prop-base/20.jpg.svn-base
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
K 13
|
||||
svn:mime-type
|
||||
V 24
|
||||
application/octet-stream
|
||||
END
|
||||
5
htdocs/images/planetes/.svn/prop-base/21.jpg.svn-base
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
K 13
|
||||
svn:mime-type
|
||||
V 24
|
||||
application/octet-stream
|
||||
END
|
||||
5
htdocs/images/planetes/.svn/prop-base/22.jpg.svn-base
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
K 13
|
||||
svn:mime-type
|
||||
V 24
|
||||
application/octet-stream
|
||||
END
|
||||
5
htdocs/images/planetes/.svn/prop-base/23.jpg.svn-base
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
K 13
|
||||
svn:mime-type
|
||||
V 24
|
||||
application/octet-stream
|
||||
END
|
||||
5
htdocs/images/planetes/.svn/prop-base/24.jpg.svn-base
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
K 13
|
||||
svn:mime-type
|
||||
V 24
|
||||
application/octet-stream
|
||||
END
|
||||
5
htdocs/images/planetes/.svn/prop-base/25.jpg.svn-base
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
K 13
|
||||
svn:mime-type
|
||||
V 24
|
||||
application/octet-stream
|
||||
END
|
||||
5
htdocs/images/planetes/.svn/prop-base/26.jpg.svn-base
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
K 13
|
||||
svn:mime-type
|
||||
V 24
|
||||
application/octet-stream
|
||||
END
|
||||
5
htdocs/images/planetes/.svn/prop-base/27.jpg.svn-base
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
K 13
|
||||
svn:mime-type
|
||||
V 24
|
||||
application/octet-stream
|
||||
END
|
||||
5
htdocs/images/planetes/.svn/prop-base/28.jpg.svn-base
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
K 13
|
||||
svn:mime-type
|
||||
V 24
|
||||
application/octet-stream
|
||||
END
|
||||
5
htdocs/images/planetes/.svn/prop-base/29.jpg.svn-base
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
K 13
|
||||
svn:mime-type
|
||||
V 24
|
||||
application/octet-stream
|
||||
END
|
||||
5
htdocs/images/planetes/.svn/prop-base/3.jpg.svn-base
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
K 13
|
||||
svn:mime-type
|
||||
V 24
|
||||
application/octet-stream
|
||||
END
|
||||
5
htdocs/images/planetes/.svn/prop-base/30.jpg.svn-base
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
K 13
|
||||
svn:mime-type
|
||||
V 24
|
||||
application/octet-stream
|
||||
END
|
||||
5
htdocs/images/planetes/.svn/prop-base/31.jpg.svn-base
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
K 13
|
||||
svn:mime-type
|
||||
V 24
|
||||
application/octet-stream
|
||||
END
|
||||
5
htdocs/images/planetes/.svn/prop-base/32.jpg.svn-base
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
K 13
|
||||
svn:mime-type
|
||||
V 24
|
||||
application/octet-stream
|
||||
END
|
||||
5
htdocs/images/planetes/.svn/prop-base/4.jpg.svn-base
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
K 13
|
||||
svn:mime-type
|
||||
V 24
|
||||
application/octet-stream
|
||||
END
|
||||
5
htdocs/images/planetes/.svn/prop-base/5.jpg.svn-base
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
K 13
|
||||
svn:mime-type
|
||||
V 24
|
||||
application/octet-stream
|
||||
END
|
||||
5
htdocs/images/planetes/.svn/prop-base/6.jpg.svn-base
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
K 13
|
||||
svn:mime-type
|
||||
V 24
|
||||
application/octet-stream
|
||||
END
|
||||
5
htdocs/images/planetes/.svn/prop-base/7.jpg.svn-base
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
K 13
|
||||
svn:mime-type
|
||||
V 24
|
||||
application/octet-stream
|
||||
END
|
||||
5
htdocs/images/planetes/.svn/prop-base/8.jpg.svn-base
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
K 13
|
||||
svn:mime-type
|
||||
V 24
|
||||
application/octet-stream
|
||||
END
|
||||
5
htdocs/images/planetes/.svn/prop-base/9.jpg.svn-base
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
K 13
|
||||
svn:mime-type
|
||||
V 24
|
||||
application/octet-stream
|
||||
END
|
||||
BIN
htdocs/images/planetes/.svn/text-base/1.jpg.svn-base
Normal file
|
After Width: | Height: | Size: 72 KiB |
BIN
htdocs/images/planetes/.svn/text-base/10.jpg.svn-base
Normal file
|
After Width: | Height: | Size: 72 KiB |
|
Before Width: | Height: | Size: 62 KiB After Width: | Height: | Size: 62 KiB |
BIN
htdocs/images/planetes/.svn/text-base/12.jpg.svn-base
Normal file
|
After Width: | Height: | Size: 70 KiB |
|
Before Width: | Height: | Size: 78 KiB After Width: | Height: | Size: 78 KiB |
BIN
htdocs/images/planetes/.svn/text-base/14.jpg.svn-base
Normal file
|
After Width: | Height: | Size: 63 KiB |
BIN
htdocs/images/planetes/.svn/text-base/15.jpg.svn-base
Normal file
|
After Width: | Height: | Size: 70 KiB |
BIN
htdocs/images/planetes/.svn/text-base/16.jpg.svn-base
Normal file
|
After Width: | Height: | Size: 70 KiB |
BIN
htdocs/images/planetes/.svn/text-base/17.jpg.svn-base
Normal file
|
After Width: | Height: | Size: 83 KiB |
|
Before Width: | Height: | Size: 82 KiB After Width: | Height: | Size: 82 KiB |
BIN
htdocs/images/planetes/.svn/text-base/19.jpg.svn-base
Normal file
|
After Width: | Height: | Size: 69 KiB |
|
Before Width: | Height: | Size: 95 KiB After Width: | Height: | Size: 95 KiB |
BIN
htdocs/images/planetes/.svn/text-base/20.jpg.svn-base
Normal file
|
After Width: | Height: | Size: 79 KiB |
BIN
htdocs/images/planetes/.svn/text-base/21.jpg.svn-base
Normal file
|
After Width: | Height: | Size: 68 KiB |
BIN
htdocs/images/planetes/.svn/text-base/22.jpg.svn-base
Normal file
|
After Width: | Height: | Size: 82 KiB |
BIN
htdocs/images/planetes/.svn/text-base/23.jpg.svn-base
Normal file
|
After Width: | Height: | Size: 87 KiB |
BIN
htdocs/images/planetes/.svn/text-base/24.jpg.svn-base
Normal file
|
After Width: | Height: | Size: 82 KiB |
BIN
htdocs/images/planetes/.svn/text-base/25.jpg.svn-base
Normal file
|
After Width: | Height: | Size: 68 KiB |
BIN
htdocs/images/planetes/.svn/text-base/26.jpg.svn-base
Normal file
|
After Width: | Height: | Size: 84 KiB |
BIN
htdocs/images/planetes/.svn/text-base/27.jpg.svn-base
Normal file
|
After Width: | Height: | Size: 78 KiB |
BIN
htdocs/images/planetes/.svn/text-base/28.jpg.svn-base
Normal file
|
After Width: | Height: | Size: 71 KiB |
BIN
htdocs/images/planetes/.svn/text-base/29.jpg.svn-base
Normal file
|
After Width: | Height: | Size: 72 KiB |
BIN
htdocs/images/planetes/.svn/text-base/3.jpg.svn-base
Normal file
|
After Width: | Height: | Size: 66 KiB |
BIN
htdocs/images/planetes/.svn/text-base/30.jpg.svn-base
Normal file
|
After Width: | Height: | Size: 78 KiB |
BIN
htdocs/images/planetes/.svn/text-base/31.jpg.svn-base
Normal file
|
After Width: | Height: | Size: 77 KiB |
BIN
htdocs/images/planetes/.svn/text-base/32.jpg.svn-base
Normal file
|
After Width: | Height: | Size: 87 KiB |
BIN
htdocs/images/planetes/.svn/text-base/4.jpg.svn-base
Normal file
|
After Width: | Height: | Size: 55 KiB |
|
Before Width: | Height: | Size: 78 KiB After Width: | Height: | Size: 78 KiB |
BIN
htdocs/images/planetes/.svn/text-base/6.jpg.svn-base
Normal file
|
After Width: | Height: | Size: 61 KiB |
BIN
htdocs/images/planetes/.svn/text-base/7.jpg.svn-base
Normal file
|
After Width: | Height: | Size: 65 KiB |
BIN
htdocs/images/planetes/.svn/text-base/8.jpg.svn-base
Normal file
|
After Width: | Height: | Size: 75 KiB |
|
Before Width: | Height: | Size: 74 KiB After Width: | Height: | Size: 74 KiB |
77
htdocs/images/planetes/.svn/text-base/index.html.svn-base
Normal file
|
|
@ -0,0 +1,77 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
||||
<meta http-equiv="Content-Language" content="fr" />
|
||||
<title> ::Halo-Battle:: - Erreur</title>
|
||||
<style type="text/css">
|
||||
|
||||
html
|
||||
{
|
||||
font-size: 100%;
|
||||
}
|
||||
|
||||
body
|
||||
{
|
||||
background-color: #000000;
|
||||
}
|
||||
|
||||
div
|
||||
{
|
||||
background-color: #080819;
|
||||
text-align: center;
|
||||
margin: 10% auto 0 auto;
|
||||
padding: 25px 0;
|
||||
width: 80%;
|
||||
border-top: #FFFFFF dotted 1px;
|
||||
border-left: #FFFFFF dotted 1px;
|
||||
border-right: #FFFFFF solid 3px;
|
||||
border-bottom: #FFFFFF solid 3px;
|
||||
}
|
||||
|
||||
h1
|
||||
{
|
||||
font-size: 3em;
|
||||
color: #FFFFFF;
|
||||
}
|
||||
|
||||
h2
|
||||
{
|
||||
font-size: 2em;
|
||||
color: #FFFFFF;
|
||||
}
|
||||
|
||||
h3
|
||||
{
|
||||
font-size: 1.5em;
|
||||
color: #FFFFFF;
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
a
|
||||
{
|
||||
position: absolute;
|
||||
bottom: 20px;
|
||||
right: 30px;
|
||||
font-size: 0.8em;
|
||||
display: block;
|
||||
padding: 5px 10px;
|
||||
background-color: #FFFFFF;
|
||||
color: #000000;
|
||||
text-decoration: underline;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div>
|
||||
<h2>Erreur</h2>
|
||||
<h1>403</h1>
|
||||
<h3>Refus de traitement de la requête.<br /><em>Forbidden.</em></h3>
|
||||
</div>
|
||||
<a href="/">HALO-BATTLE</a>
|
||||
<!-- \\******* By Phantom *******// Halo-Battle, Tous droits réservés -->
|
||||
</body>
|
||||
</html>
|
||||
BIN
htdocs/images/planetes/11.jpg
Normal file
|
After Width: | Height: | Size: 62 KiB |
BIN
htdocs/images/planetes/13.jpg
Normal file
|
After Width: | Height: | Size: 78 KiB |
BIN
htdocs/images/planetes/18.jpg
Normal file
|
After Width: | Height: | Size: 82 KiB |
BIN
htdocs/images/planetes/2.jpg
Normal file
|
After Width: | Height: | Size: 95 KiB |
BIN
htdocs/images/planetes/20.jpg
Normal file
|
After Width: | Height: | Size: 79 KiB |
BIN
htdocs/images/planetes/21.jpg
Normal file
|
After Width: | Height: | Size: 68 KiB |
BIN
htdocs/images/planetes/22.jpg
Normal file
|
After Width: | Height: | Size: 82 KiB |
BIN
htdocs/images/planetes/23.jpg
Normal file
|
After Width: | Height: | Size: 87 KiB |
BIN
htdocs/images/planetes/24.jpg
Normal file
|
After Width: | Height: | Size: 82 KiB |
BIN
htdocs/images/planetes/25.jpg
Normal file
|
After Width: | Height: | Size: 68 KiB |
BIN
htdocs/images/planetes/26.jpg
Normal file
|
After Width: | Height: | Size: 84 KiB |
BIN
htdocs/images/planetes/27.jpg
Normal file
|
After Width: | Height: | Size: 78 KiB |
BIN
htdocs/images/planetes/28.jpg
Normal file
|
After Width: | Height: | Size: 71 KiB |
BIN
htdocs/images/planetes/29.jpg
Normal file
|
After Width: | Height: | Size: 72 KiB |
BIN
htdocs/images/planetes/30.jpg
Normal file
|
After Width: | Height: | Size: 78 KiB |
BIN
htdocs/images/planetes/31.jpg
Normal file
|
After Width: | Height: | Size: 77 KiB |
BIN
htdocs/images/planetes/32.jpg
Normal file
|
After Width: | Height: | Size: 87 KiB |
BIN
htdocs/images/planetes/5.jpg
Normal file
|
After Width: | Height: | Size: 78 KiB |
BIN
htdocs/images/planetes/9.jpg
Normal file
|
After Width: | Height: | Size: 74 KiB |
77
htdocs/images/planetes/index.html
Normal file
|
|
@ -0,0 +1,77 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
||||
<meta http-equiv="Content-Language" content="fr" />
|
||||
<title> ::Halo-Battle:: - Erreur</title>
|
||||
<style type="text/css">
|
||||
|
||||
html
|
||||
{
|
||||
font-size: 100%;
|
||||
}
|
||||
|
||||
body
|
||||
{
|
||||
background-color: #000000;
|
||||
}
|
||||
|
||||
div
|
||||
{
|
||||
background-color: #080819;
|
||||
text-align: center;
|
||||
margin: 10% auto 0 auto;
|
||||
padding: 25px 0;
|
||||
width: 80%;
|
||||
border-top: #FFFFFF dotted 1px;
|
||||
border-left: #FFFFFF dotted 1px;
|
||||
border-right: #FFFFFF solid 3px;
|
||||
border-bottom: #FFFFFF solid 3px;
|
||||
}
|
||||
|
||||
h1
|
||||
{
|
||||
font-size: 3em;
|
||||
color: #FFFFFF;
|
||||
}
|
||||
|
||||
h2
|
||||
{
|
||||
font-size: 2em;
|
||||
color: #FFFFFF;
|
||||
}
|
||||
|
||||
h3
|
||||
{
|
||||
font-size: 1.5em;
|
||||
color: #FFFFFF;
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
a
|
||||
{
|
||||
position: absolute;
|
||||
bottom: 20px;
|
||||
right: 30px;
|
||||
font-size: 0.8em;
|
||||
display: block;
|
||||
padding: 5px 10px;
|
||||
background-color: #FFFFFF;
|
||||
color: #000000;
|
||||
text-decoration: underline;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div>
|
||||
<h2>Erreur</h2>
|
||||
<h1>403</h1>
|
||||
<h3>Refus de traitement de la requête.<br /><em>Forbidden.</em></h3>
|
||||
</div>
|
||||
<a href="/">HALO-BATTLE</a>
|
||||
<!-- \\******* By Phantom *******// Halo-Battle, Tous droits réservés -->
|
||||
</body>
|
||||
</html>
|
||||
1184
htdocs/images/planetesANC/.svn/entries
Normal file
1
htdocs/images/planetesANC/.svn/format
Normal file
|
|
@ -0,0 +1 @@
|
|||
9
|
||||