recommandations dareboost

Cette révision appartient à :
Albirew 2016-11-16 23:26:39 +01:00
Parent d673347dc0
révision b37f27fdff
5 fichiers modifiés avec 265 ajouts et 236 suppressions

Voir le fichier

@ -11,3 +11,19 @@ RewriteRule ^news-([0-9]+)-(.+)\.html$ lireNews.php?idnews=$1&titre=$2 [L]
RewriteCond %{THE_REQUEST} /ficheprojet\.php\?idProjet=([0-9]+)&titre=([^\s]+) [NC]
RewriteRule . projet-%1-%2.html? [R=301,L]
RewriteRule ^projet-([0-9]+)-(.+)\.html$ ficheprojet.php?idProjet=$1&titre=$2 [L]
<IfModule mod_expires.c>
ExpiresActive On
ExpiresDefault "access plus 1 month"
ExpiresByType image/x-icon "access plus 1 year"
ExpiresByType image/gif "access plus 1 year"
ExpiresByType image/jpeg "access plus 1 year"
ExpiresByType image/png "access plus 1 month"
ExpiresByType text/css "access plus 1 month"
ExpiresByType application/javascript "access plus 1 month"
</IfModule>
<IfModule mod_headers.c>
Header always set X-FRAME-OPTIONS "SAMEORIGIN"
Header always set X-XSS-Protection "1; mode=block"
Header always set X-Content-Type-Options "nosniff"
</IfModule>

Fichier binaire non affiché.

Avant

Largeur:  |  Hauteur:  |  Taille: 181 KiB

Après

Largeur:  |  Hauteur:  |  Taille: 49 KiB

Fichier binaire non affiché.

Avant

Largeur:  |  Hauteur:  |  Taille: 184 KiB

Après

Largeur:  |  Hauteur:  |  Taille: 52 KiB

Voir le fichier

@ -17,7 +17,6 @@ Free to use and fork and anything you want !
|############################################################|
|###########_____SITE V3 - POLE DEVELOPPEMENT_____###########|
**/
$(document).ready( function () {
@ -226,7 +225,7 @@ $("#triggercontact").click(function(){
var parent=$(this).parents(".contactbox").attr("id");
sendcontact(parent);
});
$("#contactpopup span").click(function(){
$("#contactpopup").find("span").click(function(){
$("#contactpopup").remove();
});
});
@ -281,7 +280,7 @@ function sendcontact(parent){
$("#formsubcont").css({"top":hauteur/2-50,"left":largeur/2-50});
//fermeture du popup
$("#formsubcont span").click(function(){
$("#formsubcont").find("span").click(function(){
$("#formsubcont").remove();
$("#contactpopup").remove();
});
@ -346,7 +345,7 @@ function errorbox(){
$("#formsubcont").css({"top":hauteur/2-50,"left":largeur/2-50});
//fermeture du popup
$("#formsubcont span").click(function(){
$("#formsubcont").find("span").click(function(){
$("#formsubcont").remove();
});
@ -404,8 +403,8 @@ function getcommnews(news) {
// prévisualiser un commentaire
$("#preview_commentaire_button").click(function(){
$("#commpreview, #commpreviewp").remove();
var pseudo=$("#depot_commentaire_depotbox input[name='pseudo']").val();
var commentaire=nl2br($("#depot_commentaire_depotbox textarea[name='commentaire']").val());
var pseudo=$("#depot_commentaire_depotbox").find("input[name='pseudo']").val();
var commentaire=nl2br($("#depot_commentaire_depotbox").find("textarea[name='commentaire']").val());
if(pseudo.trim()==="" || commentaire.trim()===""){
alert("Il n'y a rien à prévisualiser banane, il faut remplir tous les champs.");
return;
@ -418,9 +417,9 @@ function getcommnews(news) {
$("#depot_commentaire_button").click(function(){
// on envoi un nouveau commentaire
var idnews=$(this).attr("data-commnewsid");
var pseudo=$("#depot_commentaire_depotbox input[name='pseudo']").val();
var commentaire=$("#depot_commentaire_depotbox textarea[name='commentaire']").val();
var dumbot=$("#depot_commentaire_depotbox input[name='dumbot']").val();
var pseudo=$("#depot_commentaire_depotbox").find("input[name='pseudo']").val();
var commentaire=$("#depot_commentaire_depotbox").find("textarea[name='commentaire']").val();
var dumbot=$("#depot_commentaire_depotbox").find("input[name='dumbot']").val();
postcommnews(idnews,pseudo,commentaire,dumbot);
});
@ -463,7 +462,7 @@ function postcommnews(news,pseudo,commentaire,dumbot){
$("#formsubcont").css({"top":hauteur/2-50,"left":largeur/2-50});
//fermeture du popup
$("#formsubcont span").click(function(){
$("#formsubcont").find("span").click(function(){
$("#formsubcont").remove();
$("#commentaire_box").remove();
});
@ -508,8 +507,8 @@ function getcommprojet(projet) {
// prévisualiser un commentaire
$("#preview_commentaire_button").click(function(){
$("#commpreview, #commpreviewp").remove();
var pseudo=$("#depot_commentaire_depotbox input[name='pseudo']").val();
var commentaire=$("#depot_commentaire_depotbox textarea[name='commentaire']").val();
var pseudo=$("#depot_commentaire_depotbox").find("input[name='pseudo']").val();
var commentaire=$("#depot_commentaire_depotbox").find("textarea[name='commentaire']").val();
if(pseudo.trim()==="" || commentaire.trim()===""){
alert("Il n'y a rien a prévisualiser banane.");
return;
@ -522,9 +521,9 @@ function getcommprojet(projet) {
$("#depot_commentaire_button").click(function(){
// on envoi un nouveau commentaire
var idprojet=$(this).attr("data-commprojetid");
var pseudo=$("#depot_commentaire_depotbox input[name='pseudo']").val();
var commentaire=$("#depot_commentaire_depotbox textarea[name='commentaire']").val();
var dumbot=$("#depot_commentaire_depotbox input[name='dumbot']").val();
var pseudo=$("#depot_commentaire_depotbox").find("input[name='pseudo']").val();
var commentaire=$("#depot_commentaire_depotbox").find("textarea[name='commentaire']").val();
var dumbot=$("#depot_commentaire_depotbox").find("input[name='dumbot']").val();
postcommprojet(idprojet,pseudo,commentaire,dumbot);
});
@ -568,7 +567,7 @@ function postcommprojet(projet,pseudo,commentaire,dumbot){
$("#formsubcont").css({"top":hauteur/2-50,"left":largeur/2-50});
//fermeture du popup
$("#formsubcont span").click(function(){
$("#formsubcont").find("span").click(function(){
$("#formsubcont").remove();
$("#commentaire_box").remove();
});
@ -604,10 +603,10 @@ function notebloc(){
dimensions();
getsize("#notebox");
$("#notebox").css({"top":100,"left":largeur/2-itemOW/2});
$("#notebox span").click(function(){
$("#notebox").find("span").click(function(){
$("#notebox").remove();
});
$("#advice div").click(function(){
$("#advice").find("div").click(function(){
$("#advice").height("auto");
});
$(".blocknotation").click(function(){
@ -620,7 +619,7 @@ function notebloc(){
// on envoi la note
$("#sendnote").click(function(){
var idprojet=$("#projetcommentaire").attr("data-idprojet");
var note=$(".blocknotation div[data-select=select]").attr("data-note");
var note=$(".blocknotation").find("div[data-select=select]").attr("data-note");
if(localStorage["note"+idprojet]){
alert("Merci à vous d'apprécier autant notre travail mais vous avez déjà noté ce projet.");
}
@ -647,7 +646,7 @@ function notebloc(){
$("#formsubcont").css({"left":$("#notebox").width()/2-90});
//fermeture du popup
$("#formsubcont span").click(function(){
$("#formsubcont").find("span").click(function(){
$("#formsubcont").remove();
$("#notebox").remove();
@ -691,7 +690,7 @@ function hhhchatcontrol(){
// boutons de controle réduire/agrandir
$("#chatheader span:eq(1)").click(function(){
$("#chatheader").find("span:eq(1)").click(function(){
if($(this).hasClass("reploy")){
$(this).removeAttr("class");
@ -703,7 +702,7 @@ function hhhchatcontrol(){
}
});
// boutons de controle fermer
$("#chatheader span:eq(0)").click(function(){
$("#chatheader").find("span:eq(0)").click(function(){
$("#hhhtchat").remove();
});
@ -715,7 +714,7 @@ function chatposition(){
var h= (hauteur/3)*2;
$("#hhhtchat").attr("data-chatdeploy","true");
$("#hhhtchat").css({"width":w,"height":h+50,"left":largeur/2-w/2, "top":hauteur/2-(h+50)/2});
$("#hhhtchat iframe").css({"width":w,"height":h-50});
$("#hhhtchat").find("iframe").css({"width":w,"height":h-50});
}
function chatopen(){
@ -1072,6 +1071,10 @@ $(document).mousedown(function(e){
var lien = $(this).attr("href");
// on trie les liens au cas par cas
if(lien=="https://lel.hhh-world.com"){
window.open(lien);
}else{
//liens pour des pages internes sans autres GET
if($(this).is($("a[data-link=internal]"))){
titrepage=$('nav a[href="'+lien+'"]').text()
@ -1170,6 +1173,7 @@ $(document).mousedown(function(e){
}
});
}
e.preventDefault();
});

Voir le fichier

@ -24,16 +24,30 @@
<meta name="keywords" content="hentai,manga,scantrad,français,team,hhh,scan,oasis,doujinshi,headquarter,french"/>
<meta name="author" content="Lukia, Yumemi, Albirew" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta property="og:title" content="Hardcore Hentai Heaquarter" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://hhh-world.com/" />
<meta property="og:image:secure_url" content="https://hhh-world.com/hhh.png" />
<link rel="shortcut icon" href="favicon.ico">
<link rel="apple-touch-icon" href="apple-touch-icon-precomposed.png">
<link rel="stylesheet" href="design/css.css?=refreshtwitter">
<link rel="stylesheet" href="design/css.css?=20161116">
<link rel="stylesheet" href="design/gfonts.css?=20161116">
<?php /* dépendre de google, caymal
<link href='https://fonts.googleapis.com/css?family=Titillium+Web' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Lato' rel='stylesheet' type='text/css'>
<script src="design/js/jquery-1.11.0.js"></script>
*/ ?>
<script src="design/js/jquery-1.11.0.min.js"></script>
<script src="design/js/jquery.mousewheel.js"></script>
<script src="design/js/perfect-scrollbar.js"></script>
<script src="design/js/jquery.transit.min.js"></script>
<script src="design/js/interface.js?=refresh"></script>
<script src="design/js/interface.js?=20161116"></script>
<script src="design/js/paper-full.min.js"></script>
<noscript>Bienvenue en 2016, veuillez activer JavaScript pour naviguer sur notre site ;)</noscript>
<?php /*
<!-- Load external PaperScript and associate it with myCanvas -->
<!--<script type="text/paperscript" src="design/js/paperbullehhh.js" canvas="myCanvas"></script>-->
<script type="text/paperscript" src="design/js/paperbullehhh.js" canvas="myCanvas"></script>
*/ ?>
<!--[if lte IE 8]>
<script src="design/js/html5.js" type="text/javascript"></script>
<![endif]-->
@ -42,24 +56,18 @@
<div id="disclaimer">
<div id="logoaccueil"></div>
<p>
<noscript>Bienvenue en 2016, veuillez activer JavaScript pour naviguer sur notre site ;)<br><br></noscript>
Ce site Internet contient des textes, images et vidéos à caractère pornographique qui peuvent choquer certaines sensibilités, par conséquent :<br/><br/>
- L'accès à ce site est strictement interdit aux mineurs.<br/>
- Le contenu de ce site ne doit pas être diffusé à des mineurs.<br/>
- En entrant sur ce site je certifie être majeur selon les lois du pays depuis lequel j'y accède.
</p>
<div id="entree">Entrer</div>
<div id="sortie"><a href="http://www.pokemon.com/fr/">Sortir</a></div>
</div>
<?php /* dépendre de google, caymal
<link href='https://fonts.googleapis.com/css?family=Titillium+Web' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Lato' rel='stylesheet' type='text/css'>
<script src="design/js/jquery-1.11.0.js"></script>
*/ ?>
<script src="design/js/jquery-1.11.0.min.js"></script>
<?php
// on va aller se chercher le nombre de projet en fonction de sa catégorie dans le site :)
include 'countprojet.php';
@ -82,6 +90,7 @@ include 'countprojet.php';
<li>
<a href="projets.php" title="Les projets de la team">Projets</a>
<ul>
<li><a href="https://lel.hhh-world.com" title="Tous les projets à lire en ligne !">Lecture en Ligne</a></li>
<li><a href="projets-en-cours.php" title="Tous les mangas actuellement en cours de traduction">Projets en cours (<?php echo $catencours ?>)</a></li>
<li><a href="projets-termines.php" title="Tous les mangas terminés">Projets terminés (<?php echo $catfini ?>)</a></li>
<li><a href="liste-complete-des-releases.php" title="La liste complète de nos projets">Liste complète des releases</a></li>