ericzile / google-gdata

Automatically exported from code.google.com/p/google-gdata
0 stars 0 forks source link

Title-exact doesn't work for Spreadsheets extension #93

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
The query constructor for retrieving spreadsheets doesn't use the
title-exact parameter properly. It should be a separate boolean parameter
that is set to true in addition to the title parameter being set.

Original issue reported on code.google.com by api.jfis...@gmail.com on 12 Nov 2007 at 6:02

GoogleCodeExporter commented 9 years ago
Fix is in subversion. 

Original comment by fman...@gmail.com on 13 Nov 2007 at 2:08

GoogleCodeExporter commented 9 years ago
Fixed in release 1.1.2

Original comment by fman...@gmail.com on 15 Nov 2007 at 5:52

GoogleCodeExporter commented 9 years ago
Hi guys,
Sorry it took me a little while to test this out, I found a (slightly 
cumbersome)
workaround so I could continue with other things, but I'm still having problems 
with
this.  

If I set the properties separately like so:

mySpreadsheetQuery.Title = "Test"
mySpreadsheetQuery.Exact = True

I get an empty spreadsheet feed and this as the query uri:

"http://spreadsheets.google.com/feeds/spreadsheets/private/full?title=Test?title
-exact=true"

If I just append "&title-exact=true" to the title (mySpreadsheetQuery.Title =
"Test&title-exact=true") I get an empty spreadsheet feed and this as the query 
uri:

"http://spreadsheets.google.com/feeds/spreadsheets/private/full?title=Test%26tit
le-exact%3Dtrue"

Thanks,
Joel

Original comment by JMarches...@gmail.com on 16 Nov 2007 at 4:36

GoogleCodeExporter commented 9 years ago
Interestingly enough, if I add another parameter such as 'Author' it works 
beautifully.
Joel

Original comment by JMarches...@gmail.com on 19 Nov 2007 at 7:39