Author: fmantek
Date: Mon Jun 25 10:51:30 2007
New Revision: 191
Modified:
trunk/clients/cs/lib/Mobile/WindowsMobile/Google.GData.AccessControl.dll.dll
trunk/clients/cs/lib/Mobile/WindowsMobile/Google.GData.Apps.dll
trunk/clients/cs/lib/Mobile/WindowsMobile/Google.GData.Calendar.dll
trunk/clients/cs/lib/Mobile/WindowsMobile/Google.GData.Client.dll
trunk/clients/cs/lib/Mobile/WindowsMobile/Google.GData.CodeSearch.dll
trunk/clients/cs/lib/Mobile/WindowsMobile/Google.GData.Extensions.dll
trunk/clients/cs/lib/Mobile/WindowsMobile/Google.GData.GoogleBase.dll
trunk/clients/cs/lib/Mobile/WindowsMobile/Google.GData.Spreadsheets.dll
trunk/clients/cs/src/core/atomfeed.cs
trunk/clients/cs/src/extensions/entrylink.cs
trunk/clients/cs/src/version/AssemblyVersion.cs
Log:
Fixed issue 58 (composite feeds). Uped version number. New mobile DLLs
Modified:
trunk/clients/cs/lib/Mobile/WindowsMobile/Google.GData.AccessControl.dll.dll
==============================================================================
Binary files. No diff available.
Modified: trunk/clients/cs/lib/Mobile/WindowsMobile/Google.GData.Apps.dll
==============================================================================
Binary files. No diff available.
Modified: trunk/clients/cs/lib/Mobile/WindowsMobile/Google.GData.Calendar.dll
==============================================================================
Binary files. No diff available.
Modified: trunk/clients/cs/lib/Mobile/WindowsMobile/Google.GData.Client.dll
==============================================================================
Binary files. No diff available.
Modified: trunk/clients/cs/lib/Mobile/WindowsMobile/Google.GData.CodeSearch.dll
==============================================================================
Binary files. No diff available.
Modified: trunk/clients/cs/lib/Mobile/WindowsMobile/Google.GData.Extensions.dll
==============================================================================
Binary files. No diff available.
Modified: trunk/clients/cs/lib/Mobile/WindowsMobile/Google.GData.GoogleBase.dll
==============================================================================
Binary files. No diff available.
Modified:
trunk/clients/cs/lib/Mobile/WindowsMobile/Google.GData.Spreadsheets.dll
==============================================================================
Binary files. No diff available.
Modified: trunk/clients/cs/src/core/atomfeed.cs
==============================================================================
--- trunk/clients/cs/src/core/atomfeed.cs (original)
+++ trunk/clients/cs/src/core/atomfeed.cs Mon Jun 25 10:51:30 2007
@@ -632,7 +632,7 @@
if (this.NewExtensionElement != null)
{
Tracing.TraceMsg("\t calling event dispatcher");
- this.NewExtensionElement(this, e);
+ this.NewExtensionElement(sender, e);
}
// now check the return
if (e.DiscardEntry != true)
Modified: trunk/clients/cs/src/extensions/entrylink.cs
==============================================================================
--- trunk/clients/cs/src/extensions/entrylink.cs (original)
+++ trunk/clients/cs/src/extensions/entrylink.cs Mon Jun 25 10:51:30 2007
@@ -131,7 +131,9 @@
if (link.Entry == null)
{
- XmlReader reader = new
XmlNodeReader(entryChild);
+ XmlReader reader = new
XmlNodeReader(entryChild);
+ // move the reader to the first node
+ reader.Read();
parser.NewAtomEntry += new
FeedParserEventHandler(link.OnParsedNewEntry);
parser.ParseEntry(reader);
}
Modified: trunk/clients/cs/src/version/AssemblyVersion.cs
==============================================================================
--- trunk/clients/cs/src/version/AssemblyVersion.cs (original)
+++ trunk/clients/cs/src/version/AssemblyVersion.cs Mon Jun 25 10:51:30 2007
@@ -15,6 +15,7 @@
using System;
using System.Security;
using System.Reflection;
+using System.Security.Permissions;
//
// General Information about an assembly is controlled through the following
@@ -34,6 +35,8 @@
[assembly: AssemblyCulture("")]
+
+
#if PARTIALLY_TRUSTED
[assembly:AllowPartiallyTrustedCallers]
[assembly: AssemblyDescription("Release Build: This assembly is marked as
partially trustable. Use on your webserver at your own risk")]
@@ -53,7 +56,7 @@
// You can specify all the values or you can default the Revision and Build
Numbers
// by using the '*' as shown below:
-[assembly: AssemblyVersion("1.0.9.8")]
+[assembly: AssemblyVersion("1.0.9.9")]
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Google Data API" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/google-help-dataapi?hl=en
-~----------~----~----~----~------~----~------~--~---