revisions

How to get a detailed list of google doc revisions in Drive API

拥有回忆 提交于 2019-12-03 06:01:49
I am trying to find a way to retrieve a detailed list of Google doc revisions using Google Drive API. I have tried to implement it in Java, and it does return a list of 10 revisions. However, this list is not detailed enough. If I go to Google Drive, open this file and check the revisions through "File-see revision history", it will return the same list (of 10 revisions) as I got from the Drive API. But there is a button called "Show more detailed revisions" and it will return a detailed list of revisions if I click on it. Does anyone know how to get this detailed list through Drive API? Or is

File Revisions suspect behavior?

这一生的挚爱 提交于 2019-12-02 01:03:23
问题 New problem seems to have appeared today with GoogleDrive non-native file revisions. Been successfully updating existing documents in a GoogleDrive account for months now from a C# app via the GoogleDrive API - some files have 40, 60 and even over 100 revisions just fine. Today when an update is done with a request for new revision and pinned, the existing revision is overwritten and no new revision is created. Seems to only be on existing, multi-revision files. Can create a new file and

File Revisions suspect behavior?

半腔热情 提交于 2019-12-01 20:43:31
New problem seems to have appeared today with GoogleDrive non-native file revisions. Been successfully updating existing documents in a GoogleDrive account for months now from a C# app via the GoogleDrive API - some files have 40, 60 and even over 100 revisions just fine. Today when an update is done with a request for new revision and pinned, the existing revision is overwritten and no new revision is created. Seems to only be on existing, multi-revision files. Can create a new file and update again and again just fine. Also tried it through the Google Drive web app instead of the API and

How to iterate and count Revisions in a Word document using C#?

a 夏天 提交于 2019-12-01 19:28:39
I have been looking around for this but couldn't find an answer anywhere, so hope aomeone here can help. I am doing a WinForms application in C# in wich i use WordApplcation.CompareDocuments to compare two documents and get a result document with the changes marked as Revisions. This works well and apart from the revisions hiding stuff inside textboxes (wich i don't care about just yet) i get exactly what i want. So next step is to count how many words got revised - specifically wdRevisionDelete and wdRevisonInsert. Only problem is final.Revisions is sometimes empty or contains enourmous

SVN find revision of tag

十年热恋 提交于 2019-11-30 04:19:15
Is there any way of showing which revision is equivalent to a certain tag? Try this svn log /path/to/tag -v --stop-on-copy You might see something like this r10 | user | 2010-02-07 17:06:01 -0800 (Sun, 07 Feb 2010) | 1 line Changed paths: A /path/to/tag (from /path/to/branch:5) You can see that the tag was branched at revision 5 If you want to know the revision number of what this tag points to you need to use svn log , which provides data in the format: ------------------------------------------------------------------------ r643 | [author] | [date] | [n] lines Added tag ---------------------

Get details of cells changed from a Google Spreadsheet change notification in a machine readable format

我是研究僧i 提交于 2019-11-29 05:02:29
If I have a Google Spreadsheet e.g. https://docs.google.com/spreadsheet/ccc?key=0AjAdgux-AqYvdE01Ni1pSTJuZm5YVkJIbl9hZ21PN2c&usp=sharing And I have set up notifications on it to email me immediately whenever a cell changes. And I make a change to that spreadsheet via the spreadsheet API - i.e. not by hand. Then I get an email like this: Subject: "Notification Test" was edited recently See the changes in your Google Document "Notification Test": Click here other person made changes from 10/01/2014 12:23 to 12:23 (Greenwich Mean Time) Values changed If I open the 'Click here' link then I get

SVN find revision of tag

↘锁芯ラ 提交于 2019-11-29 01:38:14
问题 Is there any way of showing which revision is equivalent to a certain tag? 回答1: Try this svn log /path/to/tag -v --stop-on-copy You might see something like this r10 | user | 2010-02-07 17:06:01 -0800 (Sun, 07 Feb 2010) | 1 line Changed paths: A /path/to/tag (from /path/to/branch:5) You can see that the tag was branched at revision 5 回答2: If you want to know the revision number of what this tag points to you need to use svn log, which provides data in the format: -----------------------------

Get details of cells changed from a Google Spreadsheet change notification in a machine readable format

a 夏天 提交于 2019-11-27 18:54:34
问题 If I have a Google Spreadsheet e.g. https://docs.google.com/spreadsheet/ccc?key=0AjAdgux-AqYvdE01Ni1pSTJuZm5YVkJIbl9hZ21PN2c&usp=sharing And I have set up notifications on it to email me immediately whenever a cell changes. And I make a change to that spreadsheet via the spreadsheet API - i.e. not by hand. Then I get an email like this: Subject: "Notification Test" was edited recently See the changes in your Google Document "Notification Test": Click here other person made changes from 10/01