revision

Display the final proposed text in Tracked Change without accepting the change

五迷三道 提交于 2021-01-29 16:46:39
问题 I am trying to write a Macro that can display the final proposed text in a tracked change without having to accept the change. Current code (modified from thedoctools.com) is as follows which uses a Revision object only for Delete and Insert types: Public Sub ExtractAllRevisionsToExcel() Dim oDoc As Document Dim xlApp As Excel.Application Dim xlWB As Excel.Workbook Dim oNewExcel As Worksheet Dim oRange As Range Dim oRevision As Revision Dim strText As String Dim index As Long Dim Title As

SVN: is it possible to get svn info for a given revision number of a branch

末鹿安然 提交于 2020-07-04 20:26:31
问题 Is it possible to get svn info for a branch for a specific revision number. For example if the latest working copy of a branch has revision number 56, can I get info for the same branch for revsion number 32. 回答1: There are two options available to get informatioon about past revisions: svn log -r <rev number> <url> : the commit message of a specified revision and url svn info -r <rev number> <url> : some technical information about a specified revision and url An example: svn log -r 5628

Populate file revision to treeview

≯℡__Kan透↙ 提交于 2020-06-28 08:52:10
问题 I try to populate list of file revision to treeview. I have a list of revision file like a below. 1.17 1.17.1.1 1.17.1.2 1.17.1.2.1.1 1.17.1.2.1.2 1.17.1.2.1.2.1.1 1.17.1.2.1.2.1.2 1.17.1.2.1.2.1.3 1.17.1.2.1.2.1.3.1.1 1.17.1.2.1.2.1.3.1.2 1.17.1.2.1.2.1.3.2.1 1.17.1.2.1.2.1.4 1.17.1.2.1.2.1.5 1.17.1.2.1.2.1.5.1.1 1.17.1.2.1.2.1.5.1.2 1.17.1.2.1.2.1.5.1.2.1.1 1.17.1.2.1.3 1.17.1.2.1.4 1.18 1.19 Now, I would like to populate it like a 1.17 1.17.1.1 1.17.1.2 1.17.1.2.1.1 1.17.1.2.1.2 1.17.1.2.1

Using svnversion with svn:keywords

孤者浪人 提交于 2020-01-10 05:50:27
问题 I'm using Visual SVN on my Windows Box. I have Repository Application , which has Framework as an svn:external. All well and good. When I make a checkout of Application , I'd like to have the version of Application and Framework for inclusion in a footer file. This way I could have something like: Application Version $ApplicationVersion$, Framework Version $FrameworkVersion$ Ordinarily, I understand I could use svn:keywords and add the revision - but as I understand it, svn:keywords apply on

Eclipse with Maven plugin does not work with latest revisions, but works with older ones

笑着哭i 提交于 2020-01-07 02:24:10
问题 I have a simple project that uses Spring AOP . It uses annotation from AspectJ . The project is in Maven and it compiles ok with aspectjtools-1.7.4 . With aspectjtools-1.8.9 it fails to see accept annotation @Aspect imported from org.aspectj.lang.annotation.Aspect . The same project gives no problems with Gradle and same JARs. Why would my code not work with latest revision of AspectJ, but works ok with older one? I am attaching pom.xml : <project xmlns="http://maven.apache.org/POM/4.0.0"

Build Version vs Revision number

☆樱花仙子☆ 提交于 2020-01-02 03:23:32
问题 I have an asp.net/C# app that uses subversion for source control. My app automatically increases it's AssembleVersion and AssemblyFileVersion on each build which works like a charm, and displays the build number in the administration side of the site. We keep track of AssembleVersion and AssemblyFileVersion's when we do deployment, however, when an issue arises and we need to roll back to a certain version, we have no idea which revision to target in subversion. I have few ideas: Save

How to show revision history like revisions

人盡茶涼 提交于 2020-01-01 09:58:28
问题 How does Stack Overflow show the revision changes in the diff-like format they use? I don't care about Stack Overflow per se; it's just a convenient way to describe my requirement. I have an audit history of changes to a text field. I'd like to show the changes the same way Stack Overflow shows revision history changes. I recall a Stack Overflow podcast where Jeff Atwood discussed it, but I can't find it in the transcripts and have no idea what podcast. IIRC, it's not .NET based, maybe Python

Best Practice for CouchDB Document Versioning [closed]

纵然是瞬间 提交于 2020-01-01 03:15:28
问题 Closed . This question is opinion-based. It is not currently accepting answers. Want to improve this question? Update the question so it can be answered with facts and citations by editing this post. Closed last year . Following my question here I am exmploring ideas for a generic approach to document versioning in CouchDB. While I imagine there may be no canonical approach, I had the following idea and am looking for feedback. I would like to maintain readable document ids as much as

triplestore with revisions

我的梦境 提交于 2019-12-31 16:38:15
问题 I need to store RDF triples, while keeping track of modifications. Is there anything out there for this service? Alternatively, how would you keep track of revision while using a context-aware triplestore ? Edit : please note that I don't need only the changeset. I also need to see the triples at any time in the past. 回答1: I tried to address this sort of thing by storing additional triples describing who said what, when. But you need reification, named graphs, or quads which can ruin

triplestore with revisions

折月煮酒 提交于 2019-12-31 16:36:19
问题 I need to store RDF triples, while keeping track of modifications. Is there anything out there for this service? Alternatively, how would you keep track of revision while using a context-aware triplestore ? Edit : please note that I don't need only the changeset. I also need to see the triples at any time in the past. 回答1: I tried to address this sort of thing by storing additional triples describing who said what, when. But you need reification, named graphs, or quads which can ruin