dolibarr/htdocs/about.php

109 lines
3.1 KiB
PHP
Raw Normal View History

2004-10-20 23:06:45 +02:00
<?php
/* Copyright (C) 2003-2004 Rodolphe Quiedeville <rodolphe@quiedeville.org>
2005-04-11 21:09:37 +02:00
* Copyright (C) 2003 Jean-Louis Bergamo <jlb@j1b.org>
* Copyright (C) 2004-2005 Laurent Destailleur <eldy@users.sourceforge.net>
2003-07-24 13:50:45 +02:00
*
* 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$
*
*/
2004-12-12 04:53:31 +01:00
2005-04-11 21:09:37 +02:00
/**
2004-12-12 04:53:31 +01:00
\file htdocs/about.php
\brief Fichier page a propos
\version $Revision$
*/
2003-09-11 22:18:51 +02:00
require("./pre.inc.php");
2003-07-24 13:50:45 +02:00
2005-04-11 21:09:37 +02:00
2003-07-24 13:50:45 +02:00
llxHeader();
2005-04-11 21:09:37 +02:00
2005-07-02 15:19:18 +02:00
print_titre("Dolibarr");
print "<br>\n";
2005-04-11 21:09:37 +02:00
print $langs->trans("Dolibarr est publi<6C> sous licence GNU/GPL");
print '<p>';
print $langs->trans("Dolibarr est d<>velopp<70> par :");
print '<ul>';
print '<li><a target="blank" href="http://rodolphe.quiedeville.org">Rodolphe Qui<75>deville</a>';
print '</ul>';
print $langs->trans("D'autres d<>veloppeurs y contribuent activement :");
print '<ul>';
print '<li><a target="blank" href="http://www.ipsyn.net">Jean-Louis Bergamo</a></li>';
print '<li><a target="blank" href="http://www.destailleur.fr/">Laurent Destailleur</a></li>';
print '<li>Eric Seigne</li>';
print '<li>Benoit Mortier</li>';
print '</ul>';
print '<p>';
print $langs->trans("Informations").' :';
print '<ul>';
print '<li>';
print '<a target="blank" href="http://www.dolibarr.com/">Site officiel</a>';
print '<li>';
print '<a target="blank" href="http://freshmeat.net/projects/dolibarr/">Page sur Freshmeat</a>';
print '<li>';
2005-04-17 21:09:19 +02:00
print 'Les t<>ches en cours de r<>alisation sur Dolibarr sont consultables dans le <a target="blank" href="http://savannah.nongnu.org/task/?group=dolibarr">gestionnaire de projet</a> sur Savannah.';
2005-04-11 21:09:37 +02:00
print '</li>';
print '<li>';
2005-04-17 21:09:19 +02:00
print 'Si vous trouvez un bogue dans Dolibarr, vous pouvez en informer les d<>veloppeurs sur le <a target="blank" href="http://savannah.nongnu.org/bugs/?group=dolibarr">syst<73>me de gestion des bogues</a> de Savannah.';
2005-04-11 21:09:37 +02:00
print '</li>';
print '<li>';
print 'Le code source de Dolibarr est consultable par l\'<a target="blank" href="http://savannah.nongnu.org/cgi-bin/viewcvs/dolibarr/dolibarr/">interface web du cvs</a>.';
print '</li>';
print '</ul>';
// \todo Faut-il inviter l'utilisateur <20> aller sur le site en fran<61>ais si sa langue n'est pas le fran<61>ais ?
//if (eregi('^fr_',$conf->langage)
//{
print '<p>';
print 'Vente / Support';
print '<ul>';
print '<li>';
print 'Contactez Rodolphe Qui<75>deville sur <a target="blank" href="http://www.dolibarr.com/">www.dolibarr.com</a>';
print '</li>';
print '</ul>';
//}
2003-08-11 20:23:35 +02:00
llxFooter('$Date$ - $Revision$');
2005-04-11 21:09:37 +02:00
2003-07-24 13:50:45 +02:00
?>