Subversion Repositories Applications.papyrus

Rev

Rev 1359 | Rev 1529 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1359 Rev 1471
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 5.1                                                                                      |
4
// | PHP version 5.1                                                                                      |
5
// +------------------------------------------------------------------------------------------------------+
5
// +------------------------------------------------------------------------------------------------------+
6
// | Copyright (C) 1999-2006 Tela Botanica (accueil@tela-botanica.org)                                    |
6
// | Copyright (C) 1999-2006 Tela Botanica (accueil@tela-botanica.org)                                    |
7
// +------------------------------------------------------------------------------------------------------+
7
// +------------------------------------------------------------------------------------------------------+
8
// | This file is part of papyrus_bp.                                                                     |
8
// | This file is part of papyrus_bp.                                                                     |
9
// |                                                                                                      |
9
// |                                                                                                      |
10
// | Foobar is free software; you can redistribute it and/or modify                                       |
10
// | Foobar is free software; you can redistribute it and/or modify                                       |
11
// | it under the terms of the GNU General Public License as published by                                 |
11
// | it under the terms of the GNU General Public License as published by                                 |
12
// | the Free Software Foundation; either version 2 of the License, or                                    |
12
// | the Free Software Foundation; either version 2 of the License, or                                    |
13
// | (at your option) any later version.                                                                  |
13
// | (at your option) any later version.                                                                  |
14
// |                                                                                                      |
14
// |                                                                                                      |
15
// | Foobar is distributed in the hope that it will be useful,                                            |
15
// | Foobar is distributed in the hope that it will be useful,                                            |
16
// | but WITHOUT ANY WARRANTY; without even the implied warranty of                                       |
16
// | but WITHOUT ANY WARRANTY; without even the implied warranty of                                       |
17
// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the                                        |
17
// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the                                        |
18
// | GNU General Public License for more details.                                                         |
18
// | GNU General Public License for more details.                                                         |
19
// |                                                                                                      |
19
// |                                                                                                      |
20
// | You should have received a copy of the GNU General Public License                                    |
20
// | You should have received a copy of the GNU General Public License                                    |
21
// | along with Foobar; if not, write to the Free Software                                                |
21
// | along with Foobar; if not, write to the Free Software                                                |
22
// | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA                            |
22
// | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA                            |
23
// +------------------------------------------------------------------------------------------------------+
23
// +------------------------------------------------------------------------------------------------------+
24
// CVS : $Id: syndication.php,v 1.5 2007-04-20 12:50:18 florian Exp $
24
// CVS : $Id: syndication.php,v 1.6 2007-06-25 12:15:07 alexandre_tb Exp $
25
/**
25
/**
26
* papyrus_bp - syndication.php
26
* papyrus_bp - syndication.php
27
*
27
*
28
* Description :
28
* Description :
29
*
29
*
30
*@package papyrus_bp
30
*@package papyrus_bp
31
//Auteur original :
31
//Auteur original :
32
*@author        Jean-Pascal MILCENT <jpm@tela-botanica.org>
32
*@author        Jean-Pascal MILCENT <jpm@tela-botanica.org>
33
//Autres auteurs :
33
//Autres auteurs :
34
*@author        Aucun
34
*@author        Aucun
35
*@copyright     Tela-Botanica 1999-2006
35
*@copyright     Tela-Botanica 1999-2006
36
*@version       $Revision: 1.5 $ $Date: 2007-04-20 12:50:18 $
36
*@version       $Revision: 1.6 $ $Date: 2007-06-25 12:15:07 $
37
// +------------------------------------------------------------------------------------------------------+
37
// +------------------------------------------------------------------------------------------------------+
38
*/
38
*/
39
 
39
 
40
// +------------------------------------------------------------------------------------------------------+
40
// +------------------------------------------------------------------------------------------------------+
41
// |                                            ENTÊTE du PROGRAMME                                       |
41
// |                                            ENTÊTE du PROGRAMME                                       |
42
// +------------------------------------------------------------------------------------------------------+
42
// +------------------------------------------------------------------------------------------------------+
43
$GLOBALS['_GEN_commun']['info_applette_nom_fonction'] = 'afficherSyndication';
43
$GLOBALS['_GEN_commun']['info_applette_nom_fonction'] = 'afficherSyndication';
44
$GLOBALS['_GEN_commun']['info_applette_balise'] = 	'\{\{[Ss]yndication'.
44
$GLOBALS['_GEN_commun']['info_applette_balise'] = 	'\{\{[Ss]yndication'.
45
													'(?:\s*'.
45
													'(?:\s*'.
46
														'(?:'.
46
														'(?:'.
47
															'(url="[^"]*")|'.
47
															'(url="[^"]*")|'.
48
															'(titre="[^"]*")|'.
48
															'(titre="[^"]*")|'.
49
															'(nb=(?:"|)\d+(?:"|))|'.
49
															'(nb="?\d+"?)|'.
50
															'(nouvellefenetre=(?:"|)(?:0|1)(?:"|))|'.
50
															'(nouvellefenetre="?(?:0|1)"?)|'.
51
															'(formatdate="[^"]*")|'.
51
															'(formatdate="[^"]*")|'.
52
															'(formatdatepro="[^"]*")|'.
52
															'(formatdatepro="[^"]*")|'.
53
															'(template="[^"]*")|'.
53
															'(template=".*")|'.
54
														')'.
54
														')'.
55
													')+'.
55
													')+'.
56
													'\s*\}\}';
56
													'\s*\}\}';
57
// +------------------------------------------------------------------------------------------------------+
57
// +------------------------------------------------------------------------------------------------------+
58
/** Inclusion du fichier de configuration de cette application.*/
58
/** Inclusion du fichier de configuration de cette application.*/
59
require_once GEN_CHEMIN_APPLETTE.'syndication'.GEN_SEP.'configuration'.GEN_SEP.'synd_configuration.inc.php';
59
require_once GEN_CHEMIN_APPLETTE.'syndication'.GEN_SEP.'configuration'.GEN_SEP.'synd_configuration.inc.php';
60
 
60
 
61
// Inclusion des fichiers de traduction de l'applette SYND de Papyrus
61
// Inclusion des fichiers de traduction de l'applette SYND de Papyrus
62
if (file_exists(SYND_CHEMIN_LANGUE.'synd_langue_'.$GLOBALS['_GEN_commun']['i18n'].'.inc.php')) {
62
if (file_exists(SYND_CHEMIN_LANGUE.'synd_langue_'.$GLOBALS['_GEN_commun']['i18n'].'.inc.php')) {
63
    /** Inclusion du fichier de traduction suite à la transaction avec le navigateur.*/
63
    /** Inclusion du fichier de traduction suite à la transaction avec le navigateur.*/
64
    require_once SYND_CHEMIN_LANGUE.'synd_langue_'.$GLOBALS['_GEN_commun']['i18n'].'.inc.php';
64
    require_once SYND_CHEMIN_LANGUE.'synd_langue_'.$GLOBALS['_GEN_commun']['i18n'].'.inc.php';
65
} else {
65
} else {
66
    /** Inclusion du fichier de traduction par défaut.*/
66
    /** Inclusion du fichier de traduction par défaut.*/
67
    require_once SYND_CHEMIN_LANGUE.'synd_langue_'.SYND_I18N_DEFAUT.'.inc.php';
67
    require_once SYND_CHEMIN_LANGUE.'synd_langue_'.SYND_I18N_DEFAUT.'.inc.php';
68
}
68
}
69
/** Inclusion du fichier de la bibliotheque permettant de manipuler les flux RSS.*/
69
/** Inclusion du fichier de la bibliotheque permettant de manipuler les flux RSS.*/
70
//require_once(MAGPIE_DIR.'rss_fetch.inc');
70
//require_once(MAGPIE_DIR.'rss_fetch.inc');
71
require_once PAP_CHEMIN_API_PEAR.'XML/RSS.php';
71
require_once PAP_CHEMIN_API_PEAR.'XML/RSS.php';
72
// +------------------------------------------------------------------------------------------------------+
72
// +------------------------------------------------------------------------------------------------------+
73
// |                                            CORPS du PROGRAMME                                        |
73
// |                                            CORPS du PROGRAMME                                        |
74
// +------------------------------------------------------------------------------------------------------+
74
// +------------------------------------------------------------------------------------------------------+
75
/** Fonction afficherSyndication() - Retourne la liste des pages des sites syndiqués.
75
/** Fonction afficherSyndication() - Retourne la liste des pages des sites syndiqués.
76
*
76
*
77
* Cette fonction retourne la liste des pages des sites syndiqués.
77
* Cette fonction retourne la liste des pages des sites syndiqués.
78
*
78
*
79
* @param  array contient les arguments de la fonction.
79
* @param  array contient les arguments de la fonction.
80
* @param  array  tableau global de Papyrus.
80
* @param  array  tableau global de Papyrus.
81
* @return string XHTML la liste des pages.
81
* @return string XHTML la liste des pages.
82
*/
82
*/
83
function afficherSyndication($tab_applette_arguments, $_GEN_commun)
83
function afficherSyndication($tab_applette_arguments, $_GEN_commun)
84
{
84
{
85
	// Initialisation des variables
85
	// Initialisation des variables
86
    $sortie = '';
86
    $sortie = '';
87
	$GLOBALS['_SYNDICATION_']['erreurs'] = array();
87
	$GLOBALS['_SYNDICATION_']['erreurs'] = array();
88
	$GLOBALS['_SYNDICATION_']['informations'] = array();
88
	$GLOBALS['_SYNDICATION_']['informations'] = array();
89
	$GLOBALS['_SYNDICATION_']['sites'] = array();
89
	$GLOBALS['_SYNDICATION_']['sites'] = array();
90
	
90
	
91
	//+----------------------------------------------------------------------------------------------------------------+
91
	//+----------------------------------------------------------------------------------------------------------------+
92
	// Gestion des arguments
92
	// Gestion des arguments
93
	$balise = $tab_applette_arguments[0];
93
	$balise = $tab_applette_arguments[0];
94
    $tab_arguments = $tab_applette_arguments;
94
    $tab_arguments = $tab_applette_arguments;
95
	unset($tab_arguments[0]);
95
	unset($tab_arguments[0]);
96
    foreach($tab_arguments as $argument) {
96
    foreach($tab_arguments as $argument) {
97
    	if ($argument != '') {
97
    	if ($argument != '') {
98
	    	$tab_parametres = explode('=', $argument, 2);
98
	    	$tab_parametres = explode('=', $argument, 2);
99
	    	$options[$tab_parametres[0]] = trim($tab_parametres[1], '"');
99
	    	$options[$tab_parametres[0]] = trim($tab_parametres[1], '"');
100
    	}
100
    	}
101
    }
101
    }
102
	
102
	
103
	//+----------------------------------------------------------------------------------------------------------------+
103
	//+----------------------------------------------------------------------------------------------------------------+
104
    // Gestion des erreurs de paramétrage
104
    // Gestion des erreurs de paramétrage
105
	if (!isset($options['url'])) {
105
	if (!isset($options['url'])) {
106
		$GLOBALS['_SYNDICATION_']['erreurs'][] = sprintf(SYND_LG_ERREUR_URL, $balise);
106
		$GLOBALS['_SYNDICATION_']['erreurs'][] = sprintf(SYND_LG_ERREUR_URL, $balise);
107
	}
107
	}
108
	if (!isset($options['titre'])) {
108
	if (!isset($options['titre'])) {
109
		$options['titre'] = '';
109
		$options['titre'] = '';
110
	}
110
	}
111
	if (!isset($options['nb'])) {
111
	if (!isset($options['nb'])) {
112
		$options['nb'] = SYND_NOMBRE;
112
		$options['nb'] = SYND_NOMBRE;
113
	}
113
	}
114
    if (!isset($options['nouvellefenetre'])) {
114
    if (!isset($options['nouvellefenetre'])) {
115
		$options['nouvellefenetre'] = SYND_OUVRIR_LIEN_RSS_NOUVELLE_FENETRE;
115
		$options['nouvellefenetre'] = SYND_OUVRIR_LIEN_RSS_NOUVELLE_FENETRE;
116
	}
116
	}
117
	if (!isset($options['formatdate'])) {
117
	if (!isset($options['formatdate'])) {
118
		$options['formatdate'] = SYND_FORMAT_DATE;
118
		$options['formatdate'] = SYND_FORMAT_DATE;
119
	}
119
	}
120
	if (!isset($options['formatdatepro'])) {
120
	if (!isset($options['formatdatepro'])) {
121
		$options['formatdatepro'] = SYND_FORMAT_DATE;
121
		$options['formatdatepro'] = false;
122
	}
122
	}
123
	if (!isset($options['template'])) {
123
	if (!isset($options['template'])) {
124
		$options['template'] = SYND_CHEMIN_SQUELETTE.SYND_SQUELETTE_LISTE;
124
		$options['template'] = SYND_CHEMIN_SQUELETTE.SYND_SQUELETTE_LISTE;
125
	} else {
125
	} else {
126
		if (file_exists(SYND_CHEMIN_SQUELETTE.$options['template'])) {
126
		if (file_exists(SYND_CHEMIN_SQUELETTE.$options['template'])) {
127
			$options['template'] = SYND_CHEMIN_SQUELETTE.$options['template'];
127
			$options['template'] = SYND_CHEMIN_SQUELETTE.$options['template'];
128
		}
128
		}
129
	}
129
	}
130
	
130
	
131
    //+----------------------------------------------------------------------------------------------------------------+
131
    //+----------------------------------------------------------------------------------------------------------------+
132
    // Recuperation des donnees
132
    // Recuperation des donnees
133
    if (count($GLOBALS['_SYNDICATION_']['erreurs']) == 0) {
133
    if (count($GLOBALS['_SYNDICATION_']['erreurs']) == 0) {
134
		$tab_url = array_map('trim', explode(',', $options['url']));
134
		$tab_url = array_map('trim', explode(',', $options['url']));
135
        foreach ($tab_url as $cle => $url) {
135
        foreach ($tab_url as $cle => $url) {
136
			if ($url != '') {
136
			if ($url != '') {
137
				$aso_site = array();
137
				$aso_site = array();
138
				$rss =& new XML_RSS(str_replace('&amp;', '&', $url));
138
				$rss =& new XML_RSS(str_replace('&amp;', '&', $url));
139
				$rss->parse();
139
				$rss->parse();
140
				if ($options['template'] != '' && !file_exists($options['template'])) {
140
				if ($options['template'] != '' && !file_exists($options['template'])) {
141
					$i = 0 ;
141
					$i = 0 ;
142
					$res= '';
142
					$res= '';
143
					foreach ($rss->getItems() as $item) {
143
					foreach ($rss->getItems() as $item) {
144
						// Le test suivant pour savoir s il faut reduire l excendent de description
144
						// Le test suivant pour savoir s il faut reduire l excendent de description
145
						// Si {all} est present dans le template on ne reduit pas
145
						// Si {all} est present dans le template on ne reduit pas
146
						if (preg_match ('/{all}/', $options['template'])) {
146
						if (preg_match ('/{all}/', $options['template'])) {
147
							$template = str_replace('{all}', '', $options['template']);
147
							$template = str_replace('{all}', '', $options['template']);
148
							$all = true ;
148
							$all = true ;
149
						} else {
149
						} else {
150
							$all = false;
150
							$all = false;
151
						}
151
						}
152
						if (isset($item['summary'])) {
152
						if (isset($item['summary'])) {
153
							$item['description'] = $item['summary']; 
153
							$item['description'] = $item['summary']; 
154
						} else {
154
						} else {
155
							if (strlen($item['description']) > 200 && !$all) {
155
							if (strlen($item['description']) > 200 && !$all) {
156
								$item['description'] = 	substr ($item['description'] , 0, 300).
156
								$item['description'] = 	substr ($item['description'] , 0, 300).
157
														'... <a href="'.$item['link'].'">Lire la suite</a>';
157
														'... <a href="'.$item['link'].'">Lire la suite</a>';
158
							}
158
							}
159
						}
159
						}
160
						if (!isset($item['pubdate'])) {
160
						if (!isset($item['pubdate'])) {
161
							$item['pubdate'] = date('dmY');
161
							$item['pubdate'] = date('dmY');
162
						}
162
						}
163
						// Le code ci-apres est pour rattraper les dates du type 01012005 parsees par magpie
163
						// Le code ci-apres est pour rattraper les dates du type 01012005 parsees par magpie
164
						// lorsque les flux donne des dates au format iso
164
						// lorsque les flux donne des dates au format iso
165
						if (preg_match('/^([0-3][0-9])([0-1][0-9])([0-9][0-9][0-9][0-9])$/', $item['pubdate'], $match)) {
165
						if (preg_match('/^([0-3][0-9])([0-1][0-9])([0-9][0-9][0-9][0-9])$/', $item['pubdate'], $match)) {
166
							$item['pubdate'] = $match[3].'-'.$match[2].'-'.$match[1];
166
							$item['pubdate'] = $match[3].'-'.$match[2].'-'.$match[1];
167
							//echo $item['pubdate'];
167
							//echo $item['pubdate'];
168
						}
168
						}
169
						$res .= str_replace ('{num}', ++$i, 
169
						$res .= str_replace ('{num}', ++$i, 
170
								str_replace ('{item}', '<a href="'.$item['link'].'" target="_top">'.htmlentities($item['title']).'</a>', 
170
								str_replace ('{item}', '<a href="'.$item['link'].'" target="_top">'.htmlentities($item['title']).'</a>', 
171
								str_replace ('{date}', strftime('%d.%m.%Y',strtotime($item['pubdate'])),
171
								str_replace ('{date}', strftime('%d.%m.%Y',strtotime($item['pubdate'])),
172
								str_replace ('{description}', $item['description'], $options['template'])))) ;
172
								str_replace ('{description}', $item['description'], $options['template'])))) ;
173
						$res .= "\n";
173
						$res .= "\n";
174
						if ($i > $options['nb']) {
174
						if ($i > $options['nb']) {
175
							break;
175
							break;
176
						}
176
						}
177
					}
177
					}
178
					return $res;
178
					return $res;
179
				}
179
				}
180
				$channel=$rss->getChannelInfo();
180
				$channel=$rss->getChannelInfo();
181
				//var_dump($channel);
181
				//var_dump($channel);
182
				// Gestion du titre
182
				// Gestion du titre
183
				if ( $options['titre'] == '' ) {
183
				if ( $options['titre'] == '' ) {
184
					$aso_site['titre'] = utf8_decode($channel['title']);
184
					$aso_site['titre'] = utf8_decode($channel['title']);
185
				} else if ( $options['titre'] != '0' ) {
185
				} else if ( $options['titre'] != '0' ) {
186
					$aso_site['titre'] = utf8_decode($options['titre']);
186
					$aso_site['titre'] = utf8_decode($options['titre']);
187
				}
187
				}
188
				// Gestion de l'url du site
188
				// Gestion de l'url du site
189
				if (isset($channel['link'])) {
189
				if (isset($channel['link'])) {
190
					$aso_site['url'] = htmlentities($channel['link']);
190
					$aso_site['url'] = htmlentities($channel['link']);
191
				}
191
				}
192
				// Ouverture du lien dans une nouvelle fenetre
192
				// Ouverture du lien dans une nouvelle fenetre
193
				$aso_site['ext'] = false;
193
				$aso_site['ext'] = false;
194
				if ($options['nouvellefenetre'] == 1) {
194
				if ($options['nouvellefenetre'] == 1) {
195
					$aso_site['ext'] = true;
195
					$aso_site['ext'] = true;
196
				}
196
				}
197
				// Gestion des pages syndiquees
197
				// Gestion des pages syndiquees
198
				$i = 0;
198
				$i = 0;
199
			    $nb_item = count($rss->getItems());
199
			    $nb_item = count($rss->getItems());
200
				foreach ($rss->getItems() as $item) {
200
				foreach ($rss->getItems() as $item) {
201
					if ($options['nb'] != 0 && $nb_item >= $options['nb'] && $i >= $options['nb']) {
201
					if ($options['nb'] != 0 && $nb_item >= $options['nb'] && $i >= $options['nb']) {
202
						break;
202
						break;
203
					}
203
					}
204
					$i++;
204
					$i++;
205
					$aso_page = array();
205
					$aso_page = array();
206
					$aso_page['site'] = $aso_site;
206
					$aso_page['site'] = $aso_site;
207
					$aso_page['url'] = $item['link'];
207
					$aso_page['url'] = $item['link'];
208
					$aso_page['titre'] = utf8_decode($item['title']);	
208
					$aso_page['titre'] = utf8_decode($item['title']);	
209
					if (isset($item['pubdate'])) {
209
					if (isset($item['pubdate'])) {
210
						$aso_page['date'] = $item['pubdate'];
210
						$aso_page['date'] = $item['pubdate'];
211
					} elseif (isset($item['date'])) {
211
					} elseif (isset($item['date'])) {
212
						$aso_page['date'] = $item['date'];
212
						$aso_page['date'] = $item['date'];
213
					} elseif (isset($item['date_timestamp'])) {
213
					} elseif (isset($item['date_timestamp'])) {
214
						$aso_page['date'] = $item['date_timestamp'];
214
						$aso_page['date'] = $item['date_timestamp'];
215
					} else {
215
					} else {
216
						$aso_page['date'] = '';
216
						$aso_page['date'] = '';
217
					}
217
					}
218
					if ($options['formatdatepro']) {
218
					if ($options['formatdatepro']) {
219
						switch ($options['formatdatepro']) {
219
						switch ($options['formatdatepro']) {
220
							case 'jm' :
220
							case 'jm' :
221
								$aso_page['date'] = strftime('%d.%m', strtotime($aso_page['date']));
221
								$aso_page['date'] = strftime('%d.%m', strtotime($aso_page['date']));
222
								break;
222
								break;
223
							case 'jma' :
223
							case 'jma' :
224
								$aso_page['date'] = strftime('%d.%m.%Y', strtotime($aso_page['date']));
224
								$aso_page['date'] = strftime('%d.%m.%Y', strtotime($aso_page['date']));
225
								break;
225
								break;
226
							case 'jmh' :
226
							case 'jmh' :
227
								$aso_page['date'] = strftime('%d.%m %H:%M', strtotime($aso_page['date']));
227
								$aso_page['date'] = strftime('%d.%m %H:%M', strtotime($aso_page['date']));
228
								break;
228
								break;
229
							case 'jmah' :
229
							case 'jmah' :
230
								$aso_page['date'] = strftime('%d.%m.%Y %H:%M', strtotime($aso_page['date']));
230
								$aso_page['date'] = strftime('%d.%m.%Y %H:%M', strtotime($aso_page['date']));
231
								break;
231
								break;
232
							default :
232
							default :
233
								$aso_page['date'] = strftime('%d.%m.%Y %H:%M', strtotime($aso_page['date']));
233
								$aso_page['date'] = strftime('%d.%m.%Y %H:%M', strtotime($aso_page['date']));
234
						}
234
						}
235
					} else {
235
					} else {
236
						switch ($options['formatdate']) {
236
						switch ($options['formatdate']) {
237
							case 'jm' :
237
							case 'jm' :
238
								$aso_page['date'] = strftime('%d.%m', strtotime($aso_page['date']));
238
								$aso_page['date'] = strftime('%d.%m', strtotime($aso_page['date']));
239
								break;
239
								break;
240
							case 'jma' :
240
							case 'jma' :
241
								$aso_page['date'] = strftime('%d.%m.%Y', strtotime($aso_page['date']));
241
								$aso_page['date'] = strftime('%d.%m.%Y', strtotime($aso_page['date']));
242
								break;
242
								break;
243
							case 'jmh' :
243
							case 'jmh' :
244
								$aso_page['date'] = strftime('%d.%m %H:%M', strtotime($aso_page['date']));
244
								$aso_page['date'] = strftime('%d.%m %H:%M', strtotime($aso_page['date']));
245
								break;
245
								break;
246
							case 'jmah' :
246
							case 'jmah' :
247
								$aso_page['date'] = strftime('%d.%m.%Y %H:%M', strtotime($aso_page['date']));
247
								$aso_page['date'] = strftime('%d.%m.%Y %H:%M', strtotime($aso_page['date']));
248
								break;
248
								break;
249
							default :
249
							default :
250
								$aso_page['date'] = strftime('%d.%m.%Y %H:%M', strtotime($aso_page['date']));
250
								$aso_page['date'] = strftime('%d.%m.%Y %H:%M', strtotime($aso_page['date']));
251
						}
251
						}
252
					}
252
					}
253
					$aso_site['pages'][] = $aso_page;
253
					$aso_site['pages'][] = $aso_page;
254
					$GLOBALS['_SYNDICATION_']['pages'][strtotime($aso_page['date'])] = $aso_page;
254
					$GLOBALS['_SYNDICATION_']['pages'][strtotime($aso_page['date'])] = $aso_page;
255
				}
255
				}
256
				$GLOBALS['_SYNDICATION_']['sites'][] = $aso_site;
256
				$GLOBALS['_SYNDICATION_']['sites'][] = $aso_site;
257
			}
257
			}
258
        }
258
        }
259
    }
259
    }
260
	// Trie des pages par date
260
	// Trie des pages par date
261
	//var_dump($GLOBALS['_SYNDICATION_']['pages']);
261
	//var_dump($GLOBALS['_SYNDICATION_']['pages']);
262
	krsort($GLOBALS['_SYNDICATION_']['pages']);
262
	krsort($GLOBALS['_SYNDICATION_']['pages']);
263
	 
263
	 
264
	//+----------------------------------------------------------------------------------------------------------------+
264
	//+----------------------------------------------------------------------------------------------------------------+
265
    // Extrait les variables et les ajoutes a l'espace de noms local
265
    // Extrait les variables et les ajoutes a l'espace de noms local
266
	// Gestion des squelettes
266
	// Gestion des squelettes
267
	extract($GLOBALS['_SYNDICATION_']);
267
	extract($GLOBALS['_SYNDICATION_']);
268
	// Demarre le buffer
268
	// Demarre le buffer
269
	ob_start();
269
	ob_start();
270
	// Inclusion du fichier
270
	// Inclusion du fichier
271
	include($options['template']);
271
	include($options['template']);
272
	// Recuperer le  contenu du buffer
272
	// Recuperer le  contenu du buffer
273
	$sortie = ob_get_contents();
273
	$sortie = ob_get_contents();
274
	// Arrete et detruit le buffer
274
	// Arrete et detruit le buffer
275
	ob_end_clean();
275
	ob_end_clean();
276
	
276
	
277
	//+----------------------------------------------------------------------------------------------------------------+
277
	//+----------------------------------------------------------------------------------------------------------------+
278
	// Sortie
278
	// Sortie
279
    return $sortie;
279
    return $sortie;
280
}
280
}
281
 
281
 
282
/* +--Fin du code ----------------------------------------------------------------------------------------+
282
/* +--Fin du code ----------------------------------------------------------------------------------------+
283
*
283
*
284
* $Log: not supported by cvs2svn $
284
* $Log: not supported by cvs2svn $
-
 
285
* Revision 1.5.2.1  2007-06-06 15:24:37  jp_milcent
-
 
286
* Amélioration de la compatibilité avec les anciennes version des balises de l'applette syndication.
-
 
287
*
-
 
288
* Revision 1.5  2007-04-20 12:50:18  florian
-
 
289
* correction bugs suite au merge
-
 
290
*
285
* Revision 1.4  2007/03/28 15:53:27  florian
291
* Revision 1.4  2007/03/28 15:53:27  florian
286
* correction pb date, encodage utf-8
292
* correction pb date, encodage utf-8
287
*
293
*
288
* Revision 1.3  2007/01/23 14:17:19  alexandre_tb
294
* Revision 1.3  2007/01/23 14:17:19  alexandre_tb
289
* backport : hack pour rattraper les dates du type 01012005 parsees par magpie
295
* backport : hack pour rattraper les dates du type 01012005 parsees par magpie
290
* lorsque les flux donne des dates au format iso
296
* lorsque les flux donne des dates au format iso
291
*
297
*
292
* Revision 1.2  2006/12/13 17:20:51  jp_milcent
298
* Revision 1.2  2006/12/13 17:20:51  jp_milcent
293
* Correction bogue : paramètre nb non pris en compte
299
* Correction bogue : paramètre nb non pris en compte
294
*
300
*
295
* Revision 1.1  2006/12/13 17:06:36  jp_milcent
301
* Revision 1.1  2006/12/13 17:06:36  jp_milcent
296
* Ajout de l'applette Syndication.
302
* Ajout de l'applette Syndication.
297
*
303
*
298
*
304
*
299
* +-- Fin du code ----------------------------------------------------------------------------------------+
305
* +-- Fin du code ----------------------------------------------------------------------------------------+
300
*/
306
*/
301
?>
307
?>