Subversion Repositories Applications.papyrus

Rev

Rev 308 | Rev 315 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 308 Rev 309
1
<?php
1
<?php
2
/*vim: set expandtab tabstop=4 shiftwidth=4: */ 
2
/*vim: set expandtab tabstop=4 shiftwidth=4: */ 
3
// +------------------------------------------------------------------------------------------------------+
3
// +------------------------------------------------------------------------------------------------------+
4
// | PHP version 4.1                                                                                      |
4
// | PHP version 4.1                                                                                      |
5
// +------------------------------------------------------------------------------------------------------+
5
// +------------------------------------------------------------------------------------------------------+
6
// | Copyright (C) 2004 Tela Botanica (accueil@tela-botanica.org)                                         |
6
// | Copyright (C) 2004 Tela Botanica (accueil@tela-botanica.org)                                         |
7
// +------------------------------------------------------------------------------------------------------+
7
// +------------------------------------------------------------------------------------------------------+
8
// | This library is free software; you can redistribute it and/or                                        |
8
// | This library is free software; you can redistribute it and/or                                        |
9
// | modify it under the terms of the GNU Lesser General Public                                           |
9
// | modify it under the terms of the GNU Lesser General Public                                           |
10
// | License as published by the Free Software Foundation; either                                         |
10
// | License as published by the Free Software Foundation; either                                         |
11
// | version 2.1 of the License, or (at your option) any later version.                                   |
11
// | version 2.1 of the License, or (at your option) any later version.                                   |
12
// |                                                                                                      |
12
// |                                                                                                      |
13
// | This library is distributed in the hope that it will be useful,                                      |
13
// | This library is distributed in the hope that it will be useful,                                      |
14
// | but WITHOUT ANY WARRANTY; without even the implied warranty of                                       |
14
// | but WITHOUT ANY WARRANTY; without even the implied warranty of                                       |
15
// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU                                    |
15
// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU                                    |
16
// | Lesser General Public License for more details.                                                      |
16
// | Lesser General Public License for more details.                                                      |
17
// |                                                                                                      |
17
// |                                                                                                      |
18
// | You should have received a copy of the GNU Lesser General Public                                     |
18
// | You should have received a copy of the GNU Lesser General Public                                     |
19
// | License along with this library; if not, write to the Free Software                                  |
19
// | License along with this library; if not, write to the Free Software                                  |
20
// | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA                            |
20
// | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA                            |
21
// +------------------------------------------------------------------------------------------------------+
21
// +------------------------------------------------------------------------------------------------------+
22
// CVS : $Id: identification.php,v 1.10 2005-03-15 14:47:14 jpm Exp $
22
// CVS : $Id: identification.php,v 1.11 2005-03-17 15:52:17 jpm Exp $
23
/**
23
/**
24
* Applette : identification
24
* Applette : identification
25
*
25
*
26
* Génère un formulaire les champs nécessaires pour s'identifier.
26
* Génère un formulaire les champs nécessaires pour s'identifier.
27
* Nécessite :
27
* Nécessite :
28
* - Variable globale de Génésia.
28
* - Variable globale de Génésia.
29
* - Pear Auth
29
* - Pear Auth
30
* - Pear Net_URL
30
* - Pear Net_URL
31
*
31
*
32
* A faire : remplacer le formulaire par un QuickForm
32
* A faire : remplacer le formulaire par un QuickForm
33
*
33
*
34
*@package Applette
34
*@package Applette
35
*@subpackage Identification
35
*@subpackage Identification
36
//Auteur original :
36
//Auteur original :
37
*@author        Jean-Pascal MILCENT <jpm@tela-botanica.org>
37
*@author        Jean-Pascal MILCENT <jpm@tela-botanica.org>
38
//Autres auteurs :
38
//Autres auteurs :
39
*@author        Aucun
39
*@author        Aucun
40
*@copyright     Tela-Botanica 2000-2004
40
*@copyright     Tela-Botanica 2000-2004
41
*@version       $Revision: 1.10 $ $Date: 2005-03-15 14:47:14 $
41
*@version       $Revision: 1.11 $ $Date: 2005-03-17 15:52:17 $
42
// +------------------------------------------------------------------------------------------------------+
42
// +------------------------------------------------------------------------------------------------------+
43
*/
43
*/
44
 
44
 
45
// +------------------------------------------------------------------------------------------------------+
45
// +------------------------------------------------------------------------------------------------------+
46
// |                                            ENTÊTE du PROGRAMME                                       |
46
// |                                            ENTÊTE du PROGRAMME                                       |
47
// +------------------------------------------------------------------------------------------------------+
47
// +------------------------------------------------------------------------------------------------------+
48
$_GEN_commun['info_applette_nom_fonction'] = 'afficherFormIdentification';
48
$_GEN_commun['info_applette_nom_fonction'] = 'afficherFormIdentification';
49
$_GEN_commun['info_applette_balise'] = 'IDENTIFICATION';
49
$_GEN_commun['info_applette_balise'] = 'IDENTIFICATION';
50
 
50
 
51
/** Inclusion du fichier de configuration de cette applette.*/
51
/** Inclusion du fichier de configuration de cette applette.*/
52
require_once GEN_CHEMIN_APPLETTE.'identification/configuration/iden_config.inc.php';
52
require_once GEN_CHEMIN_APPLETTE.'identification/configuration/iden_config.inc.php';
53
 
53
 
54
// Inclusion des fichiers de traduction de l'applette.
54
// Inclusion des fichiers de traduction de l'applette.
55
if (file_exists(IDEN_CHEMIN_LANGUE.'iden_langue_'.$_GEN_commun['i18n'].'.inc.php')) {
55
if (file_exists(IDEN_CHEMIN_LANGUE.'iden_langue_'.$_GEN_commun['i18n'].'.inc.php')) {
56
    /** Inclusion du fichier de traduction suite à la transaction avec le navigateur.*/
56
    /** Inclusion du fichier de traduction suite à la transaction avec le navigateur.*/
57
    require_once IDEN_CHEMIN_LANGUE.'iden_langue_'.$_GEN_commun['i18n'].'.inc.php';
57
    require_once IDEN_CHEMIN_LANGUE.'iden_langue_'.$_GEN_commun['i18n'].'.inc.php';
58
} else {
58
} else {
59
    /** Inclusion du fichier de traduction par défaut.*/
59
    /** Inclusion du fichier de traduction par défaut.*/
60
    require_once IDEN_CHEMIN_LANGUE.'iden_langue_'.IDEN_I18N_DEFAUT.'.inc.php';
60
    require_once IDEN_CHEMIN_LANGUE.'iden_langue_'.IDEN_I18N_DEFAUT.'.inc.php';
61
}
61
}
62
// +------------------------------------------------------------------------------------------------------+
62
// +------------------------------------------------------------------------------------------------------+
63
// |                                            CORPS du PROGRAMME                                        |
63
// |                                            CORPS du PROGRAMME                                        |
64
// +------------------------------------------------------------------------------------------------------+
64
// +------------------------------------------------------------------------------------------------------+
65
 
65
 
66
// Si le site utilise une authentification.
66
// Si le site utilise une authentification.
67
if ($_GEN_commun['info_auth']->gsa_ce_type_auth == 1) {
67
if ($_GEN_commun['info_auth']->gsa_ce_type_auth == 1) {
68
    // Si un formulaire nous renvoie en POST une variable "deconnexion", nous délogons l'utilisateur.
68
    // Si un formulaire nous renvoie en POST une variable "deconnexion", nous délogons l'utilisateur.
69
    if (isset($_REQUEST['deconnexion']) || isset($_REQUEST['logout'])) {
69
    if (isset($_REQUEST['deconnexion']) || isset($_REQUEST['logout'])) {
70
        $_GEN_commun['pear_auth']->logout();
70
        $_GEN_commun['pear_auth']->logout();
71
        // Le test suivant vérifie si une authentification SPIP est en cour, vois pap_initialise_auth.inc.php
71
        // Le test suivant vérifie si une authentification SPIP est en cour, vois pap_initialise_auth.inc.php
72
        if (isset ($chemin_spip) && isset ($coauth) && $coauth == $auth_courante['gsab_id_auth_bdd']) {
72
        if (isset ($chemin_spip) && isset ($coauth) && $coauth == $auth_courante['gsab_id_auth_bdd']) {
73
            // On place un cookie avec une duré dépassée
73
            // On place un cookie avec une duré dépassée
74
            setcookie("spip_session", $id_session, time() - 3600*24, "/$chemin_cookie_spip/") ;
74
            setcookie("spip_session", $id_session, time() - 3600*24, "/$chemin_cookie_spip/") ;
75
            setcookie("spip_admin", "@".$login, time() -3600*24, "/$chemin_cookie_spip/") ;
75
            setcookie("spip_admin", "@".$login, time() -3600*24, "/$chemin_cookie_spip/") ;
76
    
76
    
77
            $dirname = $GLOBALS['flag_ecrire'] ? "data/" : "ecrire/data/";
77
            $dirname = $GLOBALS['flag_ecrire'] ? "data/" : "ecrire/data/";
78
            $dirname = $chemin_spip."/".$dirname ;
78
            $dirname = $chemin_spip."/".$dirname ;
79
             // ne pas se zapper soi-meme
79
             // ne pas se zapper soi-meme
80
            if ($s = $GLOBALS['spip_session'])
80
            if ($s = $GLOBALS['spip_session'])
81
                   $fichier_session = fichier_session($s, lire_meta('alea_ephemere'));
81
                   $fichier_session = fichier_session($s, lire_meta('alea_ephemere'));
82
                $fichier_session = $chemin_spip."/ecrire/".$fichier_session ;
82
                $fichier_session = $chemin_spip."/ecrire/".$fichier_session ;
83
            $dir = opendir($dirname);
83
            $dir = opendir($dirname);
84
            $t = time();
84
            $t = time();
85
            while(($item = readdir($dir)) != '') {
85
            while(($item = readdir($dir)) != '') {
86
                $chemin = "$dirname$item";
86
                $chemin = "$dirname$item";
87
                if (ereg("^session_([0-9]+_)?([a-z0-9]+)\.php3$", $item, $regs)) {
87
                if (ereg("^session_([0-9]+_)?([a-z0-9]+)\.php3$", $item, $regs)) {
88
                // Si c'est une vieille session, on jette
88
                // Si c'est une vieille session, on jette
89
                    if (($t - filemtime($chemin)) > 48 * 3600) unlink($chemin);
89
                    if (($t - filemtime($chemin)) > 48 * 3600) unlink($chemin);
90
                    // sinon voir si c'est une session du meme auteur
90
                    // sinon voir si c'est une session du meme auteur
91
                        else if ($regs[1] == $id_auteur.'_') {
91
                        else if ($regs[1] == $id_auteur.'_') {
92
                            $zap_num ++;
92
                            $zap_num ++;
93
                    if ($zap) unlink($chemin);
93
                    if ($zap) unlink($chemin);
94
                    }
94
                    }
95
                }
95
                }
96
            }
96
            }
97
        }
97
        }
98
        $_GEN_commun['pear_auth']->start();
98
        $_GEN_commun['pear_auth']->start();
99
    }
99
    }
100
    // Si un formulaire nous renvoie en POST une variable "connexion", nous logons l'utilisateur.
100
    // Si un formulaire nous renvoie en POST une variable "connexion", nous logons l'utilisateur.
101
    if (isset($_REQUEST['connexion'])) {
101
    if (isset($_REQUEST['connexion'])) {
102
        $_GEN_commun['pear_auth']->login();
102
        $_GEN_commun['pear_auth']->login();
103
        $_SESSION['username'] = $username;
103
        $_SESSION['username'] = $username;
104
    }
104
    }
105
}
105
}
106
 
106
 
107
// +------------------------------------------------------------------------------------------------------+
107
// +------------------------------------------------------------------------------------------------------+
108
// |                                           LISTE de FONCTIONS                                         |
108
// |                                           LISTE de FONCTIONS                                         |
109
// +------------------------------------------------------------------------------------------------------+
109
// +------------------------------------------------------------------------------------------------------+
110
 
110
 
111
/** Fonction afficherFormIdentification() - Retourne une formulaire pour s'identifier.
111
/** Fonction afficherFormIdentification() - Retourne une formulaire pour s'identifier.
112
*
112
*
113
* Retourne un formulaire d'identificatin ou de déconnexion suivant que l'utilisateur est
113
* Retourne un formulaire d'identificatin ou de déconnexion suivant que l'utilisateur est
114
* identifié ou pas.
114
* identifié ou pas.
115
*
115
*
116
* @param  array  tableau d'éventuel arguments présent dans la balise transmis à la fonction. 
116
* @param  array  tableau d'éventuel arguments présent dans la balise transmis à la fonction. 
117
* @param  array  tableau global de Papyrus.
117
* @param  array  tableau global de Papyrus.
118
* @return string formulaire de connexion ou de déconnexion.
118
* @return string formulaire de connexion ou de déconnexion.
119
*/
119
*/
120
function afficherFormIdentification($tab_arguments, &$_GEN_commun)
120
function afficherFormIdentification($tab_arguments, &$_GEN_commun)
121
{
121
{
122
    // Initialisation de variable.
122
    // Initialisation de variable.
123
    $objet_pear_auth =& $GLOBALS['_GEN_commun']['pear_auth'];
123
    $objet_pear_auth =& $GLOBALS['_GEN_commun']['pear_auth'];
124
    $objet_pear_db =& $GLOBALS['_GEN_commun']['pear_db'];
124
    $objet_pear_db =& $GLOBALS['_GEN_commun']['pear_db'];
125
    $url = $GLOBALS['_GEN_commun']['url']->getURL();
125
    $url = $GLOBALS['_GEN_commun']['url']->getURL();
126
    // Récupération des valeurs pour le login et le mot de passe
126
    // Récupération des valeurs pour le login et le mot de passe
127
    $mot_de_passe = (! isset($_POST['password']))    ? '' : $_POST['password'];
127
    $mot_de_passe = (! isset($_POST['password']))    ? '' : $_POST['password'];
128
    $login        = (! isset($_POST['username']))    ? '' : $_POST['username'];
128
    $login        = (! isset($_POST['username']))    ? '' : $_POST['username'];
129
    
129
    
130
    // ATTENTION : Partie à supprimer une fois les mise à jour effectué dans l'annuaire de Tela Botanica
130
    // ATTENTION : Partie à supprimer une fois les mise à jour effectué dans l'annuaire de Tela Botanica
131
    // Devrait être déplacer dans l'appli inscription de Tela.
131
    // Devrait être déplacer dans l'appli inscription de Tela.
132
    if (isset($GLOBALS['_GEN_commun']['info_auth_bdd']->gsab_nom_table) && $GLOBALS['_GEN_commun']['info_auth_bdd']->gsab_nom_table == 'annuaire_tela') {
132
    if (isset($GLOBALS['_GEN_commun']['info_auth_bdd']->gsab_nom_table) && $GLOBALS['_GEN_commun']['info_auth_bdd']->gsab_nom_table == 'annuaire_tela') {
133
        verification_mot_de_passe($objet_pear_db, $mot_de_passe, $login);
133
        verification_mot_de_passe($objet_pear_db, $mot_de_passe, $login);
134
        if (isset($_POST['connexion'])) {
134
        if (isset($_POST['connexion'])) {
135
            $objet_pear_auth->login();
135
            $objet_pear_auth->login();
136
        }
136
        }
137
    }
137
    }
138
    
138
    
139
    if (! $objet_pear_auth->getAuth()) {
139
    if (! $objet_pear_auth->getAuth()) {
140
        // L'utilisateur n'est pas identifié:
140
        // L'utilisateur n'est pas identifié:
141
        $retour  = str_repeat(' ', 16).'<form id="form_connexion" class="form_identification" action="'.$url.'" method="post">'."\n";
141
        $retour  = str_repeat(' ', 16).'<form id="form_connexion" class="form_identification" action="'.$url.'" method="post">'."\n";
142
        $retour .= str_repeat(' ', 16).'<fieldset>'."\n";
142
        $retour .= str_repeat(' ', 16).'<fieldset>'."\n";
143
        $retour .= str_repeat(' ', 20).'<legend>'.'Identification'.'</legend>'."\n";
143
        $retour .= str_repeat(' ', 20).'<legend>'.'Identification'.'</legend>'."\n";
144
        $retour .= str_repeat(' ', 20).''."\n";
144
        $retour .= str_repeat(' ', 20).''."\n";
145
        $retour .= str_repeat(' ', 24).'<label for="username">'.'Courriel :'.'</label>'."\n";
145
        $retour .= str_repeat(' ', 24).'<label for="username">'.'Courriel :'.'</label>'."\n";
146
        $retour .= str_repeat(' ', 24).'<input type="text" size="12" id="username" name="username" maxlength="80" tabindex="1" value="'.'courriel'.'" />'."\n";
146
        $retour .= str_repeat(' ', 24).'<input type="text" size="12" id="username" name="username" maxlength="80" tabindex="1" value="'.'courriel'.'" />'."\n";
147
        $retour .= str_repeat(' ', 20).''."\n";
147
        $retour .= str_repeat(' ', 20).''."\n";
148
        $retour .= str_repeat(' ', 20).''."\n";
148
        $retour .= str_repeat(' ', 20).''."\n";
149
        $retour .= str_repeat(' ', 24).'<label for="password">'.'Mot de passe :'.'</label>'."\n";
149
        $retour .= str_repeat(' ', 24).'<label for="password">'.'Mot de passe :'.'</label>'."\n";
150
        $retour .= str_repeat(' ', 24).'<input type="password" size="12" id="password" name="password" maxlength="80" tabindex="2" value="'.'mot de passe'.'" />'."\n";
150
        $retour .= str_repeat(' ', 24).'<input type="password" size="12" id="password" name="password" maxlength="80" tabindex="2" value="'.'mot de passe'.'" />'."\n";
151
        $retour .= str_repeat(' ', 20).''."\n";
151
        $retour .= str_repeat(' ', 20).''."\n";
152
        $retour .= str_repeat(' ', 20).''."\n";
152
        $retour .= str_repeat(' ', 20).''."\n";
153
        $retour .= str_repeat(' ', 24).'<input type="submit" id="connexion" name="connexion" tabindex="3" value="'.'ok'.'" />'."\n";
153
        $retour .= str_repeat(' ', 24).'<input type="submit" id="connexion" name="connexion" tabindex="3" value="'.'ok'.'" />'."\n";
154
        $retour .= str_repeat(' ', 20).''."\n";
154
        $retour .= str_repeat(' ', 20).''."\n";
155
        $retour .= str_repeat(' ', 16).'</fieldset>'."\n";
155
        $retour .= str_repeat(' ', 16).'</fieldset>'."\n";
156
        $retour .= str_repeat(' ', 16).'</form>';
156
        $retour .= str_repeat(' ', 16).'</form>';
157
    } else {
157
    } else {
158
        // L'utilisateur est identifié. Nous affichons ses informations.
158
        // L'utilisateur est identifié. Nous affichons ses informations.
159
        // Affichage du prénom et nom d'une personne ou du nom de la structure en fonction des paramêtres 
159
        // Affichage du prénom et nom d'une personne ou du nom de la structure en fonction des paramêtres 
160
        // de l'annuaire utilisé
160
        // de l'annuaire utilisé
161
        $retour = str_repeat(' ', 16).'<p id="identification_info"><span id="identification_message">'.IDEN_LANG_MESSAGE.'</span> ';
161
        $retour = str_repeat(' ', 16).'<p id="identification_info"><span id="identification_message">'.IDEN_LANG_MESSAGE.'</span> ';
162
        if (isset($GLOBALS['_GEN_commun']['info_auth_bdd']->chp_personne_prenom) && isset($GLOBALS['_GEN_commun']['info_auth_bdd']->chp_personne_nom)) {
162
        if (isset($GLOBALS['_GEN_commun']['info_auth_bdd']->chp_personne_prenom) && isset($GLOBALS['_GEN_commun']['info_auth_bdd']->chp_personne_nom)) {
163
            $retour .=  '<span id="identification_prenom">'.
163
            $retour .=  '<span id="identification_prenom">'.
164
                        $objet_pear_auth->getAuthData($GLOBALS['_GEN_commun']['info_auth_bdd']->chp_personne_prenom).
164
                        $objet_pear_auth->getAuthData($GLOBALS['_GEN_commun']['info_auth_bdd']->chp_personne_prenom).
165
                        '</span> '.
165
                        '</span> '.
166
                        '<span id="identification_nom">'.
166
                        '<span id="identification_nom">'.
167
                        $objet_pear_auth->getAuthData($GLOBALS['_GEN_commun']['info_auth_bdd']->chp_personne_nom).
167
                        $objet_pear_auth->getAuthData($GLOBALS['_GEN_commun']['info_auth_bdd']->chp_personne_nom).
168
                        '</span>';
168
                        '</span>';
169
        } elseif (isset($GLOBALS['_GEN_commun']['info_auth_bdd']->chp_structure_nom)) {
169
        } elseif (isset($GLOBALS['_GEN_commun']['info_auth_bdd']->chp_structure_nom)) {
170
            $retour .=  '<span id="identification_structure">'.
170
            $retour .=  '<span id="identification_structure">'.
171
                        $objet_pear_auth->getAuthData($GLOBALS['_GEN_commun']['info_auth_bdd']->chp_structure_nom).
171
                        $objet_pear_auth->getAuthData($GLOBALS['_GEN_commun']['info_auth_bdd']->chp_structure_nom).
172
                        '</span>';
172
                        '</span>';
173
        }
173
        }
174
        $retour .= '</p>'."\n";
174
        $retour .= '</p>'."\n";
175
        
175
        
176
        // Affichage du bouton de déconnexion
176
        // Affichage du bouton de déconnexion
177
        $retour .= str_repeat(' ', 16).'<p id="deconnexion">'."\n";
177
        $retour .= str_repeat(' ', 16).'<p id="deconnexion">'."\n";
178
        $retour .= str_repeat(' ', 20).'<a href="'.$url.'&amp;logout=1" />'.'Déconnexion'.'</a>'."\n";
178
        $retour .= str_repeat(' ', 20).'<a href="'.$url.'&amp;logout=1">'.'Déconnexion'.'</a>'."\n";
179
        $retour .= str_repeat(' ', 16).'</p>'."\n";
179
        $retour .= str_repeat(' ', 16).'</p>'."\n";
180
    }
180
    }
181
    return $retour;
181
    return $retour;
182
}
182
}
183
 
183
 
184
// +------------------------------------------------------------------------------------------------------+
184
// +------------------------------------------------------------------------------------------------------+
185
// |                                            PIED du PROGRAMME                                         |
185
// |                                            PIED du PROGRAMME                                         |
186
// +------------------------------------------------------------------------------------------------------+
186
// +------------------------------------------------------------------------------------------------------+
187
 
187
 
188
 
188
 
189
 
189
 
190
/* +--Fin du code ----------------------------------------------------------------------------------------+
190
/* +--Fin du code ----------------------------------------------------------------------------------------+
191
*
191
*
192
* $Log: not supported by cvs2svn $
192
* $Log: not supported by cvs2svn $
-
 
193
* Revision 1.10  2005/03/15 14:47:14  jpm
-
 
194
* Utilisation d'un lien à la place d'un formulaire pour la déconnexion.
-
 
195
*
193
* Revision 1.9  2005/03/15 14:17:46  jpm
196
* Revision 1.9  2005/03/15 14:17:46  jpm
194
* Ajout d'un fichier de config et de traduction.
197
* Ajout d'un fichier de config et de traduction.
195
* Début gestion des constantes de langue.
198
* Début gestion des constantes de langue.
196
*
199
*
197
* Revision 1.8  2005/03/10 12:50:44  alex
200
* Revision 1.8  2005/03/10 12:50:44  alex
198
* remplacement de & par  &amp;
201
* remplacement de & par  &amp;
199
*
202
*
200
* Revision 1.7  2005/01/07 12:43:03  alex
203
* Revision 1.7  2005/01/07 12:43:03  alex
201
* réauction de la taille des champs texte à 12
204
* réauction de la taille des champs texte à 12
202
*
205
*
203
* Revision 1.6  2004/12/13 18:07:09  alex
206
* Revision 1.6  2004/12/13 18:07:09  alex
204
* désauthentification spip presque parfaite
207
* désauthentification spip presque parfaite
205
*
208
*
206
* Revision 1.5  2004/09/23 14:31:12  jpm
209
* Revision 1.5  2004/09/23 14:31:12  jpm
207
* Correction bogue sur l'identification de l'annuaire_tela.
210
* Correction bogue sur l'identification de l'annuaire_tela.
208
*
211
*
209
* Revision 1.4  2004/09/23 10:53:44  jpm
212
* Revision 1.4  2004/09/23 10:53:44  jpm
210
* Suppression de l'attribut size. Gestion via les css.
213
* Suppression de l'attribut size. Gestion via les css.
211
*
214
*
212
* Revision 1.3  2004/06/28 10:18:48  alex
215
* Revision 1.3  2004/06/28 10:18:48  alex
213
* suppression de balises <p>
216
* suppression de balises <p>
214
*
217
*
215
* Revision 1.2  2004/06/21 07:37:30  alex
218
* Revision 1.2  2004/06/21 07:37:30  alex
216
* Modification d'un label
219
* Modification d'un label
217
*
220
*
218
* Revision 1.1  2004/06/15 15:01:41  jpm
221
* Revision 1.1  2004/06/15 15:01:41  jpm
219
* Changement de nom et d'arborescence de Genesia en Papyrus.
222
* Changement de nom et d'arborescence de Genesia en Papyrus.
220
*
223
*
221
* Revision 1.5  2004/05/05 06:44:15  jpm
224
* Revision 1.5  2004/05/05 06:44:15  jpm
222
* Complément des commentaires indiquant les paquetages nécessaire à l'applette.
225
* Complément des commentaires indiquant les paquetages nécessaire à l'applette.
223
*
226
*
224
* Revision 1.4  2004/05/03 11:18:55  jpm
227
* Revision 1.4  2004/05/03 11:18:55  jpm
225
* Intégration de la variable globale de Génésia dans les arguments de la fonction de l'applette.
228
* Intégration de la variable globale de Génésia dans les arguments de la fonction de l'applette.
226
*
229
*
227
* Revision 1.3  2004/05/01 17:21:16  jpm
230
* Revision 1.3  2004/05/01 17:21:16  jpm
228
* Ajout d'un fieldset et d'une légende au formulaire.
231
* Ajout d'un fieldset et d'une légende au formulaire.
229
*
232
*
230
* Revision 1.2  2004/05/01 16:13:07  jpm
233
* Revision 1.2  2004/05/01 16:13:07  jpm
231
* Ajout du nom de la balise de l'applette dans le code de l'applette.
234
* Ajout du nom de la balise de l'applette dans le code de l'applette.
232
*
235
*
233
* Revision 1.1  2004/05/01 11:42:01  jpm
236
* Revision 1.1  2004/05/01 11:42:01  jpm
234
* Ajout de l'applette identification.
237
* Ajout de l'applette identification.
235
*
238
*
236
*
239
*
237
* +-- Fin du code ----------------------------------------------------------------------------------------+
240
* +-- Fin du code ----------------------------------------------------------------------------------------+
238
*/
241
*/
239
?>
242
?>