Project: * Clean-up (Eclipse cruft, unused files, etc...) * Git-specific changes * Maven POMs clean-up and changes for the build system * Version set to 1.0.0-0 in the development branches * Maven plug-ins updated to latest versions * Very partial dev. documentation added

This commit is contained in:
Emmanuel BENOîT 2011-12-09 08:07:33 +01:00
parent c74e30d5ba
commit 0665a760de
1439 changed files with 1020 additions and 1649 deletions
legacyworlds-web-main/Content/Raw/WEB-INF/fm/fr/containers

View file

@ -0,0 +1,28 @@
<#include "../game.ftl">
<#macro page title hidePlanets=false>
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<title>Legacy Worlds Beta 6 <@version/> - ${title?xhtml}</title>
<link rel="stylesheet" type="text/css" href="css/main.css" />
<script type="text/javascript" charset="utf-8" src="js/jquery-1.4.2.min.js"></script>
<script type="text/javascript" charset="utf-8" src="js/main.js"></script>
</head>
<body>
<div id="extframe">
<div class="internal" id="intframe">
<!-- Title and planet list -->
<div class="top-centered">
<p style="padding: 22px 0px 0px 0px" id="tc-title">${title?xhtml}</p>
</div>
<div class="cframe full-width"><#nested></div>
</div>
<div class="internal" id="footer">
Copyright (C) 2004-2010, <a title="DeepClone Development" href="http://www.deepclone.com">DeepClone Development</a>
</div>
</div>
</body>
</html>
</#macro>

View file

@ -0,0 +1,44 @@
<#macro page title>
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<title>Legacy Worlds Beta 6 <@version/> - ${title?xhtml}</title>
<link rel="stylesheet" type="text/css" href="css/main.css" />
<script type="text/javascript" charset="utf-8" src="js/jquery-1.4.2.min.js"></script>
<script type="text/javascript" charset="utf-8" src="js/main.js"></script>
</head>
<body>
<div id="extframe">
<div class="internal" id="intframe">
<!-- Header -->
<a id="hbutton" href="home" title="Page d'accueil de Legacy Worlds"><span>Legacy Worlds Beta 6 <@version/></span></a>
<div id="version">version courante : <@full_version/></div>
<div class="top-centered" id="tc-title">${title?xhtml}</div>
<!-- Log-in box -->
<div id="lbox">
<form method="post" action="login.action">
<div>
Adresse e-mail : <input type="text" name="mail" value="" size="15" maxlength="128" class='input' /><br/>
Mot de passe : <input type="password" name="password" value='' size="15" maxlength="128" class='input' /><br/>
<a title="Récupération de mot de passe" href="password-recovery">Mot de passe oublié ?</a>
<input type="submit" value='Connexion' class='input' />
</div>
</form>
</div>
<!-- Menu -->
<a class="mbutton" id="b0" href="scope" title="Portée de ce jalon">Portée</a>
<a class="mbutton" id="b1" href="rules" title="Règles du jeu">Règles</a>
<a class="mbutton" id="b2" href="register" title="Inscription">Inscription</a>
<div class="cframe"><#nested></div>
</div>
<div class="internal" id="footer">
Copyright (C) 2004-2010, <a title="DeepClone Development" href="http://www.deepclone.com">DeepClone Development</a>
</div>
</div>
</body>
</html>
</#macro>

View file

@ -0,0 +1,70 @@
<#include "../game.ftl">
<#macro page title hidePlanets=false>
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<title>Legacy Worlds Beta 6 <@version/> - ${title?xhtml}</title>
<link rel="stylesheet" type="text/css" href="css/main.css" />
<script type="text/javascript" charset="utf-8" src="js/jquery-1.4.2.min.js"></script>
<script type="text/javascript" charset="utf-8" src="js/main.js"></script>
</head>
<body>
<div id="extframe">
<div class="internal" id="intframe">
<a id="hbutton" href="overview" title="Page Empire"><span>Legacy Worlds Beta 6 <@version/></span></a>
<div id="version"><@abbr_gt/>: <@game_time record=data.page.gameTime /> / <@abbr_st/>: ${data.page.serverTime?string("yyyy-MM-dd HH:mm:ss ZZZZZ")}</div>
<!-- Title and planet list -->
<div class="top-centered">
<p id="tc-title">${title?xhtml}</p>
<#if !hidePlanets>
<p>&nbsp;</p>
<#if data.page.planets?size == 0>
<p id="get-new-planet"><a href="get-planet">Obtenir une nouvelle planète</a></p>
<#else>
<p id="jump-to-planet"><span class="jtp-text">Aller à la planète</span>: <span>
<#list data.page.planets as planet>
<a href="planet-${planet.id}">${planet.name?xhtml}</a>
</#list>
</span></p>
</#if>
</#if>
</div>
<div id="lbox" class="game-info">
<strong>${data.page.empire}</strong>
<#if data.page.alliance?has_content>
[<strong>${data.page.alliance}</strong>]
</#if><br/>
<span id="gi-cash">${data.page.cash?string(",##0")}</span> <@abbr_bgc/><br/>
<#if data.page.special?has_content>
<span class="special-info">
<#switch data.page.special>
<#case 'v'>EN VACANCES<#break>
<#case 's'>PRELIMINAIRES AUX VACANCES<#break>
<#case 'q'>EN TRAIN D'ABANDONNER<#break>
</#switch>
</span>
</#if>
<br/>
<a href="account">Compte</a> - <a href="logout.action">Déconnexion</a>
</div>
<a class="mbutton" id="b0" href="planets" title="Planètes">Planètes</a>
<a class="mbutton" id="b1" href="fleets" title="Flottes">Flottes</a>
<a class="mbutton" id="b2" href="map" title="Carte de l'univers">Carte</a>
<a class="mbutton" id="b3" href="alliance" title="Alliance">Alliance</a>
<a class="mbutton" id="b4" href="enemies" title="Gèstion des listes de joueurs et alliances ennemis">Listes d'ennemis</a>
<a class="mbutton" id="b5" href="messages" title="Messages">Messages</a>
<a class="mbutton" id="b6" href="bugtrack" title="Application de suivi des bugs">Suivi des bugs</a>
<div class="cframe"><#nested></div>
</div>
<div class="internal" id="footer">
Copyright (C) 2004-2010, <a title="DeepClone Development" href="http://www.deepclone.com">DeepClone Development</a>
</div>
</div>
</body>
</html>
</#macro>

View file

@ -0,0 +1,27 @@
<#macro page title>
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<title>Legacy Worlds Beta 6 <@version/> - ${title?xhtml}</title>
<link rel="stylesheet" type="text/css" href="css/main.css" />
<script type="text/javascript" charset="utf-8" src="js/jquery-1.4.2.min.js"></script>
<script type="text/javascript" charset="utf-8" src="js/main.js"></script>
</head>
<body>
<div id="extframe">
<div class="internal" id="intframe">
<!-- Header -->
<a id="hbutton" href="player-session" title="Page d'accueil de Legacy Worlds"><span>Legacy Worlds Beta 6 <@version/></span></a>
<div id="version">Version courante : <@full_version/></div>
<div class="top-centered" id="tc-title">${title?xhtml}</div>
<div class="cframe full-width offline"><#nested></div>
</div>
<div class="internal" id="footer">
Copyright (C) 2004-2010, <a title="DeepClone Development" href="http://www.deepclone.com">DeepClone Development</a>
</div>
</div>
</body>
</html>
</#macro>

View file

@ -0,0 +1,33 @@
<#macro page title>
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<title>Legacy Worlds Beta 6 <@version/> - ${title?xhtml}</title>
<link rel="stylesheet" type="text/css" href="css/main.css" />
<script type="text/javascript" charset="utf-8" src="js/jquery-1.4.2.min.js"></script>
<script type="text/javascript" charset="utf-8" src="js/main.js"></script>
</head>
<body>
<div id="extframe">
<div class="internal" id="intframe">
<!-- Header -->
<a id="hbutton" href="home" title="Page d'accueil de Legacy Worlds"><span>Legacy Worlds Beta 6 <@version/></span></a>
<div id="version">Version courante : <@full_version/></div>
<div class="top-centered" id="tc-title">${title?xhtml}</div>
<!-- Log-in box -->
<div id="lbox">
<br/><br/><br/>
<a href="logout.action">Déconnexion</a>
</div>
<div class="cframe full-width"><#nested></div>
</div>
<div class="internal" id="footer">
Copyright (C) 2004-2010, <a title="DeepClone Development" href="http://www.deepclone.com">DeepClone Development</a>
</div>
</div>
</body>
</html>
</#macro>