Reputation: 2667
Lets say I have two items:
Cat
Dog
Is there anyway of comparing them easily to see difference between the two? I know I can get PublishedItemComparer which compares -Cat to -CatDB(being the published item in the database). Also Sitecore version ribbon allows you to compare revisions of the content item in sitecore.
I guess the released comparison tools just arn't enough for my needs. Let me know if there is a solution currently out there if not I may have to look into creating one :D.
Upvotes: 3
Views: 1943
Reputation: 32240
You can take advantage of the item serialization here.
Here's what you should do:
/data/serialization
by defaultNow, when you have TXT representation of each items, you can use usual comparing tools, like WinMerge, to do the actual comparison.
Upvotes: 4