Author: fmantek
Date: Mon Oct  8 05:09:59 2007
New Revision: 281

Modified:
   trunk/clients/cs/RELEASE_NOTES.HTML
   trunk/clients/cs/src/core/gauthrequest.cs
   trunk/clients/cs/src/extensions/originalevent.cs

Log:
Fixed the OriginalStartTime get/set method which was using the  wrong 
constant of the OriginalEvent object.

Modified: trunk/clients/cs/RELEASE_NOTES.HTML
==============================================================================
--- trunk/clients/cs/RELEASE_NOTES.HTML (original)
+++ trunk/clients/cs/RELEASE_NOTES.HTML Mon Oct  8 05:09:59 2007
@@ -2,6 +2,25 @@

 <h1>This document lists the changes in the different releases</h1>

+<h2>1.1.0.2</h2>
+
+<ul>
+    <li>Features</li>
+    <ul>
+
+
+    </ul>
+    <li>Bugfixes/Changes</li>
+    <ul>
+        <li>Fixed the parsing of the [EMAIL PROTECTED] attribute. The
+            SimpleContainer parent class was broken in the sense that 
it did not
+            call the generic parsing method at all. So all SimpleContainers
+            would not have read in attributes, luckily OriginalEvent 
was the
+            only instance of this.</li>
+        <li>Fixed the OriginalStartTime get/set method which was using the
+            wrong constant of the OriginalEvent object.</li>
+    </ul>
+</ul>

 <h2>1.1.0.0</h2>


Modified: trunk/clients/cs/src/core/gauthrequest.cs
==============================================================================
--- trunk/clients/cs/src/core/gauthrequest.cs   (original)
+++ trunk/clients/cs/src/core/gauthrequest.cs   Mon Oct  8 05:09:59 2007
@@ -190,7 +190,13 @@


         //////////////////////////////////////////////////////////////////////
-        /// <summary>accessor method public bool MethodOverride</summary>
+        /// <summary>assuming you are behind a corporate firewall that 
does not
+        /// allow all HTTP verbs (as you know, the atom protocol uses GET,
+        /// POST, PUT and DELETE). If you set MethodOverride to true,
+        /// PUT and DELETE will be simulated using HTTP Post. It will
+        ///  add an X-Method-Override header to the request that
+        /// indicates the "real" method we wanted to send.
+        /// </summary>
         /// <returns> </returns>
         //////////////////////////////////////////////////////////////////////
         public bool MethodOverride

Modified: trunk/clients/cs/src/extensions/originalevent.cs
==============================================================================
--- trunk/clients/cs/src/extensions/originalevent.cs    (original)
+++ trunk/clients/cs/src/extensions/originalevent.cs    Mon Oct  8 
05:09:59 2007
@@ -68,12 +68,12 @@
         {
             get
             {
-                return FindExtension(GDataParserNameTable.XmlReminderElement,
+                return FindExtension(GDataParserNameTable.XmlWhenElement,
                                       BaseNameTable.gNamespace) as When;
             }
             set
             {
-                ReplaceExtension(GDataParserNameTable.XmlReminderElement,
+                ReplaceExtension(GDataParserNameTable.XmlWhenElement,
                                       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 google-help-dataapi@googlegroups.com
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to