initial import

This commit is contained in:
n 2020-11-29 11:25:34 +01:00
commit 7fae215cc8
505 changed files with 4700 additions and 0 deletions

3
.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
modules/goldbook/*.csv
modules/timers/*.csv
tmp/

7
.htaccess Normal file
View File

@ -0,0 +1,7 @@
#Options +ExecCGI
RewriteEngine on
#RewriteRule ^index\.html$ index.php
RewriteRule ^(.*)\.phtml$ ?modulepage=$1
RewriteRule ^(.*)\.html$ ?page=$1&titlepage=$1
#RewriteRule ^(.*)\.htm$ ?page=$1 [C,E=WasHTML:yes]

21
401.php Normal file
View File

@ -0,0 +1,21 @@
<?php
$titlepage = "Accès refusé";
include "include/head.inc.php";
include "include/theme.inc.php";
include "themes/default/theme.php";
?>
<body>
<table>
<tr>
<td align="left"><img src="/images/tma.gif" alt="TMA" title="TMA" /></td>
<td align="center">
<h2><font color="red">Erreur 401 - Accès refusé</font></h2>
<br/>Vous n'avez pas l'authorisation d'entrer.
<br/>Cliquez <a href="/">ici</a> pour revenir à la page d'acceuil...
</td>
</tr>
</table>
</body>
</html>

20
403.php Normal file
View File

@ -0,0 +1,20 @@
<?php
$titlepage = "Accès refusé";
include "include/head.inc.php";
include "include/theme.inc.php";
include "themes/default/theme.php";
?>
<body>
<table>
<tr>
<td align="left"><img src="/images/tma.gif" alt='TMA' title='TMA' /></td>
<td align="center">
<h2><font color="red">Erreur 403 - Accès refusé</font></h2>
<br/>Vous n'avez pas accès à cette partie du site!
<br/>Cliquez <a href="/">ici</a> pour revenir à la page d'acceuil...
</td>
</tr>
</table>
</body>
</html>

19
404.php Normal file
View File

@ -0,0 +1,19 @@
<?php
$titlepage = "Fichier non trouvé";
include "include/head.inc.php";
include "include/theme.inc.php";
include "themes/default/theme.php";
?>
<body>
<table>
<tr>
<td align="left"><img src="/images/tma.gif" alt="TMA" title="TMA" /></td>
<td align="center">
<h2><font color="red">Erreur 404 - Fichier non trouvé</font></h2>
<br/>Le fichier demandé n'à pas été trouvé !
<br/>Cliquez <a href="/">ici</a> pour revenir à la page d'acceuil...
</td>
</tr>
</table>
</body>
</html>

22
500.php Normal file
View File

@ -0,0 +1,22 @@
<?php
$titlepage="Erreur interne";
include "include/head.inc.php";
include "include/theme.inc.php";
include "themes/default/theme.php";
?>
<body>
<table>
<tr>
<td align="left"><img src="/images/tma.gif" title="TMA" alt="TMA" /></td>
<td align="center">
<h2><font color="red">Erreur 500 - Erreur Interne</font></h2>
<br/>oops...y'a comme un bug !
<br/>Ecrivez <a href="mailto:nicolas@legaillart.com">ici</a> pour m'insulter, ou
<br/>cliquez <a href="/">ici</a> pour revenir à la page d'acceuil...
</td>
</tr>
</table>
</body>
</html>

17
config/path.php Normal file
View File

@ -0,0 +1,17 @@
<?php
define("IFPP_PATH","http://$HTTP_HOST/ifpp");
define("PAGES_PATH",IFPP_PATH."/pages");
define("INCLUDE_PATH",IFPP_PATH."/include");
define("IMAGES_PATH",IFPP_PATH."/images");
define("MODULES_PATH",IFPP_PATH."/modules");
define("MODULES_FORTUNE_PATH",IFPP_PATH.MODULES_PATH."/fortunes");
define("MODULES_SONDAGE_PATH",IFPP_PATH.MODULES_PATH."/sondages");
define("MODULES_LIENSDIRECTS_PATH",IFPP_PATH.MODULES_PATH."/liensdirects");
define("MODULES_TRIBUNE_PATH",IFPP_PATH.MODULES_PATH."/tribune");
include INCLUDE_PATH."/body.inc.php";
echo INCLUDE_PATH;
?>

163
css/blue.css Normal file
View File

@ -0,0 +1,163 @@
body
{
color: #000000;
/* scrollbar-face-color: #9933CC; */
font-family: sans-serif, Times, serif;
font-size: 12px;
text-align: center;
background-color : #FFFFFF;
/* background-image : url(/themes/default/fond.jpg);
background-attachment : fixed; */
}
p
{
text-align: left;
}
li
{
list-style-type: disc;
}
a:link
{
color: #0000FF;
text-decoration: none;
}
a:visited
{
color: #6666FF;
text-decoration: inherit;
}
a:hover
{
text-decoration: underline;
}
:link img { border: 2px solid #0000FF }
:visited img { border: 2px solid #6666FF }
table
{
font-family: Times, serif;
border-width: 4px;
border-color: #EEEEFF;
border-style: none;
}
.head
{
font-family: serif, Times;
font-size: 14px;
background-color: #ccccff;
color: #000077;
border-width: 0px;
border-color: #EEEEFF;
text-align: right;
font-weight: bold;
}
.centerhead
{
font-family: Times, serif;
font-size: 14px;
}
.centerbody
{
font-family: Times, serif;
font-size: 14px;
}
.magicbox
{
font-family: sans-serif, Times, serif;
font-size: 10px;
border-width: 0px;
border-color: #EEEEFF;
background-color: #cceeff;
margin-left: 4px;
}
h1
{
text-align: center;
color: #0000FF;
}
h3
{
text-align: center;
color: #000063;
}
h6
{
font-family: sans-serif;
font-size: 10px;
}
.bordure
{
border-style: none;
}
td.colonne
{
width: 135px;
}
.left
{
text-align: left;
float: left;
}
.center
{
text-align: center;
float: none;
}
.right
{
text-align: right;
float: right;
}
img
{
position: relative;
border-color: inherit;
border-width: 2px;
border-style: solid;
}
.border0
{
position: inherit;
border-width: 0px;
}
.border1
{
border-color: inherit;
border-width: 1px;
border-style: solid;
}
.border2
{
position: inherit;
border-width: 2px;
border-color: inherit;
border-style: solid;
}

185
css/default.css Normal file
View File

@ -0,0 +1,185 @@
body
{
color: #000000;
/* scrollbar-face-color: #9933CC; */
font-family: sans-serif, Times, serif;
font-size: 12px;
text-align: center;
background-color: #FFFFEE;
background-image: url(/themes/default/fond2.jpg);
background-attachment: fixed;
}
p
{
text-align: left;
}
li
{
list-style-type: circle;
}
a:link
{
color: #663300; /* 630000; */
text-decoration: none;
}
a:visited
{
color: #993300; /* AA1010; */
text-decoration: none;
}
a:hover
{
color: white;
background-color: #663300;
text-decoration: none;
}
table
{
/*font-family: Times, serif;*/
/*border-width: 2px;
border-color: #000000;*/
}
.head
{
font-family: sans-serif;
font-size: 12px;
background-color: #CC9966;
/* #C68484; */
text-align: center;
color: #000000;
border-color: black;
border-style: none;
font-weight: normal;
}
.centerhead
{
font-family: Times, serif;
font-size: 14px;
}
.centerbody
{
font-family: Times, serif;
font-size: 14px;
}
.magicbox
{
font-family: Helvetica, sans-serif, Times, serif;
font-size: 11px;
background-color: white;
border-style: none;
}
h1
{
text-align: center;
color: black;
}
h3
{
text-align: center;
color: maroon;
}
h6
{
font-family: sans-serif;
font-size: 10px;
}
.bordure
{
background-color: #000000;
border-style: none;
/* border-color: black;
border-width: 2px; */
}
td.colonne
{
width: 135px;
}
.left
{
text-align: left;
float: left;
}
.center
{
text-align: center;
float: center;
}
.right
{
text-align: right;
float: right;
}
img, map
{
position: relative;
border-color: #663300;
border-width: 2px;
border-style: solid;
}
.border0
{
position: inherit;
border-width: 0px;
}
.border1
{
border-color: inherit;
border-width: 1px;
border-style: solid;
}
.border2
{
position: inherit;
border-width: 2px;
border-color: inherit;
border-style: solid;
}
.pageseparator
{
visibility: hidden;
}
hr
{
border-style: solid;
border-width: 1px;
}
.note
{
text-decoration: underline;
font-style: italic;
}
acronym
{
border-style: dashed;
border-width: 0em 0em 1px 0em;
}
.piejacon
{
display: none;
}

104
css/lightbox/lightbox.css Normal file
View File

@ -0,0 +1,104 @@
#lightbox{
position: absolute;
top: 40px;
left: 0;
width: 100%;
z-index: 100;
text-align: center;
line-height: 0;
}
#lightbox a img{ border: none; }
#outerImageContainer{
position: relative;
background-color: #fff;
width: 250px;
height: 250px;
margin: 0 auto;
}
#imageContainer{
padding: 10px;
}
#loading{
position: absolute;
top: 40%;
left: 0%;
height: 25%;
width: 100%;
text-align: center;
line-height: 0;
}
#hoverNav{
position: absolute;
top: 0;
left: 0;
height: 100%;
width: 100%;
z-index: 10;
}
#imageContainer>#hoverNav{ left: 0;}
#hoverNav a{ outline: none;}
#prevLink, #nextLink{
width: 49%;
height: 100%;
background: transparent url(/images/litebox/blank.gif) no-repeat; /* Trick IE into showing hover */
display: block;
}
#prevLink { left: 0; float: left;}
#nextLink { right: 0; float: right;}
#prevLink:hover, #prevLink:visited:hover { background: url(/images/litebox/prevlabel.gif) left 15% no-repeat; }
#nextLink:hover, #nextLink:visited:hover { background: url(/images/litebox/nextlabel.gif) right 15% no-repeat; }
#imageDataContainer{
font: 10px Verdana, Helvetica, sans-serif;
background-color: #fff;
margin: 0 auto;
line-height: 1.4em;
}
#imageData{
padding:0 10px;
}
#imageData #imageDetails{ width: 70%; float: left; text-align: left; }
#imageData #caption{ font-weight: bold; }
#imageData #numberDisplay{ display: block; clear: left; padding-bottom: 1.0em; }
#imageData #bottomNavClose{ width: 18px; float: right; padding-bottom: 0.7em; }
#overlay{
position: absolute;
top: 0;
left: 0;
z-index: 90;
width: 100%;
height: 500px;
background-color: #000;
filter:alpha(opacity=60);
-moz-opacity: 0.6;
opacity: 0.6;
}
.clearfix:after {
content: ".";
display: block;
height: 0;
clear: both;
visibility: hidden;
}
* html>body .clearfix {
display: inline-block;
width: 100%;
}
* html .clearfix {
/* Hides from IE-mac \*/
height: 1%;
/* End hide from IE-mac */
}

20
css/lightbox/style.css Normal file
View File

@ -0,0 +1,20 @@
html, body { height:100%; }
body {
font-family:Verdana,arial,Tahoma;
font-size:.8em;
color:#222;
margin:0;
padding:0;
background:#fff;
text-align:justify;
}
a { color:#557FFF; }
a:hover { text-decoration:none; }
p, li { margin:2px; color:#555; padding:2px}
ul { padding-left:1em; }
img { border: none; }
.bordered { border:1px solid #aaa; }
h1 { text-align:right; margin:2px; color:#000; font-family:Georgia,Arial,Tahoma; font-size: 3em;}
h3, h5 { margin-bottom:4px; }
textarea { background:#ccc; color:#333; border:1px solid #aaa; }
#content { width:700px; background:#eee; margin-left:auto; margin-right:auto; padding:8px; border-left:10px solid #ccc; border-right:10px solid #ccc; }

176
css/pda.css Normal file
View File

@ -0,0 +1,176 @@
.dummy
{
}
html
{
width: 240px;
}
body
{
color: black;
font-family: sans-serif, Times, serif;
font-size: 12px;
text-align: center;
background-color: white;
background-image: none;
width: 240px;
}
p
{
text-align: left;
/* margin: 90px; */
}
li
{
list-style-type: circle;
}
a:link
{
color: maroon;
text-decoration: none;
}
a:visited
{
color: red;
text-decoration: none;
}
:link img { border: 2px solid #630000 }
:visited img { border: 2px solid #AA1010 }
table
{
font-family: Times, serif;
}
.head
{
font-family: sans-serif;
font-size: 10px;
background-color: maroon;
text-align: center;
color: white;
font-weight: bold;
border-color: black;
}
.centerhead
{
font-family: Times, serif;
font-size: 11px;
}
.centerbody
{
font-family: Times, serif;
font-size: 12px;
}
.magicbox
{
font-family: sans-serif, Times, serif;
font-size: 10px;
background-color: white;
}
h1
{
text-align: center;
color: black;
font-family: sans-serif, Times, serif;
font-size: 14px;
}
h2
{
font-family: sans-serif, Times, serif;
font-size: 12px;
}
h3
{
text-align: center;
color: maroon;
font-family: sans-serif, Times, serif;
font-size: 12px;
}
h6
{
font-family: sans-serif;
font-size: 8px;
}
.bordure
{
background-color: black;
border-style: none;
}
td.colonne
{
width: 75px;
float: left;
}
.left
{
text-align: left;
float: left;
}
.center
{
text-align: center;
float: none;
}
.right
{
text-align: right;
float: right;
}
img
{
position: relative;
border-color: inherit;
border-width: 2px;
border-style: solid;
}
.border0
{
position: inherit;
border-width: 0px;
}
.border1
{
border-color: inherit;
border-width: 1px;
border-style: solid;
}
.border2
{
position: inherit;
border-width: 2px;
border-color: inherit;
border-style: solid;
}
i
{
font-family: sans-serif, Times, serif;
font-size: 8px;
}

159
css/print.css Normal file
View File

@ -0,0 +1,159 @@
body
{
color: #000000;
/* scrollbar-face-color: #9933CC; */
font-family: sans-serif, Times, serif;
font-size: 12px;
text-align: center;
background-color: white;
background-image: none;
width: 100%;
}
p
{
text-align: left;
}
li
{
list-style-type: circle;
}
a:link
{
color: #630000;
text-decoration: none;
}
a:visited
{
color: #AA1010;
text-decoration: none;
}
a:hover
{
color: #FFFFFF;
background-color: #630000;
text-decoration: none;
}
:link img { border: 2px solid #630000 }
:visited img { border: 2px solid #AA1010 }
table
{
font-family: Times, serif;
/*border-width: 2px;
border-color: #000000;*/
}
.head
{
font-family: sans-serif;
font-size: 12px;
background-color: #C68484;
text-align: center;
color: #000000;
font-weight: normal;
}
.centerhead
{
font-family: Times, serif;
font-size: 14px;
}
.centerbody
{
font-family: Times, serif;
font-size: 14px;
}
.magicbox
{
font-family: sans-serif, Times, serif;
font-size: 10px;
background-color: #FFFFFF;
}
h1
{
text-align: center;
color: #221111;
}
h3
{
text-align: center;
color: #630000;
}
h6
{
font-family: sans-serif;
font-size: 10px;
}
.bordure
{
background-color: #000000;
border-style: none;
}
td.colonne
{
display: none;
}
.left
{
text-align: left;
float: left;
}
.center
{
text-align: center;
float: none;
}
.right
{
text-align: right;
float: right;
}
img
{
position: relative;
border-color: inherit;
border-width: 2px;
border-style: solid;
}
.border0
{
position: inherit;
border-width: 0px;
}
.border1
{
border-color: inherit;
border-width: 1px;
border-style: solid;
}
.border2
{
position: inherit;
border-width: 2px;
border-color: inherit;
border-style: solid;
}

79
css/test.css Normal file
View File

@ -0,0 +1,79 @@
body
{
color: #000000;
/* scrollbar-face-color: #9933CC; */
font-family: sans-serif, Times, serif;
font-size: 12px;
background-color : white;
background-image : url(/themes/default/fond.jpg);
background-attachment : fixed;
}
a:link
{
color: #630000;
text-decoration: none;
}
a:visited
{
color: #AA1010;
text-decoration: none;
}
a:hover
{
color: #CCCCCC;
background-color: #630000;
text-decoration: none;
}
table
{
font-family: Times, serif;
//font-size: 12px;
//border-style: dotted;
border-width: medium;
}
.head
{
font-family: sans-serif;
font-size: 12px;
background-color: #C68484;
}
.centerhead
{
font-family: Times, serif;
font-size: 14px;
}
.centerbody
{
font-family: Times, serif;
font-size: 14px;
}
.magicbox
{
font-family: sans-serif, Times, serif;
font-size: 10px;
background-color: #FFFEFE;
}
h1
{
color: #221111;
}
h3
{
color: #630000;
}
.bordure
{
background-color: #000000;
}

81
css/transparent.css Normal file
View File

@ -0,0 +1,81 @@
body
{
color: #000000;
/* scrollbar-face-color: #9933CC; */
font-family: sans-serif, Times, serif;
font-size: 12px;
background-color : white;
background-image : url(/themes/default/fond.jpg);
background-attachment : fixed;
}
a:link
{
color: #630000;
text-decoration: none;
}
a:visited
{
color: #AA1010;
text-decoration: none;
}
a:hover
{
color: #CCCCCC;
background-color: #630000;
text-decoration: none;
}
table
{
font-family: Times, serif;
filter:alpha(opacity=85);
-moz-opacity:0.85;
}
.head
{
font-family: sans-serif;
font-size: 12px;
background-color: #C68484;
}
.centerhead
{
font-family: Times, serif;
font-size: 14px;
}
.centerbody
{
font-family: Times, serif;
font-size: 14px;
filter:alpha(opacity=75);
-moz-opacity:0.75;
}
.magicbox
{
font-family: sans-serif, Times, serif;
font-size: 10px;
background-color: #FFFFFF;
}
h1
{
color: #221111;
}
h3
{
color: #630000;
}
.bordure
{
background-color: #000000;
}

BIN
favicon.ico Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 219 B

23
footer.php Normal file
View File

@ -0,0 +1,23 @@
<?php
echo "<img src='images/li_lgn1_animated.gif' width=100%><div align=center>
<table border=0 width='100%' valign=bottom><tr>
<td align =center>\n<a href='http://fr.php.net/' target='_blank'>\n<img src='images/";
if (date("n")!="4")
echo "elephpant.gif";
else
echo "phpoisson_davril.gif";
echo "' alt='Ce site utilise PHP5' title='Ce site utilise PHP5' border=0></a>\n</td>\n";
if ($HTTP_GET_VARS["IFRANCE"] =="1")
echo "<td align=center>{=compt_puce_b}</td>\n";
echo "
<td align=center>\n<a href='http://www.ifrance.com/phpinfo/index.php?section=pages/pip&page=index&theme=$theme' target='_blank'>\n<img src='images/mercipip.jpg' height=45 width=102 alt='Powered by PIP' title='Powered by PIP' border=0></a>\n</td>
<td align=center>\n<a href='http://www.hertgen.com/anybrowser/' target='_blank'>\n<img src='images/anyb.png' height=30 width=87 ALT='Best Viewed With Any Browser' title='Best Viewed With Any Browser' border=0></a>\n</td>
<td align=center>\n<a href='http://www.gimp.org/' target='_blank'>\n<img src='images/gfx_by_gimp.gif' alt='graphics by the gimp' title='graphics by the gimp' border=0></a>\n</td>
<td align=center>\n<a href='http://www.linux-mandrake.com/' target='_blank'>\n<img src='images/tux_S2.gif' alt='powered by Linux Mandrake' title='powered by Linux Mandrake' border=0></a>\n</td>
<td align=center>\n<table border=0 cellpadding=0>\n<tr><td align=center>Contact:</td></tr>\n<tr><td align=center><a href=\"$MailAdr\">n@tourmentine.com</a></td></tr>\n<tr><td align=center nowrap>ICQ #97902157\n<a href='http://www.icq.com'><img src='http://online.mirabilis.com/scripts/online.dll?icq=97902157&img=1' border=0 alt='' title=''></a>\n</td></tr>\n</table>\n</td>
</tr></table></div></div>\n";
// echo "<br><a href=\"index.php\">retour au menu</a><br></div>";
?>

18
header.php Normal file
View File

@ -0,0 +1,18 @@
<div align=right>
<?php
setlocale (LC_ALL, 'fr_FR');
//$link = mysql_connect("localhost", "", "")
// or die("Could not connect");
//$hits = mysql_query("SELECT COUNT(*) FROM visit.visiteurs",$link)
// or die("Invalid query");
//echo strftime("%A %e %B %G | %R");
//if ($hits)
// echo mysql_result($hits,0)."<a href='visit/'> Hits</a><hr>";
//mysql_close($link);
//echo rand(10,10000000);
//echo "<a href='visit/' title=\"Vous y croyez, vous ?\"> Hits</a><hr>";
?>
</div>

Binary file not shown.

After

Width:  |  Height:  |  Size: 261 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 330 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 284 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 157 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 170 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.1 KiB

BIN
images/242tc.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 67 KiB

BIN
images/FerroVienne.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

BIN
images/TGM.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 68 KiB

BIN
images/anyb.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

BIN
images/apacheicon.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 223 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 317 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 378 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 294 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 402 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 416 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 386 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 411 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 250 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 199 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 222 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 412 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 306 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 331 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 351 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 197 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 199 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 275 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 216 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 223 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 317 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 378 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 294 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 402 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 416 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 386 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 411 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 250 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 199 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 222 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 412 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 306 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 331 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 351 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 197 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 199 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 275 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 216 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

BIN
images/avallon_plm.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 408 KiB

BIN
images/bb2000.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 77 KiB

8
images/carte/1/1.php3 Normal file
View File

@ -0,0 +1,8 @@
<html>
<body>
<?php
include "/carte/1/vue g01.js";
?>
</body>
</html>

BIN
images/carte/1/p_pano01.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.0 KiB

BIN
images/carte/1/p_pano02.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.3 KiB

BIN
images/carte/1/p_pano03.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

BIN
images/carte/1/pano01.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 25 KiB

BIN
images/carte/1/pano02.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 28 KiB

Some files were not shown because too many files have changed in this diff Show More