Subversion Repositories Applications.bazar

Rev

Rev 319 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
319 alexandre_ 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 library is free software; you can redistribute it and/or                                        |
9
// | modify it under the terms of the GNU Lesser General Public                                           |
10
// | License as published by the Free Software Foundation; either                                         |
11
// | version 2.1 of the License, or (at your option) any later version.                                   |
12
// |                                                                                                      |
13
// | This library is distributed in the hope that it will be useful,                                      |
14
// | but WITHOUT ANY WARRANTY; without even the implied warranty of                                       |
15
// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU                                    |
16
// | Lesser General Public License for more details.                                                      |
17
// |                                                                                                      |
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                                  |
20
// | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA                            |
21
// +------------------------------------------------------------------------------------------------------+
22
// CVS : $Id: bazarRSS.php,v 1.8 2007-10-17 08:23:00 alexandre_tb Exp $
23
/**
24
* Générateur de flux RSS à partir du bazar
25
*
26
*@package bazar
27
//Auteur original :
28
*@author        Florian SCHMITT <florian@ecole-et-nature.org>
29
*@author        Alexandre Granier <alexandre@tela-botanica.org>
30
*
31
*@copyright     Tela-Botanica 2000-2004
32
*@version       $Revision: 1.8 $
33
// +------------------------------------------------------------------------------------------------------+
34
*/
35
 
36
// +------------------------------------------------------------------------------------------------------+
37
// |                                            ENTETE du PROGRAMME                                       |
38
// +------------------------------------------------------------------------------------------------------+
39
 
40
include_once 'configuration/baz_config.inc.php'; //fichier de configuration de Bazar
41
include_once 'bibliotheque/bazar.fonct.rss.php'; //fichier des fonctions RSS de Bazar
42
 
43
// +------------------------------------------------------------------------------------------------------+
44
// |                                            CORPS DU PROGRAMME                                        |
45
// +------------------------------------------------------------------------------------------------------+
46
 
47
if (isset($_GET['annonce'])) {
48
	$annonce=$_GET['annonce'];
49
}
50
 
51
if (isset($_GET['categorie_nature'])) {
52
	$categorie_nature=$_GET['categorie_nature'];
53
}
54
else {
55
	$categorie_nature='';
56
}
57
 
58
if (isset($_GET['nbitem'])) {
59
	$nbitem=$_GET['nbitem'];
60
}
61
else {
62
	$nbitem='';
63
}
64
 
65
if (isset($_GET['emetteur'])) {
66
	$emetteur=$_GET['emetteur'];
67
}
68
else {
69
	$emetteur='';
70
}
71
 
72
if (isset($_GET['valide'])) {
73
	$valide=$_GET['valide'];
74
}
75
else {
76
	$valide=1;
77
}
78
 
79
if (isset($_GET['sql'])) {
80
	$requeteSQL=$_GET['sql'];
81
}
82
else {
83
	$requeteSQL='';
84
}
85
// Gestion de la langue
86
if (isset($_GET['langue'])) {
87
	$requeteWhere = ' bn_ce_i18n like "'.$_GET['langue'].'%" and ';
88
} else {
89
	$requeteWhere = '';
90
}
91
echo html_entity_decode(gen_RSS($annonce, $nbitem, $emetteur, $valide, $requeteSQL, '', $requeteWhere, $categorie_nature));
92
 
93
 
94
/* +--Fin du code ----------------------------------------------------------------------------------------+
95
*
126 florian 96
* $Log: not supported by cvs2svn $
319 alexandre_ 97
* Revision 1.7  2007-04-11 08:30:12  neiluj
98
* remise en état du CVS...
99
*
215 neiluj 100
* Revision 1.4  2006/05/19 13:54:32  florian
101
* stabilisation du moteur de recherche, corrections bugs, lien recherche avancee
102
*
126 florian 103
* Revision 1.3  2005/07/21 19:03:12  florian
104
* nouveautés bazar: templates fiches, correction de bugs, ...
319 alexandre_ 105
*
106
* Revision 1.1.1.1  2005/02/17 18:05:11  florian
107
* Import initial de Bazar
108
*
109
* Revision 1.1.1.1  2005/02/17 11:09:50  florian
110
* Import initial
111
*
112
* Revision 1.1.1.1  2005/02/16 18:06:35  florian
113
* import de la nouvelle version
114
*
115
* Revision 1.3  2004/07/08 15:06:48  alex
116
* modification de la date
117
*
118
*
119
* +-- Fin du code ----------------------------------------------------------------------------------------+
120
*/
121
 
122
?>