dolibarr/htdocs/about.php

121 lines
3.2 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";
2006-06-23 22:18:18 +02:00
print $langs->trans("DolibarrLicense").': GNU/GPL<br>';
2005-04-11 21:09:37 +02:00
2006-06-23 22:18:18 +02:00
print "<br>\n";
2005-04-11 21:09:37 +02:00
2006-06-23 22:18:18 +02:00
print $langs->trans("DolibarrProjectLeader").':';
2005-04-11 21:09:37 +02:00
print '<ul>';
print '<li><a target="blank" href="http://rodolphe.quiedeville.org">Rodolphe Qui<75>deville</a>';
print '</ul>';
2006-06-23 22:18:18 +02:00
print "<br>\n";
print $langs->trans("OtherDeveloppers").':';
2005-04-11 21:09:37 +02:00
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>';
2006-06-23 22:18:18 +02:00
print "<br>\n";
2005-04-11 21:09:37 +02:00
2006-06-23 22:18:18 +02:00
print $langs->trans("Informations").':';
2005-04-11 21:09:37 +02:00
print '<ul>';
print '<li>';
2006-06-23 22:18:18 +02:00
if (eregi('^fr_',$langs->getDefaultLang()))
{
print '<a target="blank" href="http://www.dolibarr.com/">'.$langs->trans("OfficialWebSite").'</a>';
}
else
{
print '<a target="blank" href="http://www.dolibarr.org/">'.$langs->trans("OfficialWebSite").'</a>';
}
2005-04-11 21:09:37 +02:00
print '<li>';
2006-06-23 22:18:18 +02:00
print '<a target="blank" href="http://freshmeat.net/projects/dolibarr/">Freshmeat</a>';
print '</li>';
2005-04-11 21:09:37 +02:00
2006-06-23 22:18:18 +02:00
if (eregi('^fr_',$langs->getDefaultLang()))
{
2005-04-11 21:09:37 +02:00
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>';
2006-06-23 22:18:18 +02:00
}
2005-04-11 21:09:37 +02:00
print '</ul>';
2006-06-23 22:18:18 +02:00
if (eregi('^fr_',$langs->getDefaultLang()))
{
2005-04-11 21:09:37 +02:00
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>';
2006-06-23 22:18:18 +02:00
}
2005-04-11 21:09:37 +02:00
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
?>