Subversion Repositories eFlore/Archives.herbiers

Rev

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

Rev Author Line No. Line
6 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 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
// +------------------------------------------------------------------------------------------------------+
13 jp_milcent 22
// CVS : $Id: herbier_rss.php,v 1.4 2006-10-31 15:19:15 jp_milcent Exp $
6 jp_milcent 23
/**
24
* Générateur de flux RSS pour les Herbiers
25
*
26
*@package bazar
27
//Auteur original :
28
*@author        Florian SCHMITT <florian@ecole-et-nature.org>
29
*@author        Jean-Pascal MILCENT <jpm@tela-botanica.org>
30
*
31
*@copyright     Tela-Botanica 2000-2006
13 jp_milcent 32
*@version       $Revision: 1.4 $
6 jp_milcent 33
// +------------------------------------------------------------------------------------------------------+
34
*/
35
 
36
// +------------------------------------------------------------------------------------------------------+
37
// |                                            ENTETE du PROGRAMME                                       |
38
// +------------------------------------------------------------------------------------------------------+
39
// Nous spécifions l'application à appeler.
40
if (!isset($_REQUEST['appli'])) {
41
    $_REQUEST['appli'] = 'hb_rss';
42
}
43
 
44
// +------------------------------------------------------------------------------------------------------+
45
// |                                            CORPS du PROGRAMME                                        |
46
// +------------------------------------------------------------------------------------------------------+
47
/** Inclusion du fichier principal de Herbier.*/
48
require_once 'herbier.php';
49
echo afficherContenuCorps();
50
 
51
/* +--Fin du code ----------------------------------------------------------------------------------------+
52
*
53
* $Log: not supported by cvs2svn $
13 jp_milcent 54
* Revision 1.3  2006/10/31 15:06:43  jp_milcent
55
* Fin de gestion des flux rss.
56
*
12 jp_milcent 57
* Revision 1.2  2006/10/31 10:31:36  jp_milcent
58
* Gestion des chemins rendu compatibles avec une utilisation de l'appli Herbiers hors de Papyrus.
59
*
8 jp_milcent 60
* Revision 1.1  2006/10/30 18:57:17  jp_milcent
61
* Début gestion des flux rss.
6 jp_milcent 62
*
8 jp_milcent 63
*
6 jp_milcent 64
* +-- Fin du code ----------------------------------------------------------------------------------------+
65
*/
66
 
67
?>