Subversion Repositories eFlore/Archives.eflore-consultation-v2

Rev

Rev 184 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 184 Rev 185
Line 19... Line 19...
19
// |                                                                                                      |
19
// |                                                                                                      |
20
// | You should have received a copy of the GNU General Public License                                    |
20
// | You should have received a copy of the GNU General Public License                                    |
21
// | along with Foobar; if not, write to the Free Software                                                |
21
// | along with Foobar; if not, write to the Free Software                                                |
22
// | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA                            |
22
// | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA                            |
23
// +------------------------------------------------------------------------------------------------------+
23
// +------------------------------------------------------------------------------------------------------+
24
// CVS : $Id: fiche_synthese_xhtml.php,v 1.11 2005-11-09 09:14:42 jp_milcent Exp $
24
// CVS : $Id: fiche_synthese_xhtml.php,v 1.12 2005-11-09 09:17:14 jp_milcent Exp $
25
/**
25
/**
26
* Vue affichant la fiche de synthèse d'un nom dans le projet donné
26
* Vue affichant la fiche de synthèse d'un nom dans le projet donné
27
*
27
*
28
* Permet de retourner le html correspondant à la fiche de synthèse d'un nom
28
* Permet de retourner le html correspondant à la fiche de synthèse d'un nom
29
* dans un projet donné.
29
* dans un projet donné.
Line 33... Line 33...
33
//Auteur original :
33
//Auteur original :
34
*@author        Frédéric LEGENS <flegens@free.fr>
34
*@author        Frédéric LEGENS <flegens@free.fr>
35
//Autres auteurs :
35
//Autres auteurs :
36
*@author        Jean-Pascal MILCENT <jpm@tela-botanica.org>
36
*@author        Jean-Pascal MILCENT <jpm@tela-botanica.org>
37
*@copyright     Tela-Botanica 2000-2004
37
*@copyright     Tela-Botanica 2000-2004
38
*@version       $Revision: 1.11 $ $Date: 2005-11-09 09:14:42 $
38
*@version       $Revision: 1.12 $ $Date: 2005-11-09 09:17:14 $
39
// +------------------------------------------------------------------------------------------------------+
39
// +------------------------------------------------------------------------------------------------------+
40
*/
40
*/
Line 41... Line 41...
41
 
41
 
42
// +------------------------------------------------------------------------------------------------------+
42
// +------------------------------------------------------------------------------------------------------+
Line 227... Line 227...
227
        if (empty($nom_verna_lignes)) {
227
        if (empty($nom_verna_lignes)) {
228
            $retour .= '<h2>'.'Noms vernaculaires :'.'</h2>'."\n";
228
            $retour .= '<h2>'.'Noms vernaculaires :'.'</h2>'."\n";
229
            $retour .= '<p>'.'Aucun nom vernaculaire pour ce taxon dans ce référentiel.'.'</p>'."\n";
229
            $retour .= '<p>'.'Aucun nom vernaculaire pour ce taxon dans ce référentiel.'.'</p>'."\n";
230
        } else {
230
        } else {
231
            $retour .= '<h2>'.'Noms vernaculaires : '.'</h2>'."\n";
231
            $retour .= '<h2>'.'Noms vernaculaires : '.'</h2>'."\n";
232
            $retour .= '<table id="tableau_nom_verna">'."\n";
232
            $retour .= '<table id="tableau_nom_verna" summary="Tableau contenant la liste des noms vernaculaires du taxon">'."\n";
233
            $retour .= '  <thead>'."\n";
233
            $retour .= '  <thead>'."\n";
234
            $retour .= '    <tr><th>'.'Langue'.'</th><th>'.'Pays'.'</th><th>'.'Nom'.'</th><th>'.'Emploi'.'</th><th>'.'Genre et nombre'.'</th></tr>'."\n";
234
            $retour .= '    <tr><th>'.'Langue'.'</th><th>'.'Pays'.'</th><th>'.'Nom'.'</th><th>'.'Emploi'.'</th><th>'.'Genre et nombre'.'</th></tr>'."\n";
235
            $retour .= '  </thead>'."\n";
235
            $retour .= '  </thead>'."\n";
236
            $retour .= '  <tbody>'."\n";
236
            $retour .= '  <tbody>'."\n";
237
            $retour .= $nom_verna_lignes;
237
            $retour .= $nom_verna_lignes;
Line 461... Line 461...
461
 
461
 
462
 
462
 
463
/* +--Fin du code ----------------------------------------------------------------------------------------+
463
/* +--Fin du code ----------------------------------------------------------------------------------------+
-
 
464
*
-
 
465
* $Log: not supported by cvs2svn $
-
 
466
* Revision 1.11  2005/11/09 09:14:42  jp_milcent
464
*
467
* Correction erreur HTML.
465
* $Log: not supported by cvs2svn $
468
*
466
* Revision 1.10  2005/08/26 13:43:24  jp_milcent
469
* Revision 1.10  2005/08/26 13:43:24  jp_milcent
467
* Changement du terme "Projet" en "Référentiel".
470
* Changement du terme "Projet" en "Référentiel".
468
* Ajout de l'affichage du numéro taxonomique.
471
* Ajout de l'affichage du numéro taxonomique.