Communities

Writing
Writing
Codidact Meta
Codidact Meta
The Great Outdoors
The Great Outdoors
Photography & Video
Photography & Video
Scientific Speculation
Scientific Speculation
Cooking
Cooking
Electrical Engineering
Electrical Engineering
Judaism
Judaism
Languages & Linguistics
Languages & Linguistics
Software Development
Software Development
Mathematics
Mathematics
Christianity
Christianity
Code Golf
Code Golf
Music
Music
Physics
Physics
Linux Systems
Linux Systems
Power Users
Power Users
Tabletop RPGs
Tabletop RPGs
Community Proposals
Community Proposals
tag:snake search within a tag
answers:0 unanswered questions
user:xxxx search by author id
score:0.5 posts with 0.5+ score
"snake oil" exact phrase
votes:4 posts with 4+ votes
created:<1w created < 1 week ago
post_type:xxxx type of post
Search help
Notifications
Mark all as read See all your notifications »
Q&A

Is there a revision functionality in LibreOffice Writer?

+0
−0

Is there a way to identify content of a document based on the date it was typed in Office Writer?

@Mark Baker - yes that is my question. I did find a revision option under file. If you choose it, in the next window you can configure the document to save previous versions. But that is not what I am after. I am looking for a functionality similar to what you get if you turn on tracking in word. I like to know if there is a way to see all the changes I made to a file yesterday for instance.

@Joe - Track changes would work for what I need, but I did not turn it on. Even a daily tracking of modifications would work for me. As for Git, I do have Git installed. I am not familiar with all the features, and this may be a good opportunity to learn it. Do you know if I can use Git to track the different versions of a document and keep the file on my own machine? That would work for me. Let me make sure I understand what you are suggesting regarding the compare files functionality of the writer. You mean if I used Git or some other VCS to track different versions of file, I should then use compare files to see the delta because .odt files have meta-data? I do not follow why I would see one whole file, and where I would see it. I really appreciate the last post; that looks more like what I was after.

History
Why does this post require moderator attention?
You might want to add some details to your flag.
Why should this post be closed?

This post was sourced from https://writers.stackexchange.com/q/25635. It is licensed under CC BY-SA 3.0.

0 comment threads

1 answer

+0
−0

A program can only show you information that it records as part of its file format (metadata). If LibreOffice records the data on which date each line is written as part of the normal file format, then, in theory, it could show it to you. And if it didn't show it to you in the interface, you could open up the ODT file (it's a zipped set of XML files) and see for yourself. But it is vanishingly unlikely that it records that information when review changes is turned off.

GIT is a version control system. It records the differences in a file each time you check that file in. So it can tell you the difference between a file on any two dates. Which means it can tell you all the changes that were made to a file on any given date.

But that does not actually tell you what day the changes were made in the file. It tells you what day the changes were checked into the GIT repository. In other words, it does not tell you what you wrote yesterday; it tells you what you checked in yesterday. If you make it a habit to check in at the end of every work day, then what you checked in yesterday is the same as what you wrote yesterday.

But this may not work with LibreOffice files because LibreOffice files are binary files and GIT is designed to work with text files. If you check in binary files, it won't store the differences, it just stores a new copy of the whole files. It is possible that there might be an ODT plugin for GIT that would allows it to unzip the file and store the differences of the XML files inside, but that could get complicated to manage.

If you did have complete versions of the files from different days, however, you could always use the compare version feature of LibreOffice to tell you the difference between them.

History
Why does this post require moderator attention?
You might want to add some details to your flag.

0 comment threads

Sign up to answer this question »