Nettoyage fichiers obsoletes module don et reclassement dans autre rep des fichiers bplc
This commit is contained in:
parent
5517b89973
commit
1fb6d9c198
@ -1,38 +0,0 @@
|
|||||||
<?php
|
|
||||||
/* Copyright (C) 2002 Rodolphe Quiedeville <rodolphe@quiedeville.org>
|
|
||||||
*
|
|
||||||
* This program is free software; you can redistribute it and/or modify
|
|
||||||
* it under the terms of the GNU General Public License as published by
|
|
||||||
* the Free Software Foundation; either version 2 of the License, or
|
|
||||||
* (at your option) any later version.
|
|
||||||
*
|
|
||||||
* This program is distributed in the hope that it will be useful,
|
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
* GNU General Public License for more details.
|
|
||||||
*
|
|
||||||
* You should have received a copy of the GNU General Public License
|
|
||||||
* along with this program; if not, write to the Free Software
|
|
||||||
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
||||||
*
|
|
||||||
* $Id$
|
|
||||||
* $Source$
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
print '<input type="hidden" name="projetid" value="'.$_POST["projetid"].'">';
|
|
||||||
print '<input type="hidden" name="prenom" value="'.$_POST["prenom"].'">';
|
|
||||||
print '<input type="hidden" name="nom" value="'.$_POST["nom"].'">';
|
|
||||||
print '<input type="hidden" name="societe" value="'.$_POST["societe"].'">';
|
|
||||||
print '<input type="hidden" name="adresse" value="'.$_POST["adresse"].'">';
|
|
||||||
print '<input type="hidden" name="cp" value="'.$_POST["cp"].'">';
|
|
||||||
print '<input type="hidden" name="ville" value="'.$_POST["ville"].'">';
|
|
||||||
print '<input type="hidden" name="pays" value="'.$_POST["pays"].'">';
|
|
||||||
print '<input type="hidden" name="date" value="'.$_POST["date"].'">';
|
|
||||||
print '<input type="hidden" name="public" value="'.$_POST["public"].'">';
|
|
||||||
print '<input type="hidden" name="email" value="'.$_POST["email"].'">';
|
|
||||||
print '<input type="hidden" name="montant" value="'.$_POST["montant"].'">';
|
|
||||||
print '<input type="hidden" name="commentaire" value="'.$_POST["commentaire"].'">';
|
|
||||||
|
|
||||||
|
|
||||||
?>
|
|
||||||
@ -1,112 +0,0 @@
|
|||||||
<?php
|
|
||||||
/* Copyright (C) 2003 Rodolphe Quiedeville <rodolphe@quiedeville.org>
|
|
||||||
* Copyright (C) 2003 Association FSF France <contact@fsffrance.org>
|
|
||||||
* Copyright (C) 2004 Laurent Destailleur <eldy@users.sourceforge.net>
|
|
||||||
*
|
|
||||||
* This program is free software; you can redistribute it and/or modify
|
|
||||||
* it under the terms of the GNU General Public License as published by
|
|
||||||
* the Free Software Foundation; either version 2 of the License, or
|
|
||||||
* (at your option) any later version.
|
|
||||||
*
|
|
||||||
* This program is distributed in the hope that it will be useful,
|
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
* GNU General Public License for more details.
|
|
||||||
*
|
|
||||||
* You should have received a copy of the GNU General Public License
|
|
||||||
* along with this program; if not, write to the Free Software
|
|
||||||
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
||||||
*
|
|
||||||
* $Id$
|
|
||||||
* $Source$
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
|
|
||||||
$conf = new Conf();
|
|
||||||
$conf->db->type = $dolibarr_main_db_type;
|
|
||||||
$conf->db->host = $dolibarr_main_db_host;
|
|
||||||
$conf->db->name = $dolibarr_main_db_name;
|
|
||||||
$conf->db->user = $dolibarr_main_db_user;
|
|
||||||
$conf->db->pass = $dolibarr_main_db_pass;
|
|
||||||
|
|
||||||
$db = new DoliDb($conf->db->type,$conf->db->host,$conf->db->user,$conf->db->pass,$conf->db->name);
|
|
||||||
$sql = "SELECT ".$db->pdate("f.datef")." as datef, s.nom, f.total, f.note, f.paye";
|
|
||||||
$sql .= " FROM ".MAIN_DB_PREFIX."facture_fourn as f, ".MAIN_DB_PREFIX."societe as s";
|
|
||||||
$sql .= " WHERE f.fk_soc = s.rowid ORDER BY f.datef DESC";
|
|
||||||
|
|
||||||
if ( $db->query( $sql) )
|
|
||||||
{
|
|
||||||
$num = $db->num_rows();
|
|
||||||
if ($num)
|
|
||||||
{
|
|
||||||
|
|
||||||
print "<TABLE border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"4\">";
|
|
||||||
|
|
||||||
print '<TR>';
|
|
||||||
print "<td>Société</td>";
|
|
||||||
print "<td>Date</td>";
|
|
||||||
print "<td align=\"right\">Montant</TD>";
|
|
||||||
print "</TR>\n";
|
|
||||||
|
|
||||||
$var=True;
|
|
||||||
$bc[1]='bgcolor="#f5f5f5"';
|
|
||||||
$bc[0]='bgcolor="#f0f0f0"';
|
|
||||||
while ($i < $num)
|
|
||||||
{
|
|
||||||
$objp = $db->fetch_object( $i);
|
|
||||||
|
|
||||||
$var=!$var;
|
|
||||||
print "<TR $bc[$var]>";
|
|
||||||
print "<td>".stripslashes($objp->nom)."</TD>\n";
|
|
||||||
|
|
||||||
print "<TD>".dolibarr_print_date($objp->datef,'dayhour')."</td>\n";
|
|
||||||
print '<TD align="right">'.number_format($objp->total,2,'.','').' '.$langs->trans("Currency".$conf->monnaie);
|
|
||||||
|
|
||||||
if ($objp->paye == 1)
|
|
||||||
{
|
|
||||||
print "<br>payé";
|
|
||||||
$total_paye += $objp->total;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
print "<br>A payer";
|
|
||||||
$total_apayer += $objp->total;
|
|
||||||
}
|
|
||||||
|
|
||||||
print '</TD>';
|
|
||||||
print "</tr>";
|
|
||||||
|
|
||||||
print "<TR $bc[$var]><td> </td><td>";
|
|
||||||
print nl2br(stripslashes($objp->note));
|
|
||||||
print "</td><td> </td></tr>";
|
|
||||||
|
|
||||||
$total += $objp->total;
|
|
||||||
|
|
||||||
$i++;
|
|
||||||
}
|
|
||||||
|
|
||||||
$var=!$var;
|
|
||||||
print "<TR $bc[$var]>";
|
|
||||||
print '<TD colspan="3" align="right">Payé : '.number_format($total_paye,2,'.',' ').' '.$langs->trans("Currency".$conf->monnaie).'</td></tr>';
|
|
||||||
|
|
||||||
$var=!$var;
|
|
||||||
print "<TR $bc[$var]>";
|
|
||||||
print '<TD colspan="3" align="right">A payer : '.number_format($total_apayer,2,'.',' ').' '.$langs->trans("Currency".$conf->monnaie).'</td></tr>';
|
|
||||||
|
|
||||||
$var=!$var;
|
|
||||||
print "<TR $bc[$var]>";
|
|
||||||
print '<TD colspan="3" align="right">'.$langs->trans("Total").': '.number_format($total,2,'.',' ').' '.$langs->trans("Currency".$conf->monnaie).'</td></tr>';
|
|
||||||
|
|
||||||
print "</table>";
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
print $db->error();
|
|
||||||
}
|
|
||||||
|
|
||||||
$db->close();
|
|
||||||
|
|
||||||
?>
|
|
||||||
@ -1,139 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="iso-8859-1" ?>
|
|
||||||
<!DOCTYPE html
|
|
||||||
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
|
||||||
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"
|
|
||||||
>
|
|
||||||
<html lang="fr">
|
|
||||||
<head>
|
|
||||||
<!-- $Id$ -->
|
|
||||||
<title>EUCD.INFO - Au secours de la copie privée - Promesse de don</title>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<div class="main">
|
|
||||||
|
|
||||||
<h1>Promesse de don</h1>
|
|
||||||
|
|
||||||
<p>
|
|
||||||
Les contributions financières ouvrent droit à une réduction
|
|
||||||
d'impôt et serviront principalement à rémunérer des juristes dont
|
|
||||||
les tâches seront d'analyser la situation et de proposer un
|
|
||||||
avant-projet de loi transposant la directive du 22 mai 2001
|
|
||||||
(EUCD) dans le respect des droits des utilisateurs et du
|
|
||||||
public.
|
|
||||||
</p>
|
|
||||||
|
|
||||||
<p>
|
|
||||||
En remplissant ce formulaire vous promettez de faire
|
|
||||||
parvenir le montant de votre choix à l'initiative EUCD.INFO
|
|
||||||
dans les trois semaines à venir.
|
|
||||||
</p>
|
|
||||||
|
|
||||||
<form action="index.php" method="post">
|
|
||||||
<table id="formulaire">
|
|
||||||
<input type="hidden" name="action" value="add" />
|
|
||||||
<!-- la ligne projet est invisible -->
|
|
||||||
<tr id="projet">
|
|
||||||
|
|
||||||
</tr>
|
|
||||||
<tr id="date">
|
|
||||||
|
|
||||||
<script language="php">
|
|
||||||
$a = setlocale(LC_TIME, "fr_FR");
|
|
||||||
print strftime("%d %B %Y", time());
|
|
||||||
</script>
|
|
||||||
</tr>
|
|
||||||
|
|
||||||
<tr id="montant">
|
|
||||||
<script language="php">
|
|
||||||
print '<input type="text" name="montant" size="10" value="'.$HTTP_POST_VARS["montant"].'">';
|
|
||||||
</script>
|
|
||||||
</tr>
|
|
||||||
|
|
||||||
|
|
||||||
<tr id="prenom">
|
|
||||||
<script language="php">
|
|
||||||
print '<input type="text" name="prenom" size="30" value="'.$HTTP_POST_VARS["prenom"].'">';
|
|
||||||
</script>
|
|
||||||
</tr>
|
|
||||||
|
|
||||||
<tr id="nom">
|
|
||||||
<script language="php">
|
|
||||||
print '<input type="text" name="nom" size="40" value="'.$HTTP_POST_VARS["nom"].'">';
|
|
||||||
</script>
|
|
||||||
</tr>
|
|
||||||
|
|
||||||
<tr id="societe">
|
|
||||||
<script language="php">
|
|
||||||
print '<input type="text" name="societe" size="40" value="'.$HTTP_POST_VARS["societe"].'">';
|
|
||||||
</script>
|
|
||||||
</tr>
|
|
||||||
|
|
||||||
<tr id="adresse">
|
|
||||||
<script language="php">
|
|
||||||
print '<textarea name="adresse" wrap="soft" cols="40" rows="3">'.$HTTP_POST_VARS["adresse"].'</textarea>';
|
|
||||||
</script>
|
|
||||||
</tr>
|
|
||||||
|
|
||||||
<tr id="cp">
|
|
||||||
<script language="php">
|
|
||||||
print '<input type="text" name="cp" size="8" value="'.$HTTP_POST_VARS["cp"].'">';
|
|
||||||
</script>
|
|
||||||
</tr>
|
|
||||||
|
|
||||||
<tr id="ville">
|
|
||||||
<script language="php">
|
|
||||||
print '<input type="text" name="ville" size="30" value="'.$HTTP_POST_VARS["ville"].'">';
|
|
||||||
</script>
|
|
||||||
</tr>
|
|
||||||
|
|
||||||
<tr id="pays">
|
|
||||||
<script language="php">
|
|
||||||
print '<input type="text" name="pays" size="40" value="'.$HTTP_POST_VARS["pays"].'">';
|
|
||||||
</script>
|
|
||||||
</tr>
|
|
||||||
|
|
||||||
<tr id="email">
|
|
||||||
<script language="php">
|
|
||||||
print '<input type="text" name="email" size="50" value="'.$HTTP_POST_VARS["email"].'">';
|
|
||||||
</script>
|
|
||||||
</tr>
|
|
||||||
|
|
||||||
<tr id="public">
|
|
||||||
<select name="public">
|
|
||||||
<script language="php">
|
|
||||||
if ($HTTP_POST_VARS["public"] == "FALSE")
|
|
||||||
{
|
|
||||||
print '<option value="TRUE">oui/yes</option>';
|
|
||||||
print '<option value="FALSE" SELECTED>non/no</option>';
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
print '<option value="TRUE" SELECTED>oui/yes</option>';
|
|
||||||
print '<option value="FALSE">non/no</option>';
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
</select>
|
|
||||||
</tr>
|
|
||||||
|
|
||||||
<tr id="commentaire">
|
|
||||||
<script language="php">
|
|
||||||
print '<textarea name="commentaire" wrap="soft" cols="40" rows="6">'.$HTTP_POST_VARS["commentaire"].'</textarea>';
|
|
||||||
</script>
|
|
||||||
</tr>
|
|
||||||
|
|
||||||
<tr>
|
|
||||||
<td colspan="3" align="center" class="titre">
|
|
||||||
<input type="submit" value="Vérifier la promesse" /> (étape 1/3)
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
</table>
|
|
||||||
</form>
|
|
||||||
</div>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
<!--
|
|
||||||
Local Variables: ***
|
|
||||||
mode: xml ***
|
|
||||||
End: ***
|
|
||||||
-->
|
|
||||||
|
|
||||||
@ -1,38 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="iso-8859-1" ?>
|
|
||||||
<!DOCTYPE html
|
|
||||||
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
|
||||||
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"
|
|
||||||
>
|
|
||||||
<html lang="fr">
|
|
||||||
<head>
|
|
||||||
<!-- $Id$ -->
|
|
||||||
<title>Dons FSF France Projet EUCD.INFO</title>
|
|
||||||
<script language="php">
|
|
||||||
require("../../conf/conf.class.php");
|
|
||||||
require("../../lib/mysql.lib.php");
|
|
||||||
require("../../don.class.php");
|
|
||||||
</script>
|
|
||||||
</head>
|
|
||||||
|
|
||||||
<body>
|
|
||||||
<div class="main">
|
|
||||||
<h1>Liste des donateurs.</h1>
|
|
||||||
|
|
||||||
<p>
|
|
||||||
Nous tenons à remercier toutes les personnes qui ont fait un
|
|
||||||
don à l'initiative EUCD.INFO afin de soutenir la défense de la
|
|
||||||
copie privée. Voir aussi <a
|
|
||||||
href="depenses.php">la liste des dépenses</a>.
|
|
||||||
</p>
|
|
||||||
<script language="php">
|
|
||||||
require("donateurs_code.php");
|
|
||||||
</script>
|
|
||||||
</div>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
<!--
|
|
||||||
Local Variables: ***
|
|
||||||
mode: xml ***
|
|
||||||
End: ***
|
|
||||||
-->
|
|
||||||
|
|
||||||
@ -16,19 +16,12 @@
|
|||||||
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||||
*
|
*
|
||||||
* $Id$
|
* $Id$
|
||||||
* $Source$
|
|
||||||
*
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
require("./pre.inc.php");
|
||||||
|
require_once(DOL_DOCUMENT_ROOT ."/don.class.php");
|
||||||
|
|
||||||
$conf = new Conf();
|
$langs->load("donations");
|
||||||
$conf->db->type = $dolibarr_main_db_type;
|
|
||||||
$conf->db->host = $dolibarr_main_db_host;
|
|
||||||
$conf->db->name = $dolibarr_main_db_name;
|
|
||||||
$conf->db->user = $dolibarr_main_db_user;
|
|
||||||
$conf->db->pass = $dolibarr_main_db_pass;
|
|
||||||
|
|
||||||
$db = new DoliDb($conf->db->type,$conf->db->host,$conf->db->user,$conf->db->pass,$conf->db->name);
|
|
||||||
|
|
||||||
$sql = "SELECT ".$db->pdate("d.datedon")." as datedon, d.nom, d.prenom, d.amount, d.public, d.societe";
|
$sql = "SELECT ".$db->pdate("d.datedon")." as datedon, d.nom, d.prenom, d.amount, d.public, d.societe";
|
||||||
$sql .= " FROM ".MAIN_DB_PREFIX."don as d";
|
$sql .= " FROM ".MAIN_DB_PREFIX."don as d";
|
||||||
@ -37,13 +30,14 @@ $sql .= " WHERE d.fk_don_projet = 1 AND d.fk_statut in (2, 3) ORDER BY d.datedon
|
|||||||
if ( $db->query( $sql) )
|
if ( $db->query( $sql) )
|
||||||
{
|
{
|
||||||
$num = $db->num_rows();
|
$num = $db->num_rows();
|
||||||
|
|
||||||
if ($num)
|
if ($num)
|
||||||
{
|
{
|
||||||
|
|
||||||
print "<TABLE border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"4\">";
|
print "<TABLE border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"4\">";
|
||||||
|
|
||||||
print '<TR>';
|
print '<TR>';
|
||||||
print "<td>Prénom Nom / Société</td>";
|
print "<td>Pr<EFBFBD>nom Nom / Soci<63>t<EFBFBD></td>";
|
||||||
print "<td>Date</td>";
|
print "<td>Date</td>";
|
||||||
print "<td align=\"right\">Montant</TD>";
|
print "<td align=\"right\">Montant</TD>";
|
||||||
print "</TR>\n";
|
print "</TR>\n";
|
||||||
@ -73,10 +67,14 @@ if ( $db->query( $sql) )
|
|||||||
print "</table>";
|
print "</table>";
|
||||||
|
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
print "Aucun don publique";
|
||||||
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
print $db->error();
|
dolibarr_print_error($db);
|
||||||
}
|
}
|
||||||
|
|
||||||
$db->close();
|
$db->close();
|
||||||
|
|||||||
@ -1,131 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="iso-8859-1" ?>
|
|
||||||
<!DOCTYPE html
|
|
||||||
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
|
||||||
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"
|
|
||||||
>
|
|
||||||
<html lang="fr">
|
|
||||||
<head>
|
|
||||||
<!-- $Id$ -->
|
|
||||||
<title>Dons FSF France Projet EUCD.INFO</title>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<div class="main">
|
|
||||||
|
|
||||||
<h1>Erreur</h1>
|
|
||||||
|
|
||||||
|
|
||||||
<p>
|
|
||||||
Nous avons détecté les erreurs suivantes :
|
|
||||||
<ol>
|
|
||||||
<script language="php">
|
|
||||||
$don->print_error_list();
|
|
||||||
</script>
|
|
||||||
</ol>
|
|
||||||
</p>
|
|
||||||
|
|
||||||
<form action="index.php" method="post">
|
|
||||||
<script language="php">
|
|
||||||
require("code_valid.php");
|
|
||||||
</script>
|
|
||||||
<table id="formulaire">
|
|
||||||
<!-- la ligne projet est invisible -->
|
|
||||||
<tr id="projet">
|
|
||||||
|
|
||||||
</tr>
|
|
||||||
|
|
||||||
<tr id="date">
|
|
||||||
<script language="php">
|
|
||||||
$a = setlocale(LC_TIME, "fr_FR");
|
|
||||||
print strftime("%d %B %Y", time());
|
|
||||||
</script>
|
|
||||||
</tr>
|
|
||||||
|
|
||||||
<tr id="montant">
|
|
||||||
<script language="php">
|
|
||||||
print $don->amount;
|
|
||||||
</script>
|
|
||||||
</tr>
|
|
||||||
|
|
||||||
<tr id="prenom">
|
|
||||||
<script language="php">
|
|
||||||
print $don->prenom;
|
|
||||||
</script>
|
|
||||||
</tr>
|
|
||||||
|
|
||||||
<tr id="nom">
|
|
||||||
<script language="php">
|
|
||||||
print $don->nom;
|
|
||||||
</script>
|
|
||||||
</tr>
|
|
||||||
|
|
||||||
<tr id="societe">
|
|
||||||
<script language="php">
|
|
||||||
print $don->societe;
|
|
||||||
</script>
|
|
||||||
</tr>
|
|
||||||
|
|
||||||
<tr id="adresse">
|
|
||||||
<script language="php">
|
|
||||||
print nl2br(stripslashes($don->adresse));
|
|
||||||
</script>
|
|
||||||
</tr>
|
|
||||||
|
|
||||||
<tr id="cp">
|
|
||||||
<script language="php">
|
|
||||||
print $don->cp;
|
|
||||||
</script>
|
|
||||||
</tr>
|
|
||||||
|
|
||||||
<tr id="ville">
|
|
||||||
<script language="php">
|
|
||||||
print $don->ville;
|
|
||||||
</script>
|
|
||||||
</tr>
|
|
||||||
|
|
||||||
<tr id="pays">
|
|
||||||
<script language="php">
|
|
||||||
print $don->pays;
|
|
||||||
</script>
|
|
||||||
</tr>
|
|
||||||
|
|
||||||
<tr id="email">
|
|
||||||
<script language="php">
|
|
||||||
print $don->email;
|
|
||||||
</script>
|
|
||||||
</tr>
|
|
||||||
|
|
||||||
<tr id="public">
|
|
||||||
<script language="php">
|
|
||||||
$yn[0]="non/no";
|
|
||||||
$yn[1]="oui/yes";
|
|
||||||
print $yn[$don->public];
|
|
||||||
</script>
|
|
||||||
</tr>
|
|
||||||
|
|
||||||
<tr id="commentaire">
|
|
||||||
<script language="php">
|
|
||||||
print nl2br(stripslashes($don->commentaire));
|
|
||||||
</script>
|
|
||||||
</tr>
|
|
||||||
|
|
||||||
<tr>
|
|
||||||
<td colspan="3" align="center" class="titre">
|
|
||||||
<input type="submit" value="Corriger" /> (étape 1/3)
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
|
|
||||||
</table>
|
|
||||||
|
|
||||||
</form>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</body>
|
|
||||||
|
|
||||||
</html>
|
|
||||||
<!--
|
|
||||||
Local Variables: ***
|
|
||||||
mode: xml ***
|
|
||||||
End: ***
|
|
||||||
-->
|
|
||||||
|
|
||||||
@ -1,226 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="ISO-8859-1"?>
|
|
||||||
<!DOCTYPE xsl:stylesheet [<!ENTITY nbsp " ">]>
|
|
||||||
<xsl:stylesheet version="1.0"
|
|
||||||
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
|
|
||||||
<!-- Copyright (C) 2002 Rodolphe Quiedeville <rodolphe@quiedeville.org> -->
|
|
||||||
<!-- $Id$ -->
|
|
||||||
|
|
||||||
<xsl:template match="table[@id='formulaire']">
|
|
||||||
<table cellpadding="4" cellspacing="0">
|
|
||||||
<xsl:apply-templates select="@*|node()"/>
|
|
||||||
</table>
|
|
||||||
<p>
|
|
||||||
La FSF France s'engage à utiliser vos informations personnelles
|
|
||||||
exclusivement pour le traitement de votre don. Vous ne
|
|
||||||
receverez aucun email de la part de la FSF France autre que
|
|
||||||
pour la gestion de votre don.
|
|
||||||
</p>
|
|
||||||
|
|
||||||
</xsl:template>
|
|
||||||
|
|
||||||
|
|
||||||
<xsl:template match="/html[@lang='fr']/body/div[@class='main']/form/table/tr[@id='projet']">
|
|
||||||
<input type="hidden" name="projetid" value="1" />
|
|
||||||
</xsl:template>
|
|
||||||
|
|
||||||
<xsl:template match="/html[@lang='fr']/body/div[@class='main']/form/table/tr[@id='date']">
|
|
||||||
<tr>
|
|
||||||
<td class="titre">
|
|
||||||
Date
|
|
||||||
</td>
|
|
||||||
<td class="valeur">
|
|
||||||
<xsl:apply-templates select="@*|node()"/>
|
|
||||||
</td>
|
|
||||||
<td class="titre">
|
|
||||||
Date
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
</xsl:template>
|
|
||||||
|
|
||||||
<xsl:template match="table/tr[@id='nom']">
|
|
||||||
<tr>
|
|
||||||
<td class="titre">
|
|
||||||
Nom
|
|
||||||
</td>
|
|
||||||
<td class="valeur">
|
|
||||||
<xsl:apply-templates select="@*|node()"/>
|
|
||||||
</td>
|
|
||||||
<td class="titre">
|
|
||||||
Name
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
</xsl:template>
|
|
||||||
|
|
||||||
<xsl:template match="table/tr[@id='prenom']">
|
|
||||||
<tr>
|
|
||||||
<td class="titre">
|
|
||||||
Prénom
|
|
||||||
</td>
|
|
||||||
<td class="valeur">
|
|
||||||
<xsl:apply-templates select="@*|node()"/>
|
|
||||||
</td>
|
|
||||||
<td class="titre">
|
|
||||||
Firstname
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
</xsl:template>
|
|
||||||
|
|
||||||
<xsl:template match="table/tr[@id='societe']">
|
|
||||||
<tr>
|
|
||||||
<td class="titre">
|
|
||||||
Société
|
|
||||||
</td>
|
|
||||||
<td class="valeur">
|
|
||||||
<xsl:apply-templates select="@*|node()"/>
|
|
||||||
</td>
|
|
||||||
<td class="titre">
|
|
||||||
Company
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
</xsl:template>
|
|
||||||
|
|
||||||
|
|
||||||
<xsl:template match="/html[@lang='fr']/body/div[@class='main']/form/table/tr[@id='adresse']">
|
|
||||||
<tr>
|
|
||||||
<td class="titre">
|
|
||||||
Adresse
|
|
||||||
</td>
|
|
||||||
<td class="valeur">
|
|
||||||
<xsl:apply-templates select="@*|node()"/>
|
|
||||||
</td>
|
|
||||||
<td class="titre">
|
|
||||||
Address
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
</xsl:template>
|
|
||||||
|
|
||||||
<xsl:template match="/html[@lang='fr']/body/div[@class='main']/form/table/tr[@id='cp']">
|
|
||||||
<tr>
|
|
||||||
<td class="titre">
|
|
||||||
Code Postal
|
|
||||||
</td>
|
|
||||||
<td class="valeur">
|
|
||||||
<xsl:apply-templates select="@*|node()"/>
|
|
||||||
</td>
|
|
||||||
<td class="titre">
|
|
||||||
Postal code
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
</xsl:template>
|
|
||||||
|
|
||||||
|
|
||||||
<xsl:template match="table/tr[@id='ville']">
|
|
||||||
<tr>
|
|
||||||
<td class="titre">
|
|
||||||
Ville
|
|
||||||
</td>
|
|
||||||
<td class="valeur">
|
|
||||||
<xsl:apply-templates select="@*|node()"/>
|
|
||||||
</td>
|
|
||||||
<td class="titre">
|
|
||||||
Town
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
</xsl:template>
|
|
||||||
|
|
||||||
<xsl:template match="table/tr[@id='pays']">
|
|
||||||
<tr>
|
|
||||||
<td class="titre">
|
|
||||||
Pays
|
|
||||||
</td>
|
|
||||||
<td class="valeur">
|
|
||||||
<xsl:apply-templates select="@*|node()"/>
|
|
||||||
</td>
|
|
||||||
<td class="titre">
|
|
||||||
Country
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
</xsl:template>
|
|
||||||
|
|
||||||
<xsl:template match="table/tr[@id='email']">
|
|
||||||
<tr>
|
|
||||||
<td class="titre">
|
|
||||||
Email
|
|
||||||
</td>
|
|
||||||
<td class="valeur">
|
|
||||||
<xsl:apply-templates select="@*|node()"/>
|
|
||||||
</td>
|
|
||||||
<td class="titre">
|
|
||||||
Email
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
</xsl:template>
|
|
||||||
|
|
||||||
<xsl:template match="table/tr[@id='montant']">
|
|
||||||
<tr>
|
|
||||||
<td class="titre">
|
|
||||||
Montant
|
|
||||||
</td>
|
|
||||||
<td class="valeur">
|
|
||||||
<xsl:apply-templates select="@*|node()"/>,00 euros
|
|
||||||
</td>
|
|
||||||
<td class="titre">
|
|
||||||
Amount
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td class="titre"> </td>
|
|
||||||
<td class="valeur">
|
|
||||||
<hr />
|
|
||||||
</td>
|
|
||||||
<td class="titre"> </td>
|
|
||||||
</tr>
|
|
||||||
</xsl:template>
|
|
||||||
|
|
||||||
<xsl:template match="table/tr[@id='limitdate']">
|
|
||||||
<tr>
|
|
||||||
<td class="titre">
|
|
||||||
Echéance
|
|
||||||
</td>
|
|
||||||
<td class="valeur">
|
|
||||||
<xsl:apply-templates select="@*|node()"/>
|
|
||||||
</td>
|
|
||||||
<td class="titre">
|
|
||||||
Expiry
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
</xsl:template>
|
|
||||||
|
|
||||||
|
|
||||||
<xsl:template match="/html[@lang='fr']/body/div[@class='main']/form/table/tr[@id='public']">
|
|
||||||
<tr>
|
|
||||||
<td valign="top" class="titre">
|
|
||||||
Don public
|
|
||||||
</td>
|
|
||||||
<td class="valeur">
|
|
||||||
<xsl:apply-templates select="@*|node()"/>
|
|
||||||
<div class="commentaire">
|
|
||||||
Acceptez-vous que vos noms et prénoms ou le nom de votre société soient affichés dans la liste des <a href="donateurs.php">donateurs</a> ?<br />
|
|
||||||
Do you allow us to list your name, firstname or company name on the donations list ?
|
|
||||||
</div>
|
|
||||||
</td>
|
|
||||||
<td valign="top" class="titre">
|
|
||||||
Don public
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
</xsl:template>
|
|
||||||
|
|
||||||
<xsl:template match="/html[@lang='fr']/body/div[@class='main']/form/table/tr[@id='commentaire']">
|
|
||||||
<tr>
|
|
||||||
<td valign="top" class="titre">
|
|
||||||
Commentaire
|
|
||||||
</td>
|
|
||||||
<td valign="top" class="valeur">
|
|
||||||
<xsl:apply-templates select="@*|node()"/>
|
|
||||||
</td>
|
|
||||||
<td valign="top" class="titre">
|
|
||||||
Comment
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
</xsl:template>
|
|
||||||
<!--
|
|
||||||
Local Variables: ***
|
|
||||||
mode: xml ***
|
|
||||||
End: ***
|
|
||||||
-->
|
|
||||||
</xsl:stylesheet>
|
|
||||||
@ -1,99 +0,0 @@
|
|||||||
/* Copyright (C) 2002 Rodolphe Quiedeville <rodolphe@quiedeville.org>
|
|
||||||
Copyright (C) 2002 Loic Dachary <loic@gnu.org>
|
|
||||||
|
|
||||||
This program is free software; you can redistribute it and/or modify
|
|
||||||
it under the terms of the GNU General Public License as published by
|
|
||||||
the Free Software Foundation; either version 2 of the License, or
|
|
||||||
(at your option) any later version.
|
|
||||||
|
|
||||||
This program is distributed in the hope that it will be useful,
|
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
GNU General Public License for more details.
|
|
||||||
|
|
||||||
You should have received a copy of the GNU General Public License
|
|
||||||
along with this program; if not, write to the Free Software
|
|
||||||
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
||||||
|
|
||||||
$Id$
|
|
||||||
$Source$
|
|
||||||
*/
|
|
||||||
body
|
|
||||||
{
|
|
||||||
color: black;
|
|
||||||
font-family: arial, sans-serif;
|
|
||||||
background-color: white;
|
|
||||||
}
|
|
||||||
|
|
||||||
table.main
|
|
||||||
{
|
|
||||||
border: 0 solid;
|
|
||||||
}
|
|
||||||
|
|
||||||
table.formulaire {
|
|
||||||
border: 0 solid;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
h1 {
|
|
||||||
font-weight: bold;
|
|
||||||
font-size: 12pt;
|
|
||||||
}
|
|
||||||
|
|
||||||
ul { list-style: circle; }
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
span {
|
|
||||||
font-weight: bold;
|
|
||||||
font-size: 12pt;
|
|
||||||
}
|
|
||||||
|
|
||||||
h2 {
|
|
||||||
font-weight: bold;
|
|
||||||
font-size: 10pt;
|
|
||||||
}
|
|
||||||
a {
|
|
||||||
color: #002390;
|
|
||||||
font-weight: bold;
|
|
||||||
text-decoration: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
a.extern {
|
|
||||||
color: #002390;
|
|
||||||
font-weight: normal;
|
|
||||||
text-decoration: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
a.extern:hover {
|
|
||||||
color: #002390;
|
|
||||||
font-weight: normal;
|
|
||||||
text-decoration: underline;
|
|
||||||
}
|
|
||||||
|
|
||||||
address {
|
|
||||||
font-weight: bold;
|
|
||||||
font-size: 10pt;
|
|
||||||
}
|
|
||||||
|
|
||||||
p {
|
|
||||||
padding-left: 9px;
|
|
||||||
}
|
|
||||||
|
|
||||||
p.passe {
|
|
||||||
color: #c0C0C0;
|
|
||||||
}
|
|
||||||
|
|
||||||
td.titre{
|
|
||||||
font-weight: bold;
|
|
||||||
background-color: #d0d0d0;
|
|
||||||
}
|
|
||||||
|
|
||||||
td.valeur {
|
|
||||||
font-weight: normal;
|
|
||||||
background-color: #f1f1f1;
|
|
||||||
}
|
|
||||||
|
|
||||||
div.commentaire {
|
|
||||||
font-size: 10pt;
|
|
||||||
}
|
|
||||||
@ -1,65 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="ISO-8859-1"?>
|
|
||||||
<!DOCTYPE xsl:stylesheet [<!ENTITY nbsp " ">]>
|
|
||||||
|
|
||||||
<xsl:stylesheet version="1.0"
|
|
||||||
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
|
|
||||||
|
|
||||||
<xsl:output method="html"
|
|
||||||
encoding="ISO-8859-1"
|
|
||||||
doctype-public="-//W3C//DTD HTML 4.0 Transitional//EN"
|
|
||||||
doctype-system="http://www.w3.org/TR/REC-html40/loose.dtd"
|
|
||||||
indent="yes"
|
|
||||||
/>
|
|
||||||
|
|
||||||
<xsl:param name="fsffrance">http://france.fsfeurope.org</xsl:param>
|
|
||||||
<xsl:param name="fsfeurope">http://www.fsfeurope.org</xsl:param>
|
|
||||||
<xsl:param name="fsf">http://www.fsf.org</xsl:param>
|
|
||||||
<xsl:param name="gnu">http://www.gnu.org</xsl:param>
|
|
||||||
<xsl:param name="filebase">nofile.html</xsl:param>
|
|
||||||
<xsl:param name="path">nofile.html</xsl:param>
|
|
||||||
|
|
||||||
<xsl:template match="/">
|
|
||||||
<xsl:copy>
|
|
||||||
<xsl:apply-templates select="@*|node()"/>
|
|
||||||
</xsl:copy>
|
|
||||||
</xsl:template>
|
|
||||||
|
|
||||||
<xsl:template match="/html/body">
|
|
||||||
<body>
|
|
||||||
<xsl:comment>
|
|
||||||
|
|
||||||
DO NOT MODIFY THIS DOCUMENT. IT WAS GENERATED BY XSLT PROCESSING
|
|
||||||
AND YOUR MODIFICATIONS WILL BE LOST. THE SOURCE OF THE DOCUMENT
|
|
||||||
IS IN THE .xhtml FILE USE make all TO REGENERATE
|
|
||||||
|
|
||||||
</xsl:comment>
|
|
||||||
<xsl:apply-templates select="node()"/>
|
|
||||||
</body>
|
|
||||||
</xsl:template>
|
|
||||||
|
|
||||||
<xsl:template match="/html/head">
|
|
||||||
<head>
|
|
||||||
<link rel="stylesheet" type="text/css" href="http://eucd.info/eucd.css" />
|
|
||||||
<meta name="author" content="FSF France"></meta>
|
|
||||||
<meta name="keywords" content="logiciel libre projet eucd"></meta>
|
|
||||||
<meta name="description" content="Dons à la FSF France."></meta>
|
|
||||||
<title>Dons FSF France - Fond de secours EUCD.INFO</title>
|
|
||||||
|
|
||||||
<xsl:apply-templates select="@*|node()"/>
|
|
||||||
</head>
|
|
||||||
</xsl:template>
|
|
||||||
|
|
||||||
<xsl:include href="eucd-nav.fr.xsl" />
|
|
||||||
|
|
||||||
<xsl:template match="@*|node()" priority="-1">
|
|
||||||
<xsl:copy>
|
|
||||||
<xsl:apply-templates select="@*|node()"/>
|
|
||||||
</xsl:copy>
|
|
||||||
</xsl:template>
|
|
||||||
|
|
||||||
<!--
|
|
||||||
Local Variables: ***
|
|
||||||
mode: xml ***
|
|
||||||
End: ***
|
|
||||||
-->
|
|
||||||
</xsl:stylesheet>
|
|
||||||
@ -1,62 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="ISO-8859-1"?>
|
|
||||||
<!DOCTYPE xsl:stylesheet [<!ENTITY nbsp " ">]>
|
|
||||||
|
|
||||||
<xsl:stylesheet version="1.0"
|
|
||||||
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
|
|
||||||
|
|
||||||
<xsl:output method="html"
|
|
||||||
encoding="ISO-8859-1"
|
|
||||||
doctype-public="-//W3C//DTD HTML 4.0 Transitional//EN"
|
|
||||||
doctype-system="http://www.w3.org/TR/REC-html40/loose.dtd"
|
|
||||||
indent="yes"
|
|
||||||
/>
|
|
||||||
|
|
||||||
|
|
||||||
<xsl:param name="fsffrance">http://france.fsfeurope.org</xsl:param>
|
|
||||||
<xsl:param name="fsfeurope">http://www.fsfeurope.org</xsl:param>
|
|
||||||
<xsl:param name="fsf">http://www.fsf.org</xsl:param>
|
|
||||||
<xsl:param name="gnu">http://www.gnu.org</xsl:param>
|
|
||||||
<xsl:param name="filebase">nofile.html</xsl:param>
|
|
||||||
<xsl:param name="path">nofile.html</xsl:param>
|
|
||||||
|
|
||||||
<xsl:template match="/">
|
|
||||||
<xsl:copy>
|
|
||||||
<xsl:apply-templates select="@*|node()"/>
|
|
||||||
</xsl:copy>
|
|
||||||
</xsl:template>
|
|
||||||
|
|
||||||
<xsl:template match="/html/body">
|
|
||||||
<body>
|
|
||||||
<xsl:comment>
|
|
||||||
|
|
||||||
DO NOT MODIFY THIS DOCUMENT. IT WAS GENERATED BY XSLT PROCESSING
|
|
||||||
AND YOUR MODIFICATIONS WILL BE LOST. THE SOURCE OF THE DOCUMENT
|
|
||||||
IS IN THE .xhtml FILE USE make all TO REGENERATE
|
|
||||||
|
|
||||||
</xsl:comment>
|
|
||||||
<xsl:apply-templates select="node()"/>
|
|
||||||
</body>
|
|
||||||
</xsl:template>
|
|
||||||
|
|
||||||
<xsl:template match="/html/head">
|
|
||||||
<head>
|
|
||||||
<link rel="stylesheet" type="text/css" href="./eucd.css" />
|
|
||||||
<xsl:apply-templates select="@*|node()"/>
|
|
||||||
</head>
|
|
||||||
</xsl:template>
|
|
||||||
|
|
||||||
<xsl:include href="navigation.fr.xsl" />
|
|
||||||
<!-- <xsl:include href="navigation.en.xsl" /> -->
|
|
||||||
|
|
||||||
<xsl:template match="@*|node()" priority="-1">
|
|
||||||
<xsl:copy>
|
|
||||||
<xsl:apply-templates select="@*|node()"/>
|
|
||||||
</xsl:copy>
|
|
||||||
</xsl:template>
|
|
||||||
|
|
||||||
<!--
|
|
||||||
Local Variables: ***
|
|
||||||
mode: xml ***
|
|
||||||
End: ***
|
|
||||||
-->
|
|
||||||
</xsl:stylesheet>
|
|
||||||
@ -1,49 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="iso-8859-1" ?>
|
|
||||||
<!DOCTYPE html
|
|
||||||
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
|
||||||
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"
|
|
||||||
>
|
|
||||||
<html lang="fr">
|
|
||||||
<head>
|
|
||||||
<!-- $Id$ -->
|
|
||||||
<title>Dons FSF France Projet EUCD.INFO</title>
|
|
||||||
<script language="php">
|
|
||||||
require("../../conf/conf.class.php");
|
|
||||||
require("../../lib/mysql.lib.php");
|
|
||||||
require("../../don.class.php");
|
|
||||||
</script>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<div class="main">
|
|
||||||
|
|
||||||
<center>
|
|
||||||
<h1>Progression des dons</h1>
|
|
||||||
|
|
||||||
|
|
||||||
<p>
|
|
||||||
<img src="http://eucd.info/cacti/graph_image.php?graphid=58&rraid=1" height="261" width="597" alt="progression des dons" />
|
|
||||||
</p>
|
|
||||||
|
|
||||||
<p>
|
|
||||||
<img src="http://eucd.info/cacti/graph_image.php?graphid=58&rraid=2" height="261" width="597" alt="progression des dons"></img>
|
|
||||||
</p>
|
|
||||||
|
|
||||||
<p>
|
|
||||||
<img src="http://eucd.info/cacti/graph_image.php?graphid=58&rraid=3" height="261" width="597" alt="progression des dons"></img>
|
|
||||||
</p>
|
|
||||||
|
|
||||||
<p>
|
|
||||||
<img src="http://eucd.info/cacti/graph_image.php?graphid=58&rraid=4" height="261" width="597" alt="progression des dons"></img>
|
|
||||||
</p>
|
|
||||||
</center>
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
<!--
|
|
||||||
Local Variables: ***
|
|
||||||
mode: xml ***
|
|
||||||
End: ***
|
|
||||||
-->
|
|
||||||
|
|
||||||
@ -16,31 +16,13 @@
|
|||||||
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||||
*
|
*
|
||||||
* $Id$
|
* $Id$
|
||||||
* $Source$
|
*/
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
require("../../don.class.php");
|
require("./pre.inc.php");
|
||||||
require("../../conf/conf.class.php");
|
require_once(DOL_DOCUMENT_ROOT ."/don.class.php");
|
||||||
|
|
||||||
$conf = new Conf();
|
|
||||||
$conf->db->type = $dolibarr_main_db_type;
|
|
||||||
$conf->db->host = $dolibarr_main_db_host;
|
|
||||||
$conf->db->name = $dolibarr_main_db_name;
|
|
||||||
$conf->db->user = $dolibarr_main_db_user;
|
|
||||||
$conf->db->pass = $dolibarr_main_db_pass;
|
|
||||||
|
|
||||||
// Si type non défini (pour compatibilité avec ancienne install), on
|
|
||||||
// travail avec mysql
|
|
||||||
if (! $conf->db->type) { $conf->db->type = 'mysql'; }
|
|
||||||
|
|
||||||
require("../../lib/.$dolibarr_main_db_type.lib.php");
|
|
||||||
|
|
||||||
if ($conf->don->enabled)
|
if ($conf->don->enabled)
|
||||||
{
|
{
|
||||||
|
|
||||||
$db = new DoliDb($conf->db->type,$conf->db->host,$conf->db->user,$conf->db->pass,$conf->db->name);
|
|
||||||
|
|
||||||
$don = new Don($db);
|
$don = new Don($db);
|
||||||
|
|
||||||
$don->projetid = $_POST["projetid"];
|
$don->projetid = $_POST["projetid"];
|
||||||
@ -112,7 +94,7 @@ if ($conf->don->enabled)
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
print "Cette fonctionnalité n'est pas activé sur ce site";
|
print "Cette fonctionnalit<EFBFBD> n'est pas activ<69> sur ce site";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -1,47 +0,0 @@
|
|||||||
<?php
|
|
||||||
$subject = "EUCD.INFO promesse de don de $don->amount euros pour sauver la copie privée";
|
|
||||||
|
|
||||||
$body ="
|
|
||||||
EUCD.INFO vous remercie de la promesse de don que vous venez
|
|
||||||
d'enregistrer. Elle sera comptabilisée sur le thermomètre de
|
|
||||||
http://eucd.info/ après validation par un opérateur.
|
|
||||||
|
|
||||||
|
|
||||||
Prénom: $don->prenom
|
|
||||||
Nom: $don->nom
|
|
||||||
Montant: $don->amount
|
|
||||||
Au plus tard le: $date_limite
|
|
||||||
Informations sur les modes de paiement: http://eucd.info/donations.fr.php
|
|
||||||
|
|
||||||
L'initiative EUCD.INFO[1] a pour objet de préserver l'intérêt général
|
|
||||||
menacé par la transposition de la directive du 22 mai 2001
|
|
||||||
(EUCD)[2]. Pour y parvenir elle entend:
|
|
||||||
|
|
||||||
* Produire et proposer des solutions au législateur.
|
|
||||||
* Le promouvoir auprès des personnes responsables.
|
|
||||||
* Entrer dans le cercle de consultation.
|
|
||||||
|
|
||||||
Votre contribution financière servira principalement à rémunérer des
|
|
||||||
juristes dont les tâches seront d'analyser la situation et de proposer
|
|
||||||
des solutions permettant une transposition de la directive dans le
|
|
||||||
respect des droits des utilisateurs et du public.
|
|
||||||
|
|
||||||
Vous pourrez suivre les progrès de notre action grâce à l'échéancier
|
|
||||||
que nous remettons régulièrement à jour sur la page de garde du site
|
|
||||||
http://eucd.info/. N'hésitez pas à nous poser des questions par mail
|
|
||||||
si vous le souhaitez, à l'adresse contact@eucd.info.
|
|
||||||
|
|
||||||
L'association loi 1901 FSF France est d'intérêt général[3] et les dons
|
|
||||||
qui lui sont fait ouvrent droit à une réduction d'impôt. Vous pourrez
|
|
||||||
en bénéficier grâce au reçu[4] qui vous sera adressé dès reception du
|
|
||||||
montant promis de $don->amount euros.
|
|
||||||
|
|
||||||
Merci pour votre soutien.
|
|
||||||
|
|
||||||
[1] EUCD.INFO: http://eucd.info/
|
|
||||||
[2] Directive du 22 mai 2001:
|
|
||||||
http://europa.eu.int/smartapi/cgi/sga_doc?smartapi!celexapi!prod!CELEXnumdoc&lg=fr&numdoc=32001L0029&model=guichett
|
|
||||||
[3] FSF France et dons: http://france.fsfeurope.org/donations/
|
|
||||||
[4] Modèle de reçu: http://france.fsfeurope.org/donations/formulaire.fr.html
|
|
||||||
";
|
|
||||||
?>
|
|
||||||
@ -1,15 +0,0 @@
|
|||||||
<?php
|
|
||||||
$subject_moderator = "EUCD.INFO Nouvelle promesse de don de $don->amount euros";
|
|
||||||
|
|
||||||
$body_moderator ="
|
|
||||||
Une nouvelle promesse de don à valider :
|
|
||||||
|
|
||||||
|
|
||||||
Prénom: $don->prenom
|
|
||||||
Nom: $don->nom
|
|
||||||
Montant: $don->amount
|
|
||||||
|
|
||||||
https://fsffrance.org/dolibarr/compta/dons/
|
|
||||||
|
|
||||||
";
|
|
||||||
?>
|
|
||||||
@ -1,21 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="ISO-8859-1"?>
|
|
||||||
<!DOCTYPE xsl:stylesheet [<!ENTITY nbsp " ">]>
|
|
||||||
|
|
||||||
<xsl:stylesheet version="1.0"
|
|
||||||
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
|
|
||||||
|
|
||||||
|
|
||||||
<xsl:include href="fsfe-fr.xsl" />
|
|
||||||
<xsl:include href="navigation.fr.xsl" />
|
|
||||||
|
|
||||||
<!-- <xsl:include href="eucd.xsl" /> -->
|
|
||||||
<xsl:include href="eucd-nav.fr.xsl" />
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<!--
|
|
||||||
Local Variables: ***
|
|
||||||
mode: xml ***
|
|
||||||
End: ***
|
|
||||||
-->
|
|
||||||
</xsl:stylesheet>
|
|
||||||
@ -1,41 +0,0 @@
|
|||||||
Subject: EUCD.INFO promesse de don de #amount euros pour sauver la copie privée
|
|
||||||
|
|
||||||
EUCD.INFO vous remercie de la promesse de don que vous venez
|
|
||||||
d'enregistrer. Elle sera comptabilisée sur le thermomètre de
|
|
||||||
http://eucd.info/ après validation par un opérateur.
|
|
||||||
|
|
||||||
Prénom: #prénom
|
|
||||||
Nom: #nom
|
|
||||||
Montant: #amount
|
|
||||||
Au plus tard le: #(date + 3 semaine)
|
|
||||||
|
|
||||||
L'initiative EUCD.INFO[1] a pour objet de préserver l'intérêt public
|
|
||||||
menacé par la transposition de la directive du 22 mai 2001
|
|
||||||
(EUCD)[2]. Pour y parvenir elle entend:
|
|
||||||
|
|
||||||
* Produire et proposer un avant-projet de loi alternatif.
|
|
||||||
* Le promouvoir auprès des personnes responsables.
|
|
||||||
* Entrer dans le cercle de consultation.
|
|
||||||
|
|
||||||
Votre contribution financière servira principalement à payer des
|
|
||||||
juristes dont les tâches seront d'analyser la situation et de proposer
|
|
||||||
un avant-projet de loi transposant la directive dans le respect des
|
|
||||||
droits des utilisateurs et du public.
|
|
||||||
|
|
||||||
Vous pourrez suivre les progrès de notre action grâce à l'échéancier
|
|
||||||
que nous remettons régulièrement à jour sur la page de garde du site
|
|
||||||
http://eucd.info/. N'hésitez pas à nous poser des questions par mail
|
|
||||||
si vous le souhaitez, à l'adresse contact@eucd.info.
|
|
||||||
|
|
||||||
L'association loi 1901 FSF France est d'intérêt général[3] et les dons
|
|
||||||
qui lui sont fait ouvrent droit à une réduction d'impôt. Vous pourrez
|
|
||||||
en bénéficier grâce au reçu[4] qui vous sera adressé dès reception du
|
|
||||||
montant promis de #amount euros.
|
|
||||||
|
|
||||||
Merci pour votre soutien.
|
|
||||||
|
|
||||||
[1] EUCD.INFO: http://eucd.info/
|
|
||||||
[2] Directive du 22 mai 2001:
|
|
||||||
http://europa.eu.int/smartapi/cgi/sga_doc?smartapi!celexapi!prod!CELEXnumdoc&lg=fr&numdoc=32001L0029&model=guichett
|
|
||||||
[3] FSF France et dons: http://france.fsfeurope.org/donations/
|
|
||||||
[4] Modèle de reçu: http://france.fsfeurope.org/donations/formulaire.fr.html
|
|
||||||
@ -1,118 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="iso-8859-1" ?>
|
|
||||||
<!DOCTYPE html
|
|
||||||
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
|
||||||
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"
|
|
||||||
>
|
|
||||||
<html lang="fr">
|
|
||||||
<head>
|
|
||||||
<!-- $Id$ -->
|
|
||||||
<title>EUCD.INFO - Au secours de la copie privée - Promesse de don (3/3)</title>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<div class="main">
|
|
||||||
|
|
||||||
<h1>Votre promesse de don a été prise en compte et un courrier
|
|
||||||
électronique vient de vous être envoyé reprenant le contenu de
|
|
||||||
cette page.</h1>
|
|
||||||
|
|
||||||
<p>
|
|
||||||
EUCD.INFO vous remercie de la promesse de don que vous venez
|
|
||||||
d'enregistrer. Elle sera comptabilisée sur le thermomètre de
|
|
||||||
http://eucd.info/ après validation par un opérateur.
|
|
||||||
</p>
|
|
||||||
|
|
||||||
<table id="formulaire">
|
|
||||||
<tr id="prenom">
|
|
||||||
<script language="php">
|
|
||||||
print stripslashes($don->prenom);
|
|
||||||
</script>
|
|
||||||
</tr>
|
|
||||||
|
|
||||||
<tr id="nom">
|
|
||||||
<script language="php">
|
|
||||||
print stripslashes($don->nom);
|
|
||||||
</script>
|
|
||||||
</tr>
|
|
||||||
|
|
||||||
<tr id="societe">
|
|
||||||
<script language="php">
|
|
||||||
print stripslashes($don->societe);
|
|
||||||
</script>
|
|
||||||
</tr>
|
|
||||||
|
|
||||||
<tr id="montant">
|
|
||||||
<script language="php">
|
|
||||||
print stripslashes($don->amount);
|
|
||||||
</script>
|
|
||||||
</tr>
|
|
||||||
|
|
||||||
<tr id="limitdate">
|
|
||||||
<script language="php">
|
|
||||||
print $date_limite;
|
|
||||||
</script>
|
|
||||||
</tr>
|
|
||||||
</table>
|
|
||||||
|
|
||||||
|
|
||||||
<script language="php">
|
|
||||||
require("merci_code.php");
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<p>
|
|
||||||
L'initiative <a href="http://eucd.info/">EUCD.INFO</a> a
|
|
||||||
pour objet de préserver l'intérêt général menacé par la
|
|
||||||
transposition de la <a
|
|
||||||
href="http://europa.eu.int/smartapi/cgi/sga_doc?smartapi!celexapi!prod!CELEXnumdoc&lg=fr&numdoc=32001L0029&model=guichett">directive
|
|
||||||
du 22 mai 2001 (EUCD)</a>. Pour y parvenir elle entend:
|
|
||||||
</p>
|
|
||||||
|
|
||||||
<ul>
|
|
||||||
<li>Produire et proposer des solutions au législateur.</li>
|
|
||||||
<li>Le promouvoir auprès des personnes responsables.</li>
|
|
||||||
<li>Entrer dans le cercle de consultation.</li>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
<p>
|
|
||||||
Votre contribution financière servira principalement à
|
|
||||||
rémunérer des juristes dont les tâches seront d'analyser la
|
|
||||||
situation et de proposer des solutions permettant une
|
|
||||||
transposition de la directive dans le respect des droits des
|
|
||||||
utilisateurs et du public.
|
|
||||||
</p>
|
|
||||||
|
|
||||||
<p>
|
|
||||||
Vous pourrez suivre les progrès de notre action grâce à
|
|
||||||
l'échéancier que nous remettons régulièrement à jour sur la
|
|
||||||
page de garde du site <a
|
|
||||||
href="http://eucd.info/">http://eucd.info/</a>. N'hésitez pas
|
|
||||||
|
|
||||||
à nous poser des questions par mail si vous le souhaitez, à
|
|
||||||
l'adresse <a href="mailto:contact@eucd.info">contact@eucd.info</a>.
|
|
||||||
</p>
|
|
||||||
|
|
||||||
<p>
|
|
||||||
L'association loi 1901 FSF France est <a
|
|
||||||
href="http://france.fsfeurope.org/donations/howto.fr.html">d'intérêt
|
|
||||||
général</a> et les dons qui lui sont fait ouvrent droit à une
|
|
||||||
réduction d'impôt. Vous pourrez en bénéficier grâce au <a
|
|
||||||
href="http://france.fsfeurope.org/donations/formulaire.fr.html">reçu</a>
|
|
||||||
qui vous sera adressé dès reception du montant promis de
|
|
||||||
<script language="php">
|
|
||||||
print stripslashes($don->amount);
|
|
||||||
</script>
|
|
||||||
euros.
|
|
||||||
</p>
|
|
||||||
|
|
||||||
<p>
|
|
||||||
Merci pour votre soutien.
|
|
||||||
</p>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
<!--
|
|
||||||
Local Variables: ***
|
|
||||||
mode: xml ***
|
|
||||||
End: ***
|
|
||||||
-->
|
|
||||||
|
|
||||||
@ -1,57 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="ISO-8859-1"?>
|
|
||||||
<!DOCTYPE xsl:stylesheet [<!ENTITY nbsp " ">]>
|
|
||||||
<xsl:stylesheet version="1.0"
|
|
||||||
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
|
|
||||||
|
|
||||||
<xsl:template match="/html[@lang='fr']/body/div">
|
|
||||||
<!-- $Id$ -->
|
|
||||||
<!-- $Source$ -->
|
|
||||||
<!-- Top menu line -->
|
|
||||||
<table border="1" cellpadding="5" cellspacing="10" class="main">
|
|
||||||
<tr>
|
|
||||||
<td colspan="2">
|
|
||||||
<span><img src="http://eucd.info/eucd.info-logo-50x64.png" align="middle" /> <a href="http://eucd.info/">EUCD.INFO</a> - Au <a href="http://eucd.info/donations.fr.php">secours</a> de la copie privée<br/>For UK citizens: <a href="http://www.eucd.org/">www.eucd.org</a> is addressing the same problem your country.</span>
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
|
|
||||||
<tr>
|
|
||||||
<td valign="top">
|
|
||||||
<a href="http://eucd.info/index.fr.php">Accueil</a><br />
|
|
||||||
<a href="http://eucd.info/documents/documents.fr.php">Dossier</a><br />
|
|
||||||
<a href="http://eucd.info/revue.fr.php">Presse</a><br />
|
|
||||||
<br/>
|
|
||||||
<a href="http://eucd.info/donations.fr.php">Aider</a><br />
|
|
||||||
<a href="http://eucd.info/transparence.fr.php">Transparence</a><br />
|
|
||||||
<a href="http://wiki.ael.be/index.php/EUCD-Status">Situation</a><br />
|
|
||||||
<a href="http://mail.gnu.org/mailman/listinfo/fsfe-france">Discuter</a><br />
|
|
||||||
<a href="http://eucd.info/who.fr.php">Qui</a><br />
|
|
||||||
<a href="http://eucd.info/images.fr.php">Images</a><br />
|
|
||||||
<br />
|
|
||||||
<br />
|
|
||||||
<a href="https://dons.eucd.info/">Dons</a><br />
|
|
||||||
<script language="php">
|
|
||||||
if (file_exists ("therm.php"))
|
|
||||||
{
|
|
||||||
include("therm.php");
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
|
|
||||||
</td>
|
|
||||||
|
|
||||||
<td valign="top">
|
|
||||||
|
|
||||||
<xsl:apply-templates select="@*|node()"/>
|
|
||||||
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
|
|
||||||
</table>
|
|
||||||
<address><a href="mailto:contact@eucd.info">Contact:</a> EUCD.INFO c/o FSF France 8, rue de valois, 75001 Paris - Tel: 01 42 76 05 49 - Mail: <a href="mailto:contact@eucd.info">contact@eucd.info</a> - Web: <a href="http://eucd.info/">http://eucd.info/</a></address>
|
|
||||||
</xsl:template>
|
|
||||||
|
|
||||||
<!--
|
|
||||||
Local Variables: ***
|
|
||||||
mode: xml ***
|
|
||||||
End: ***
|
|
||||||
-->
|
|
||||||
</xsl:stylesheet>
|
|
||||||
52
htdocs/public/dons/pre.inc.php
Normal file
52
htdocs/public/dons/pre.inc.php
Normal file
@ -0,0 +1,52 @@
|
|||||||
|
<?php
|
||||||
|
/* Copyright (C) 2001-2002 Rodolphe Quiedeville <rodolphe@quiedeville.org>
|
||||||
|
*
|
||||||
|
* This program is free software; you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation; either version 2 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* This program is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with this program; if not, write to the Free Software
|
||||||
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||||
|
*
|
||||||
|
* $Id$
|
||||||
|
* $Source$
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
require("../../main.inc.php");
|
||||||
|
|
||||||
|
function llxHeader($head = "")
|
||||||
|
{
|
||||||
|
global $user, $conf, $langs;
|
||||||
|
|
||||||
|
top_menu($head);
|
||||||
|
|
||||||
|
$menu = new Menu();
|
||||||
|
|
||||||
|
$menu->add(DOL_URL_ROOT."/public/adherents/","Non adherent");
|
||||||
|
$menu->add_submenu("new.php","Inscription");
|
||||||
|
$menu->add(DOL_URL_ROOT."/public/adherents/","Adherents");
|
||||||
|
$menu->add_submenu("priv_edit.php","Edition de sa fiche");
|
||||||
|
$menu->add_submenu("priv_liste.php","Liste des adherents");
|
||||||
|
|
||||||
|
left_menu($menu->liste);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
function llxHeaderVierge($head = "")
|
||||||
|
{
|
||||||
|
global $user, $conf, $langs;
|
||||||
|
|
||||||
|
top_htmlhead('');
|
||||||
|
print '<body>';
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
?>
|
||||||
@ -16,7 +16,6 @@
|
|||||||
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||||
*
|
*
|
||||||
* $Id$
|
* $Id$
|
||||||
* $Source$
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
$thermlib = "../../lib/thermometer.php";
|
$thermlib = "../../lib/thermometer.php";
|
||||||
|
|||||||
@ -1,124 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="iso-8859-1" ?>
|
|
||||||
<!DOCTYPE html
|
|
||||||
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
|
||||||
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"
|
|
||||||
>
|
|
||||||
<html lang="fr">
|
|
||||||
<head>
|
|
||||||
<!-- $Id$ -->
|
|
||||||
<title>Dons FSF France Projet EUCD.INFO</title>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<div class="main">
|
|
||||||
|
|
||||||
<h1>Merci
|
|
||||||
de vérifier les information avant de valider votre promesse de don.</h1>
|
|
||||||
|
|
||||||
|
|
||||||
<form action="index.php" method="post">
|
|
||||||
<input type="hidden" name="action" value="valid" />
|
|
||||||
<script language="php">
|
|
||||||
require("code_valid.php");
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<table id="formulaire">
|
|
||||||
<!-- la ligne projet est invisible -->
|
|
||||||
<tr id="projet">
|
|
||||||
|
|
||||||
</tr>
|
|
||||||
|
|
||||||
<tr id="date">
|
|
||||||
<script language="php">
|
|
||||||
$a = setlocale(LC_TIME, "fr_FR");
|
|
||||||
print strftime("%d %B %Y", time());
|
|
||||||
</script>
|
|
||||||
</tr>
|
|
||||||
|
|
||||||
<tr id="montant">
|
|
||||||
<script language="php">
|
|
||||||
print number_format($don->amount, 0, '', ' ');
|
|
||||||
</script>
|
|
||||||
</tr>
|
|
||||||
|
|
||||||
<tr id="prenom">
|
|
||||||
<script language="php">
|
|
||||||
print stripslashes($don->prenom);
|
|
||||||
</script>
|
|
||||||
</tr>
|
|
||||||
|
|
||||||
<tr id="nom">
|
|
||||||
<script language="php">
|
|
||||||
print stripslashes($don->nom);
|
|
||||||
</script>
|
|
||||||
</tr>
|
|
||||||
|
|
||||||
<tr id="societe">
|
|
||||||
<script language="php">
|
|
||||||
print stripslashes($don->societe);
|
|
||||||
</script>
|
|
||||||
</tr>
|
|
||||||
|
|
||||||
<tr id="adresse">
|
|
||||||
<script language="php">
|
|
||||||
print nl2br(stripslashes($don->adresse));
|
|
||||||
</script>
|
|
||||||
</tr>
|
|
||||||
|
|
||||||
<tr id="cp">
|
|
||||||
<script language="php">
|
|
||||||
print stripslashes($don->cp);
|
|
||||||
</script>
|
|
||||||
</tr>
|
|
||||||
|
|
||||||
<tr id="ville">
|
|
||||||
<script language="php">
|
|
||||||
print stripslashes($don->ville);
|
|
||||||
</script>
|
|
||||||
</tr>
|
|
||||||
|
|
||||||
<tr id="pays">
|
|
||||||
<script language="php">
|
|
||||||
print stripslashes($don->pays);
|
|
||||||
</script>
|
|
||||||
</tr>
|
|
||||||
|
|
||||||
<tr id="email">
|
|
||||||
<script language="php">
|
|
||||||
print stripslashes($don->email);
|
|
||||||
</script>
|
|
||||||
</tr>
|
|
||||||
|
|
||||||
<tr id="public">
|
|
||||||
<script language="php">
|
|
||||||
$yn[0]="non";
|
|
||||||
$yn[1]="oui";
|
|
||||||
print $yn[$don->public];
|
|
||||||
</script>
|
|
||||||
</tr>
|
|
||||||
|
|
||||||
<tr id="commentaire">
|
|
||||||
<script language="php">
|
|
||||||
print nl2br(stripslashes($don->commentaire));
|
|
||||||
</script>
|
|
||||||
</tr>
|
|
||||||
|
|
||||||
<tr>
|
|
||||||
<td colspan="3" align="center" class="titre">
|
|
||||||
<!--
|
|
||||||
// Ne pas changer la value du bouton Valider, la valeur est utilisée dans index.php
|
|
||||||
-->
|
|
||||||
<input type="submit" name="valid" value="Valider" /> <input type="submit" value="Corriger" /> (étape 2/3)
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
|
|
||||||
</table>
|
|
||||||
</form>
|
|
||||||
</div>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
<!--
|
|
||||||
Local Variables: ***
|
|
||||||
mode: xml ***
|
|
||||||
End: ***
|
|
||||||
-->
|
|
||||||
|
|
||||||
@ -7,19 +7,11 @@
|
|||||||
<body>
|
<body>
|
||||||
<h1>Erreur</h1>
|
<h1>Erreur</h1>
|
||||||
|
|
||||||
<p>Le login ou le mot de passe que vous avez saisi est erroné, si vous souhaitez tester le site utiliser les login et mot de passe suivant :
|
<p>Le login ou le mot de passe que vous avez saisi est erroné, si vous souhaitez tester le site utiliser les login et mot de passe suivant :
|
||||||
<ul>
|
<ul>
|
||||||
<li>login : demo
|
<li>login : demo
|
||||||
<li>pass : demo
|
<li>pass : demo
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
<p>
|
|
||||||
Info sur <a href="http://rodolphe.quiedeville.org/projets/dolibarr/">http://rodolphe.quiedeville.org/projets/dolibarr/</a>
|
|
||||||
</p>
|
|
||||||
|
|
||||||
<hr>
|
|
||||||
<address><a href="mailto:rodo@lager.lolix.net"></a></address>
|
|
||||||
<!-- Created: Mon Jun 24 13:51:43 CEST 2002 -->
|
|
||||||
<!-- hhmts start -->Last modified: Fri Jun 6 19:38:42 CEST 2003 <!-- hhmts end -->
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@ -8,7 +8,7 @@
|
|||||||
<h2>Erreur 404</h2>
|
<h2>Erreur 404</h2>
|
||||||
|
|
||||||
<br>
|
<br>
|
||||||
La page demandée n'existe pas :
|
La page demandée n'existe pas :
|
||||||
|
|
||||||
<br>
|
<br>
|
||||||
Vous venez de <?php print $_SERVER["HTTP_REFERER"] ?>.
|
Vous venez de <?php print $_SERVER["HTTP_REFERER"] ?>.
|
||||||
|
|||||||
@ -7,7 +7,5 @@
|
|||||||
<body>
|
<body>
|
||||||
<h1>Section Public</h1>
|
<h1>Section Public</h1>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user