Line 17... |
Line 17... |
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: herbier_rss.php,v 1.1 2006-10-30 18:57:17 jp_milcent Exp $
|
22 |
// CVS : $Id: herbier_rss.php,v 1.2 2006-10-31 10:31:36 jp_milcent Exp $
|
23 |
/**
|
23 |
/**
|
24 |
* Générateur de flux RSS pour les Herbiers
|
24 |
* Générateur de flux RSS pour les Herbiers
|
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 Jean-Pascal MILCENT <jpm@tela-botanica.org>
|
29 |
*@author Jean-Pascal MILCENT <jpm@tela-botanica.org>
|
30 |
*
|
30 |
*
|
31 |
*@copyright Tela-Botanica 2000-2006
|
31 |
*@copyright Tela-Botanica 2000-2006
|
32 |
*@version $Revision: 1.1 $
|
32 |
*@version $Revision: 1.2 $
|
33 |
// +------------------------------------------------------------------------------------------------------+
|
33 |
// +------------------------------------------------------------------------------------------------------+
|
34 |
*/
|
34 |
*/
|
Line 35... |
Line 35... |
35 |
|
35 |
|
36 |
// +------------------------------------------------------------------------------------------------------+
|
36 |
// +------------------------------------------------------------------------------------------------------+
|
37 |
// | ENTETE du PROGRAMME |
|
37 |
// | ENTETE du PROGRAMME |
|
38 |
// +------------------------------------------------------------------------------------------------------+
|
38 |
// +------------------------------------------------------------------------------------------------------+
|
39 |
// Pour une utilisation hors de Papyrus
|
39 |
// Pour une utilisation hors de Papyrus
|
40 |
if (!defined('PAP_VERSION')) {
|
- |
|
41 |
|
40 |
if (!defined('PAP_VERSION')) {
|
42 |
// Redéfini le séparateur utilisé lorsque PHP génère des URLs pour séparer les arguments. (compatible XHTML strict)
|
41 |
// Redéfini le séparateur utilisé lorsque PHP génère des URLs pour séparer les arguments. (compatible XHTML strict)
|
43 |
ini_set('arg_separator.output', '&');
|
42 |
ini_set('arg_separator.output', '&');
|
44 |
define('GEN_SEP', DIRECTORY_SEPARATOR);
|
43 |
define('GEN_SEP', DIRECTORY_SEPARATOR);
|
45 |
define('PAP_CHEMIN_RACINE', dirname(realpath(__FILE__)).GEN_SEP.'..'.GEN_SEP.'..'.GEN_SEP);
|
44 |
define('PAP_CHEMIN_RACINE', dirname(realpath(__FILE__)).GEN_SEP.'..'.GEN_SEP.'..'.GEN_SEP);
|
Line 67... |
Line 66... |
67 |
echo afficherContenuCorps();
|
66 |
echo afficherContenuCorps();
|
Line 68... |
Line 67... |
68 |
|
67 |
|
69 |
/* +--Fin du code ----------------------------------------------------------------------------------------+
|
68 |
/* +--Fin du code ----------------------------------------------------------------------------------------+
|
70 |
*
|
69 |
*
|
- |
|
70 |
* $Log: not supported by cvs2svn $
|
- |
|
71 |
* Revision 1.1 2006/10/30 18:57:17 jp_milcent
|
- |
|
72 |
* Début gestion des flux rss.
|
71 |
* $Log: not supported by cvs2svn $
|
73 |
*
|
72 |
*
|
74 |
*
|
73 |
* +-- Fin du code ----------------------------------------------------------------------------------------+
|
75 |
* +-- Fin du code ----------------------------------------------------------------------------------------+
|
Line 74... |
Line 76... |
74 |
*/
|
76 |
*/
|
75 |
|
77 |
|