Author: api.rpropper
Date: Thu May 10 14:45:15 2007
New Revision: 143
Modified:
trunk/clients/cs/RELEASE_NOTES.txt
trunk/clients/cs/src/gspreadsheet/spreadsheetservice.cs
Log:
fix for parsing bug in SpreadsheetService, updated release notes
Modified: trunk/clients/cs/RELEASE_NOTES.txt
==============================================================================
--- trunk/clients/cs/RELEASE_NOTES.txt (original)
+++ trunk/clients/cs/RELEASE_NOTES.txt Thu May 10 14:45:15 2007
@@ -1,7 +1,10 @@
+== 1.0.9.8 ==
+- fixed a parsing bug in SpreadsheetService
+
== 1.0.9.7 ==
- fixed an incorrect trace statement in request.cs that had the result of
disabling reading the error response.
-== 1.0.9.6
+== 1.0.9.6 ==
- added Google Apps for Your Domain support, a new helper DLL
Google.GData.Apps.dll, and a sample, as well
as unittests. Version number is increased to distinguish from Subversion, as
this will be a binary download
as well.
Modified: trunk/clients/cs/src/gspreadsheet/spreadsheetservice.cs
==============================================================================
--- trunk/clients/cs/src/gspreadsheet/spreadsheetservice.cs (original)
+++ trunk/clients/cs/src/gspreadsheet/spreadsheetservice.cs Thu May 10
14:45:15 2007
@@ -188,7 +188,7 @@
{
throw new ArgumentNullException("e");
}
- if (String.Compare(e.ExtensionElement.NamespaceURI,
BaseNameTable.gNamespace, true) == 0)
+ if (String.Compare(e.ExtensionElement.NamespaceURI,
GDataSpreadsheetsNameTable.NSGSpreadsheetsExtended, true) == 0)
{
// found G namespace
e.DiscardEntry = true;
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---