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: herbier.php,v 1.4 2006-10-31 10:31:36 jp_milcent Exp $
|
24 |
// CVS : $Id: herbier.php,v 1.5 2006-10-31 15:06:44 jp_milcent Exp $
|
25 |
/**
|
25 |
/**
|
26 |
* Application Herbier
|
26 |
* Application Herbier
|
27 |
*
|
27 |
*
|
28 |
* Cette application permet de consulter et d'administrer des collection botanique comprise dans le modèle
|
28 |
* Cette application permet de consulter et d'administrer des collection botanique comprise dans le modèle
|
29 |
* d'Herbier.
|
29 |
* d'Herbier.
|
Line 36... |
Line 36... |
36 |
//Auteur original :
|
36 |
//Auteur original :
|
37 |
*@author Alexandre GRANIER <alexandre@tela-botanica.org>
|
37 |
*@author Alexandre GRANIER <alexandre@tela-botanica.org>
|
38 |
//Autres auteurs :
|
38 |
//Autres auteurs :
|
39 |
*@author Jean-Pascal MILCENT <jpm@clapas.org>
|
39 |
*@author Jean-Pascal MILCENT <jpm@clapas.org>
|
40 |
*@copyright Tela-Botanica 2000-2005
|
40 |
*@copyright Tela-Botanica 2000-2005
|
41 |
*@version $Revision: 1.4 $ $Date: 2006-10-31 10:31:36 $
|
41 |
*@version $Revision: 1.5 $ $Date: 2006-10-31 15:06:44 $
|
42 |
// +------------------------------------------------------------------------------------------------------+
|
42 |
// +------------------------------------------------------------------------------------------------------+
|
43 |
*/
|
43 |
*/
|
Line 44... |
Line 44... |
44 |
|
44 |
|
45 |
// +------------------------------------------------------------------------------------------------------+
|
45 |
// +------------------------------------------------------------------------------------------------------+
|
Line 66... |
Line 66... |
66 |
require_once HB_CHEMIN_API_PEAR.'DB.php';
|
66 |
require_once HB_CHEMIN_API_PEAR.'DB.php';
|
67 |
/** Inclusion de la classe PEAR de gestion des URL. */
|
67 |
/** Inclusion de la classe PEAR de gestion des URL. */
|
68 |
require_once HB_CHEMIN_API_PEAR.'Net'.GEN_SEP.'URL.php';
|
68 |
require_once HB_CHEMIN_API_PEAR.'Net'.GEN_SEP.'URL.php';
|
69 |
// Création de l'objet URL si nous hors de Papyrus
|
69 |
// Création de l'objet URL si nous hors de Papyrus
|
70 |
if (!defined('PAP_VERSION')) {
|
70 |
if (!defined('PAP_VERSION')) {
|
71 |
$GLOBALS['_GEN_commun']['url'] = new Net_URL('http://'.$_SERVER['HTTP_HOST'].$_SERVER['PHP_SELF']);
|
71 |
$GLOBALS['_GEN_commun']['url'] = new Net_URL(HB_URL);
|
72 |
}
|
72 |
}
|
73 |
/** Inclusion du fichier de configuration des url de BiblioBota.*/
|
73 |
/** Inclusion du fichier de configuration des url de BiblioBota.*/
|
74 |
require_once HB_CHEMIN_CONFIG.'hb_config_url.inc.php';
|
74 |
require_once HB_CHEMIN_CONFIG.'hb_config_url.inc.php';
|
Line 75... |
Line 75... |
75 |
|
75 |
|
Line 232... |
Line 232... |
232 |
|
232 |
|
233 |
|
233 |
|
234 |
/* +--Fin du code ----------------------------------------------------------------------------------------+
|
234 |
/* +--Fin du code ----------------------------------------------------------------------------------------+
|
- |
|
235 |
*
|
- |
|
236 |
* $Log: not supported by cvs2svn $
|
- |
|
237 |
* Revision 1.4 2006/10/31 10:31:36 jp_milcent
|
235 |
*
|
238 |
* Gestion des chemins rendu compatibles avec une utilisation de l'appli Herbiers hors de Papyrus.
|
236 |
* $Log: not supported by cvs2svn $
|
239 |
*
|
237 |
* Revision 1.3 2006/10/30 18:57:17 jp_milcent
|
240 |
* Revision 1.3 2006/10/30 18:57:17 jp_milcent
|
238 |
* Début gestion des flux rss.
|
241 |
* Début gestion des flux rss.
|
239 |
*
|
242 |
*
|