Author: fmantek
Date: Tue Nov 20 00:38:09 2007
New Revision: 327

Modified:
   trunk/clients/cs/RELEASE_NOTES.HTML
   trunk/clients/cs/src/core/documentquery.cs
   trunk/clients/cs/src/version/AssemblyVersion.cs

Log:
Fixed issue 93 again (Title-Exact for spreadsheets)

Modified: trunk/clients/cs/RELEASE_NOTES.HTML
==============================================================================
--- trunk/clients/cs/RELEASE_NOTES.HTML (original)
+++ trunk/clients/cs/RELEASE_NOTES.HTML Tue Nov 20 00:38:09 2007
@@ -2,6 +2,20 @@

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

+<h2>1.1.3.0</h2>
+<ul>
+    <li>Features</li>
+    <ul>
+        <li>None yet.</li>
+       
+    </ul>
+    <li>Bugfixes/changes</li>
+       <li>Issue 93: ReFixed Title Exact Queries for Spreadsheets. Using
+        Title-Exact resulted in two question marks in the query string.</li>
+    </ul>
+</ul>
+
+
 <h2>1.1.2.0</h2>
 <ul>
     <li>Features</li>

Modified: trunk/clients/cs/src/core/documentquery.cs
==============================================================================
--- trunk/clients/cs/src/core/documentquery.cs  (original)
+++ trunk/clients/cs/src/core/documentquery.cs  Tue Nov 20 00:38:09 2007
@@ -147,14 +147,13 @@
             {
                 newPath.Append(paramInsertion);
                  
newPath.AppendFormat(CultureInfo.InvariantCulture, "title={0}", 
Utilities.UriEncodeReserved(Title));
-
+                paramInsertion = '&';
                 if (Exact)
                 {
                     newPath.Append(paramInsertion);
                     newPath.AppendFormat(CultureInfo.InvariantCulture, 
"title-exact=true");
                 }
             }
-
             return newPath.ToString();
         }
     }

Modified: trunk/clients/cs/src/version/AssemblyVersion.cs
==============================================================================
--- trunk/clients/cs/src/version/AssemblyVersion.cs     (original)
+++ trunk/clients/cs/src/version/AssemblyVersion.cs     Tue Nov 20 00:38:09 2007
@@ -56,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.1.2.0")]
+[assembly: AssemblyVersion("1.1.2.*")]




--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to