195 |
jpm |
1 |
<!-- Formulaire de recherche du moteur de recherche de Papyrus (compatible spip) -->
|
|
|
2 |
<div id="moteur_recheche">
|
|
|
3 |
<?php
|
5 |
david |
4 |
|
195 |
jpm |
5 |
/** Inclusion de la classe PEAR gérant les URL.*/
|
|
|
6 |
require_once 'Net/URL.php';
|
|
|
7 |
/** Inclusion du fichier des fonctions meta.*/
|
|
|
8 |
include_once '../papyrus/bibliotheque/fonctions/pap_meta.fonct.php' ;
|
|
|
9 |
/** Inclusion du fichier des fonctions menu.*/
|
|
|
10 |
include_once '../papyrus/bibliotheque/fonctions/pap_menu.fonct.php' ;
|
|
|
11 |
/** Inclusion du fichier de classe Pap_Url.*/
|
|
|
12 |
include_once '../papyrus/bibliotheque/classes/pap_url.class.php' ;
|
|
|
13 |
|
|
|
14 |
/** Inclusion du fichier de config général de Papyrus.*/
|
|
|
15 |
include_once '../papyrus/configuration/pap_config_avancee.inc.php' ;
|
|
|
16 |
/** Inclusion du fichier de config de Papyrus propre à l'installation courante.*/
|
|
|
17 |
include_once '../papyrus/configuration/pap_config.inc.php' ;
|
|
|
18 |
|
|
|
19 |
$_GEN_commun['pear_db'] = DB::connect(PAP_DSN);
|
|
|
20 |
// Définition de l'id de langue courant
|
|
|
21 |
$GLOBALS['_GEN_commun']['i18n'] = 'fr';// devrait être remplacé par la valeur fournie par Spip
|
201 |
jpm |
22 |
$GLOBALS['_GEN_commun']['url'] = new Pap_URL('/actu/recherche.php3');
|
206 |
jpm |
23 |
$GLOBALS['_GEN_commun']['url']->setPermalienBool(false);
|
|
|
24 |
|
195 |
jpm |
25 |
/** Inclusion du fichier de l'applette "Moteur de Recherche".*/
|
|
|
26 |
require_once '../papyrus/applettes/moteur_recherche/moteur_recherche.php';
|
|
|
27 |
echo afficherMoteurRecherche(array(), $GLOBALS['_GEN_commun']);
|
|
|
28 |
//$_GEN_commun['pear_db']->disconnect() ;
|
|
|
29 |
|
|
|
30 |
// on reconnecte à la base de SPIP
|
|
|
31 |
mysql_connect(PAP_BDD_SERVEUR, PAP_BDD_UTILISATEUR, PAP_BDD_MOT_DE_PASSE) or die("Impossible de se connecter à la base de données: " . mysql_error());
|
|
|
32 |
mysql_select_db('tela_prod_spip_actu');
|
|
|
33 |
?>
|
|
|
34 |
|
|
|
35 |
<!-- Formulaire de recherche de Spip -->
|
|
|
36 |
<!--
|
|
|
37 |
<form action="recherche.php3" method="get" id="form_recherche">
|
|
|
38 |
<:chercher:>
|
|
|
39 |
<input type="text" size="20" name="recherche" accesskey="4" value="Recherche dans l'actualité" onfocus="this.value=''"/>
|
|
|
40 |
<input name="bouton" type="submit" value="ok" />
|
|
|
41 |
<input name="lang" type="hidden" value="#LANG" />
|
|
|
42 |
</form>
|
|
|
43 |
-->
|
|
|
44 |
</div>
|