Anonymize (and then de-anonymize) comments in Word documents.

Piotr Czajkowski 9cf0636bee 64bit Windows binary 7 年之前
bin 9cf0636bee 64bit Windows binary 7 年之前
README.md 909e8574f3 Formatting 7 年之前
anonymize.c ff36614bb9 First version 7 年之前
comments.c e62c815d0d Small corrections to error messages 7 年之前
comments.h ff36614bb9 First version 7 年之前
dict.c ff36614bb9 First version 7 年之前
dict.h ff36614bb9 First version 7 年之前
keyval.c ff36614bb9 First version 7 年之前
keyval.h ff36614bb9 First version 7 年之前
makefile ff36614bb9 First version 7 年之前
stopif.h ff36614bb9 First version 7 年之前
test.docx ff36614bb9 First version 7 年之前
xmlbuff.c ff36614bb9 First version 7 年之前
xmlbuff.h ff36614bb9 First version 7 年之前
zip.c e62c815d0d Small corrections to error messages 7 年之前
zip.h ff36614bb9 First version 7 年之前

README.md

Anonymize DOCX Comments

While doing review in Word documents translators/reviewers often use tracked changes and comments to exchange feedback on translations. Usually these people are from different organizations and shouldn't know about each other. Hence the need to anonymize comments and this is what this tool will do for you.

It'll go through comments in "word/comments.xml" and change each author's name to Authornumber, where number starts from 1. It'll keep track of authors so "John Smith" will always be "Author1" for instance. After it's done it'll print list of authors and their new names.

Usage:

./anonymize test.docx - test.docx will be replaced with anonymized version.

./anonymize test.docx test2.docx - anonymized version will be saved as test2.docx leaving original test.docx intact.

Running it on provided test.docx should produce:

"King, Stephen" is now "Author1"
"Kowalski, Jan" is now "Author2"
"Piotr Fronczewski" is now "Author3"

You'll need libarchive and libxml2 to compile it. It was created as learning project while I was exploring C, so use it freely, but at your own risk. Output was tested with Word 2013 and Libre Office Writer.