2 |
jp_milcent |
1 |
<?php
|
|
|
2 |
/*vim: set expandtab tabstop=4 shiftwidth=4: */
|
|
|
3 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
4 |
// | PHP version 4.1 |
|
|
|
5 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
6 |
// | Copyright (C) 2004 Tela Botanica (accueil@tela-botanica.org) |
|
|
|
7 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
8 |
// | This file is part of BB-Synthèse. |
|
|
|
9 |
// | |
|
|
|
10 |
// | Foobar is free software; you can redistribute it and/or modify |
|
|
|
11 |
// | it under the terms of the GNU General Public License as published by |
|
|
|
12 |
// | the Free Software Foundation; either version 2 of the License, or |
|
|
|
13 |
// | (at your option) any later version. |
|
|
|
14 |
// | |
|
|
|
15 |
// | Foobar is distributed in the hope that it will be useful, |
|
|
|
16 |
// | but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
|
|
17 |
// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
|
|
18 |
// | GNU General Public License for more details. |
|
|
|
19 |
// | |
|
|
|
20 |
// | You should have received a copy of the GNU General Public License |
|
|
|
21 |
// | along with Foobar; if not, write to the Free Software |
|
|
|
22 |
// | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
|
|
|
23 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
24 |
// CVS : $Id: bbsy_config.inc.php,v 1.1 2005-11-23 10:22:25 jp_milcent Exp $
|
|
|
25 |
/**
|
|
|
26 |
* Configuration de l'application Synthèse.
|
|
|
27 |
*
|
|
|
28 |
* Fichier de configuration de l'application Synthèse.
|
|
|
29 |
*
|
|
|
30 |
*@package BiblioBota-Synthese
|
|
|
31 |
//Auteur original :
|
|
|
32 |
*@author Jean-Charles GRANGER <tela@vecteur.org>
|
|
|
33 |
//Autres auteurs :
|
|
|
34 |
*@author Jean-Pascal MILCENT <jpm@clapas.org>
|
|
|
35 |
*@copyright Tela-Botanica 2000-2004
|
|
|
36 |
*@version $Revision: 1.1 $ $Date: 2005-11-23 10:22:25 $
|
|
|
37 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
38 |
*/
|
|
|
39 |
|
|
|
40 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
41 |
// | ENTETE du PROGRAMME |
|
|
|
42 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
43 |
|
|
|
44 |
|
|
|
45 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
46 |
// | CORPS du PROGRAMME |
|
|
|
47 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
48 |
/** Constante stockant le chemin du dossier contenant l'application Synthèse de Biblio Bota.*/
|
|
|
49 |
define('BBSY_CHEMIN_RACINE', BB_CHEMIN_APPLI.'bb_synthese/');
|
|
|
50 |
/** Constante stockant le chemin du dossier contenant les traductions.*/
|
|
|
51 |
define('BBSY_CHEMIN_LANGUES', BBSY_CHEMIN_RACINE.'langues/');
|
|
|
52 |
/** Constante stockant le chemin du dossier contenant la présentation (images, styles, scripts...).*/
|
|
|
53 |
define('BBSY_CHEMIN_PRESENTATION', BBSY_CHEMIN_RACINE.'presentations/');
|
|
|
54 |
/** Constante stockant le chemin du dossier contenant les images.*/
|
|
|
55 |
define('BBSY_CHEMIN_IMAGES', BBSY_CHEMIN_PRESENTATION.'images/');
|
|
|
56 |
|
|
|
57 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
58 |
// Définition des chemins d'accès aux images.
|
|
|
59 |
/** Constante stockant le chemin d'accès au fichier bb_precedent.png de Biblio Bota.*/
|
|
|
60 |
define('BBSY_IMG_SYNTHESE', BBSY_CHEMIN_IMAGES.'bbsy_synthese.png');
|
|
|
61 |
/** Constante stockant le nom de la classe du fichier bb_precedent.png de Biblio Bota.*/
|
|
|
62 |
define('BBSY_CLASS_IMG_SYNTHESE', 'bbsy_img_synthese');
|
|
|
63 |
|
|
|
64 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
65 |
// Définition des classes css
|
|
|
66 |
/** Constante stockant le nom de la classe du paragraphe affichant le nombre de résultat.*/
|
|
|
67 |
define('BBSY_CLASS_IMG_SYNTHESE', 'bbsy_img_synthese');
|
|
|
68 |
|
|
|
69 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
70 |
// Paramétrage d'origine de l'application
|
|
|
71 |
|
|
|
72 |
// Nbre de synthèses par page
|
|
|
73 |
$var_biblio['how_bloc'] = 10;
|
|
|
74 |
|
|
|
75 |
// nom de la collection à rechercher pour ajouter un terme : ajouter une ligne
|
|
|
76 |
// $var_biblio['seak_string'][x] = "chaine";
|
|
|
77 |
// où x est un incrément de 1 de la valeur précedente (ex : $var_biblio['seak_string'][1])
|
|
|
78 |
$var_biblio['seek_string'][0] = 'TELABOTANICA';
|
|
|
79 |
|
|
|
80 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
81 |
// | PIED du PROGRAMME |
|
|
|
82 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
83 |
|
|
|
84 |
|
|
|
85 |
/* +--Fin du code ----------------------------------------------------------------------------------------+
|
|
|
86 |
*
|
|
|
87 |
* $Log: not supported by cvs2svn $
|
|
|
88 |
* Revision 1.1 2005/02/24 18:34:55 jpm
|
|
|
89 |
* Ajout du fichier de config de l'application synthèse.
|
|
|
90 |
*
|
|
|
91 |
*
|
|
|
92 |
* +-- Fin du code ----------------------------------------------------------------------------------------+
|
|
|
93 |
*/
|
|
|
94 |
?>
|