[commits] Horde branch master updated.	16a1008231892c61df9dfffe3a9a111188e2ca62
    Michael J. Rubinsky 
    mrubinsk at horde.org
       
    Tue Nov 22 00:38:06 UTC 2011
    
    
  
The branch "master" has been updated.
The following is a summary of the commits.
from: 3ee8526e4a8f587b191115fd82934e3c9794b8e0
2483c87 Calculate sunrise/sunset if we have a lat/lon value
0b5971c Add conversion factors for some units
5ca4baf Only need the date if we want to calc sun rise/set
da1c908 This is kph, not knots
46d799c Move common code/properties to Base class.
5d7b8ff Tweak display. Handle empty values better etc...
b67c2ed Add initial code for WorldWeatherOnline weather driver.
525feef Add WorldWeatherOnline configuration and factory code
19478f8 remove some old comments.
3ffcc11 catch exceptions from Service_Weather
16a1008 If we get back multiple locations, use the first.
-----------------------------------------------------------------------
commit 2483c87914f99da815879d23d348d3a204cb724b
Author: Michael J Rubinsky <mrubinsk at horde.org>
Date:   Mon Nov 21 16:25:21 2011 -0500
    Calculate sunrise/sunset if we have a lat/lon value
 framework/Service_Weather/lib/Horde/Service/Weather/Google.php |    7 +++++++
 1 files changed, 7 insertions(+), 0 deletions(-)
http://git.horde.org/horde-git/-/commit/2483c87914f99da815879d23d348d3a204cb724b
-----------------------------------------------------------------------
commit 0b5971c3ab34f508dd6b75a46f724a3a5519e8c8
Author: Michael J Rubinsky <mrubinsk at horde.org>
Date:   Mon Nov 21 18:54:30 2011 -0500
    Add conversion factors for some units
 framework/Service_Weather/lib/Horde/Service/Weather.php |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)
http://git.horde.org/horde-git/-/commit/0b5971c3ab34f508dd6b75a46f724a3a5519e8c8
-----------------------------------------------------------------------
commit 5ca4bafdfe25938311f1e14e98ba73629898642a
Author: Michael J Rubinsky <mrubinsk at horde.org>
Date:   Mon Nov 21 18:56:02 2011 -0500
    Only need the date if we want to calc sun rise/set
 framework/Service_Weather/lib/Horde/Service/Weather/Google.php |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
http://git.horde.org/horde-git/-/commit/5ca4bafdfe25938311f1e14e98ba73629898642a
-----------------------------------------------------------------------
commit da1c908aaaeb2f7015e8e5527ee701d5df1bd55f
Author: Michael J Rubinsky <mrubinsk at horde.org>
Date:   Mon Nov 21 18:57:34 2011 -0500
    This is kph, not knots
 framework/Service_Weather/lib/Horde/Service/Weather/Base.php      |    2 +-
 .../lib/Horde/Service/Weather/Current/WeatherUnderground.php      |    4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)
http://git.horde.org/horde-git/-/commit/da1c908aaaeb2f7015e8e5527ee701d5df1bd55f
-----------------------------------------------------------------------
commit 46d799cb27996dd919d51d48fc5b222c38f45c59
Author: Michael J Rubinsky <mrubinsk at horde.org>
Date:   Mon Nov 21 18:58:52 2011 -0500
    Move common code/properties to Base class.
 framework/Service_Weather/lib/Horde/Service/Weather/Base.php      |   39 ++++
 framework/Service_Weather/lib/Horde/Service/Weather/Google.php    |   40 -----
 .../lib/Horde/Service/Weather/WeatherUnderground.php              |   36 +----
 3 files changed, 41 insertions(+), 74 deletions(-)
http://git.horde.org/horde-git/-/commit/46d799cb27996dd919d51d48fc5b222c38f45c59
-----------------------------------------------------------------------
commit 5d7b8ff362414eef165a6dc057444ec2771c5c30
Author: Michael J Rubinsky <mrubinsk at horde.org>
Date:   Mon Nov 21 19:00:59 2011 -0500
    Tweak display. Handle empty values better etc...
 horde/lib/Block/Weather.php |   17 ++++++++++-------
 1 files changed, 10 insertions(+), 7 deletions(-)
http://git.horde.org/horde-git/-/commit/5d7b8ff362414eef165a6dc057444ec2771c5c30
-----------------------------------------------------------------------
commit b67c2ede094c7386f8c5eb87857eaee7a6754765
Author: Michael J Rubinsky <mrubinsk at horde.org>
Date:   Mon Nov 21 19:03:18 2011 -0500
    Add initial code for WorldWeatherOnline weather driver.
    
    A bit more detailed than Google, higher limits for free accounts than Wunderground.
 .../Service_Weather/lib/Horde/Service/Weather/Current/Wwo.php     |  101 ++
 .../Service_Weather/lib/Horde/Service/Weather/Forecast/Wwo.php    |   56 +
 .../Service_Weather/lib/Horde/Service/Weather/Period/Wwo.php      |  115 ++
 framework/Service_Weather/lib/Horde/Service/Weather/Wwo.php       |  314 +++++
 framework/Service_Weather/package.xml                             |   16 +-
 5 files changed, 599 insertions(+), 3 deletions(-)
 create mode 100644 framework/Service_Weather/lib/Horde/Service/Weather/Current/Wwo.php
 create mode 100644 framework/Service_Weather/lib/Horde/Service/Weather/Forecast/Wwo.php
 create mode 100644 framework/Service_Weather/lib/Horde/Service/Weather/Period/Wwo.php
 create mode 100644 framework/Service_Weather/lib/Horde/Service/Weather/Wwo.php
http://git.horde.org/horde-git/-/commit/b67c2ede094c7386f8c5eb87857eaee7a6754765
-----------------------------------------------------------------------
commit 525feef204e48ff64b709cffa52da022bd3aef04
Author: Michael J Rubinsky <mrubinsk at horde.org>
Date:   Mon Nov 21 19:04:17 2011 -0500
    Add WorldWeatherOnline configuration and factory code
 framework/Core/lib/Horde/Core/Factory/Weather.php |    3 ++-
 horde/config/conf.xml                             |   15 +++++++++++----
 2 files changed, 13 insertions(+), 5 deletions(-)
http://git.horde.org/horde-git/-/commit/525feef204e48ff64b709cffa52da022bd3aef04
-----------------------------------------------------------------------
commit 19478f8bafca087d75387d9e1259f5ce3ac6aa34
Author: Michael J Rubinsky <mrubinsk at horde.org>
Date:   Mon Nov 21 19:35:08 2011 -0500
    remove some old comments.
 .../Service_Weather/lib/Horde/Service/Weather/Period/Wwo.php      |    2 --
 1 files changed, 0 insertions(+), 2 deletions(-)
http://git.horde.org/horde-git/-/commit/19478f8bafca087d75387d9e1259f5ce3ac6aa34
-----------------------------------------------------------------------
commit 3ffcc112f2d379a09f501b2cd71d23c7828ca1d1
Author: Michael J Rubinsky <mrubinsk at horde.org>
Date:   Mon Nov 21 19:36:31 2011 -0500
    catch exceptions from Service_Weather
 timeobjects/lib/Driver/Weather.php |   11 ++++++++---
 1 files changed, 8 insertions(+), 3 deletions(-)
http://git.horde.org/horde-git/-/commit/3ffcc112f2d379a09f501b2cd71d23c7828ca1d1
-----------------------------------------------------------------------
commit 16a1008231892c61df9dfffe3a9a111188e2ca62
Author: Michael J Rubinsky <mrubinsk at horde.org>
Date:   Mon Nov 21 19:36:51 2011 -0500
    If we get back multiple locations, use the first.
 timeobjects/lib/Driver/Weather.php |    4 ++++
 1 files changed, 4 insertions(+), 0 deletions(-)
http://git.horde.org/horde-git/-/commit/16a1008231892c61df9dfffe3a9a111188e2ca62
    
    
More information about the commits
mailing list