2007-03-16 Stephane Delcroix <stephane@delcroix.org>

* src/Mono.Google.Picasa/PicasaWeb.cs: required patch to deal with
	latest picasaweb.google.com changes.


svn path=/trunk/google-sharp/; revision=74453
This commit is contained in:
Stephane Delcroix 2007-03-16 08:52:04 +00:00
Родитель 5fb2f23ce3
Коммит 8fe7c2971a
2 изменённых файлов: 7 добавлений и 1 удалений

Просмотреть файл

@ -1,3 +1,8 @@
2007-03-16 Stephane Delcroix <stephane@delcroix.org>
* src/Mono.Google.Picasa/PicasaWeb.cs: required patch to deal with
latest picasaweb.google.com changes.
2006-11-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* src/Mono.Google.Picasa/PicasaWeb.cs: there have been some changes in

Просмотреть файл

@ -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);