From 8fe7c2971a319d376a2d0872762f0f88e9b8406b Mon Sep 17 00:00:00 2001 From: Stephane Delcroix Date: Fri, 16 Mar 2007 08:52:04 +0000 Subject: [PATCH] 2007-03-16 Stephane Delcroix * src/Mono.Google.Picasa/PicasaWeb.cs: required patch to deal with latest picasaweb.google.com changes. svn path=/trunk/google-sharp/; revision=74453 --- ChangeLog | 5 +++++ src/Mono.Google.Picasa/PicasaWeb.cs | 3 ++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 0706066..1bdd854 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2007-03-16 Stephane Delcroix + + * src/Mono.Google.Picasa/PicasaWeb.cs: required patch to deal with + latest picasaweb.google.com changes. + 2006-11-21 Gonzalo Paniagua Javier * src/Mono.Google.Picasa/PicasaWeb.cs: there have been some changes in diff --git a/src/Mono.Google.Picasa/PicasaWeb.cs b/src/Mono.Google.Picasa/PicasaWeb.cs index aac6fc8..d808d9d 100644 --- a/src/Mono.Google.Picasa/PicasaWeb.cs +++ b/src/Mono.Google.Picasa/PicasaWeb.cs @@ -260,7 +260,8 @@ namespace Mono.Google.Picasa { XmlNamespaceManager nsmgr = new XmlNamespaceManager (doc.NameTable); nsmgr.AddNamespace ("photo", "http://www.pheed.com/pheed/"); nsmgr.AddNamespace ("media", "http://search.yahoo.com/mrss/"); - nsmgr.AddNamespace ("gphoto", "http://picasaweb.google.com/lh/picasaweb"); + nsmgr.AddNamespace ("gphoto", "http://schemas.google.com/photos/2007"); + nsmgr.AddNamespace ("batch", "http://schemas.google.com/gdata/batch"); node = channel.SelectSingleNode ("gphoto:user", nsmgr); user = node.InnerText; node = channel.SelectSingleNode ("gphoto:nickname", nsmgr);