Changeset 65699 in spip-zone
- Timestamp:
- Sep 9, 2012, 4:34:27 PM (8 years ago)
- Location:
- _plugins_/rainette/trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
_plugins_/rainette/trunk/content/debug.html
r65698 r65699 1 1 [(#REM) 2 2 Page de debug des fonctions meteo pour chaque service : 3 - informations3 - Informations 4 4 - Conditions 5 5 - Previsions -
_plugins_/rainette/trunk/services/weather.php
r65696 r65699 54 54 * @return array 55 55 */ 56 function weather_xml2previsions($xml ){56 function weather_xml2previsions($xml, $lieu) { 57 57 $tableau = array(); 58 58 $n = spip_xml_match_nodes(",^dayf,",$xml,$previsions); … … 108 108 109 109 110 function weather_xml2conditions($xml ){110 function weather_xml2conditions($xml, $lieu) { 111 111 $tableau = array(); 112 112 $n = spip_xml_match_nodes(",^cc,",$xml,$conditions); -
_plugins_/rainette/trunk/services/wunderground.php
r65696 r65699 328 328 * @return array 329 329 */ 330 function wunderground_xml2previsions($xml ){330 function wunderground_xml2previsions($xml, $lieu) { 331 331 include_spip('inc/xml'); 332 332 $tableau = array(); … … 381 381 } 382 382 383 function wunderground_xml2conditions($xml ){383 function wunderground_xml2conditions($xml, $lieu) { 384 384 $tableau = array(); 385 385 include_spip('inc/rainette_utils'); … … 468 468 } 469 469 470 function wunderground_xml2infos($xml ){470 function wunderground_xml2infos($xml, $lieu) { 471 471 $tableau = array(); 472 472 -
_plugins_/rainette/trunk/services/wwo.php
r65696 r65699 110 110 * @return array 111 111 */ 112 function wwo_xml2previsions($xml ){112 function wwo_xml2previsions($xml, $lieu) { 113 113 include_spip('inc/xml'); 114 114 $tableau = array(); … … 163 163 } 164 164 165 function wwo_xml2conditions($xml ){165 function wwo_xml2conditions($xml, $lieu) { 166 166 $tableau = array(); 167 167
Note: See TracChangeset
for help on using the changeset viewer.