1

I am trying to build a simple application that creates a diff of the checked-in source code and its previous version and send it as mail to the list of subscribers.

I am stuck with the part where I need to generate the "diff" of the current version and the previous version in HTML format so that I can easily mail it.

Is there any way to do it using ClearCase tools. If so please guide me..

Thanks in advance

1 Answers1

1

Looking at cleartool diff and cleardiff, it seems you will need to process the cleartool command output in order to generate an html page.

For that, you could consider diff2html.py to create a side-by-side diff in a static html page from an unified diff input. (and cleartool diff can produce a unified diff)
Or consider cdiff.

Community
  • 1
  • 1
VonC
  • 1,262,500
  • 529
  • 4,410
  • 5,250