Author: fmantek
Date: Mon Oct 15 04:20:09 2007
New Revision: 295
Modified:
trunk/clients/cs/RELEASE_NOTES.HTML
trunk/clients/cs/src/gcalendar/calendarentry.cs
Log:
Fixed gauthrequest to create a more meaningfull exception if the
authentication request failed due to a wrong http error response (like
proxy gateway)
Modified: trunk/clients/cs/RELEASE_NOTES.HTML
==============================================================================
--- trunk/clients/cs/RELEASE_NOTES.HTML (original)
+++ trunk/clients/cs/RELEASE_NOTES.HTML Mon Oct 15 04:20:09 2007
@@ -32,6 +32,11 @@
<li>Fixed NULL response object being used for authentication
exceptions.
Now the correct object used for the authentication request
is passed
to the exception.</li>
+ <li>Changed the AuthException code to provide the status code
+ detail as well</li>
+
+ <li>CalendarEntry did use the wrong namespace to find the location
+ object, hence retrieval of a calendar location was broken.</li>
</ul>
</ul>
Modified: trunk/clients/cs/src/gcalendar/calendarentry.cs
==============================================================================
--- trunk/clients/cs/src/gcalendar/calendarentry.cs (original)
+++ trunk/clients/cs/src/gcalendar/calendarentry.cs Mon Oct 15 04:20:09 2007
@@ -177,12 +177,12 @@
get
{
return FindExtension(GDataParserNameTable.XmlWhereElement,
- GDataParserNameTable.NSGCal) as Where;
+ BaseNameTable.gNamespace) as Where;
}
set
{
ReplaceExtension(GDataParserNameTable.XmlWhereElement,
- GDataParserNameTable.NSGCal, value);
+ BaseNameTable.gNamespace, value);
}
}
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---