The "previous version" interface on Google Docs is very primitive. It wouldn t even allow you to select two arbitrary versions for comparison (but correct me if I m wrong.)
How can I access the previous versions via the API?
The "previous version" interface on Google Docs is very primitive. It wouldn t even allow you to select two arbitrary versions for comparison (but correct me if I m wrong.)
How can I access the previous versions via the API?
The Protocol Guide for Document List API (v3.0) says that document revisions and arbitrary file revisions are available via the revisions feed.
So you can get revisions for a particular document with:
GET /feeds/default/private/full/<resource_id>/revisions HTTP/1.1
When exporting contents for any single document, revisions are basically accessed with
Export?docId=<doc_id>&revision=0
You should be able to construct those URIs yourself with the help of the Java or .NET libraries for the Documents List API. It s my understanding that they are still labs projects though.
See more at: http://code.google.com/apis/documents/docs/3.0/developers_guide_protocol.html#RevisionHistory
I remember reading somewhere that Google is doing an overhaul of their client libraries, so it might be smart to wait for Google I/O 2011 for example.
My clients produce lots of data in the form of ad hoc spreadsheets, which they want to upload to their web site and then be able to create online, reports that require joins and filtering of the ...
I m searching for a free, open-source if possible, Java swing library that improves the existent JTable (which is very simple). I want to do an application with a spreadsheet similar to Excel one. ...
Why are programs like Microsoft Excel, Gnumeric and OpenOffice.org Calc designed with hard-coded limits on the number of rows and columns? This seems like an archaic programming technique from when ...
Is Google Spreadsheets / Docs a viable database option for real-world applications?
I d like to know if there exists a spreadsheet application which uses an existing functional-programming language to define functions. I ve already heard about Resolver One which uses python, but I m ...
i want a user to have file picker and then choose a spreadsheet which will then be parsed by a controller action. are there any examples of how to do this?
has anybody found a library that works well with large spreadsheets? I ve tried apache s POI but it fails miserably working with large files - both reading and writing. It uses massive amounts of ...
I am trying to query an .xls spreadsheet with VBScript, but I have run into an issue when trying to cast a field. I connect to the spreadsheet like this. Set objConnection = CreateObject("ADODB....