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: moteur_recherche.php,v 1.12 2006-06-16 09:45:10 jp_milcent Exp $
|
24 |
// CVS : $Id: moteur_recherche.php,v 1.13 2006-10-10 12:02:30 jp_milcent Exp $
|
25 |
/**
|
25 |
/**
|
26 |
* Applette : moteur de recherche
|
26 |
* Applette : moteur de recherche
|
27 |
*
|
27 |
*
|
28 |
* Génère un formulaire contenant une zone de saisie permettant de taper un texte à rechercher sur l'ensemble
|
28 |
* Génère un formulaire contenant une zone de saisie permettant de taper un texte à rechercher sur l'ensemble
|
29 |
* des sites gérés par Papyrus.
|
29 |
* des sites gérés par Papyrus.
|
Line 36... |
Line 36... |
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.12 $ $Date: 2006-06-16 09:45:10 $
|
41 |
*@version $Revision: 1.13 $ $Date: 2006-10-10 12:02:30 $
|
42 |
// +------------------------------------------------------------------------------------------------------+
|
42 |
// +------------------------------------------------------------------------------------------------------+
|
43 |
*/
|
43 |
*/
|
Line 44... |
Line 44... |
44 |
|
44 |
|
45 |
// +------------------------------------------------------------------------------------------------------+
|
45 |
// +------------------------------------------------------------------------------------------------------+
|
Line 55... |
Line 55... |
55 |
require_once GEN_CHEMIN_APPLETTE.'moteur_recherche/configuration/more_configuration.inc.php';
|
55 |
require_once GEN_CHEMIN_APPLETTE.'moteur_recherche/configuration/more_configuration.inc.php';
|
56 |
/** Inclusion du fichier de configuration des Spip.*/
|
56 |
/** Inclusion du fichier de configuration des Spip.*/
|
57 |
require_once GEN_CHEMIN_APPLETTE.'moteur_recherche/configuration/more_config_spip.inc.php';
|
57 |
require_once GEN_CHEMIN_APPLETTE.'moteur_recherche/configuration/more_config_spip.inc.php';
|
58 |
/** Inclusion de la bibliothèque PEAR de conception de formulaire.*/
|
58 |
/** Inclusion de la bibliothèque PEAR de conception de formulaire.*/
|
59 |
require_once MORE_CHEMIN_BIBLIOTHEQUE_PEAR.'HTML/QuickForm.php';
|
59 |
require_once MORE_CHEMIN_BIBLIOTHEQUE_PEAR.'HTML/QuickForm.php';
|
60 |
/** Inclusion de la bibliothèque PEAR de modification des squelettes des formulaires QuickForm.*/
|
- |
|
61 |
require_once PAP_CHEMIN_API_PEAR.'HTML/QuickForm/Renderer/Default.php';
|
- |
|
Line 62... |
Line 60... |
62 |
|
60 |
|
63 |
// Inclusion des fichiers de traduction de l'appli ADME dePapyrus
|
61 |
// Inclusion des fichiers de traduction de l'appli ADME dePapyrus
|
64 |
if (file_exists(MORE_CHEMIN_LANGUE.'more_langue_'.$GLOBALS['_GEN_commun']['i18n'].'.inc.php')) {
|
62 |
if (file_exists(MORE_CHEMIN_LANGUE.'more_langue_'.$GLOBALS['_GEN_commun']['i18n'].'.inc.php')) {
|
65 |
/** Inclusion du fichier de traduction suite à la transaction avec le navigateur.*/
|
63 |
/** Inclusion du fichier de traduction suite à la transaction avec le navigateur.*/
|
Line 248... |
Line 246... |
248 |
|
246 |
|
249 |
|
247 |
|
250 |
/* +--Fin du code ----------------------------------------------------------------------------------------+
|
248 |
/* +--Fin du code ----------------------------------------------------------------------------------------+
|
- |
|
249 |
*
|
- |
|
250 |
* $Log: not supported by cvs2svn $
|
- |
|
251 |
* Revision 1.12 2006/06/16 09:45:10 jp_milcent
|
251 |
*
|
252 |
* Correction bogue lié à la suppression de l'objet info_menu.
|
252 |
* $Log: not supported by cvs2svn $
|
253 |
*
|
253 |
* Revision 1.11 2006/05/23 13:39:13 florian
|
254 |
* Revision 1.11 2006/05/23 13:39:13 florian
|
254 |
* corection bug notice de jean pascal ;-)
|
255 |
* corection bug notice de jean pascal ;-)
|
255 |
*
|
256 |
*
|