Subversion Repositories Applications.bazar

Rev

Rev 225 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

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