vote up 1 vote down star

I receive HTML pages from our creative team, and then use those to build aspx pages. One challenge I frequently face is getting the HTML I spit out to match theirs exactly. I almost always end up screwing up the nesting of <div>s between my page and the master pages.

Does anyone know of a tool that will help in this situation -- something that will compare 2 pages and output the structural differences? I can't use a standard diff tool, because IDs change from what I receive from creative, text replaces lorem ipsum, etc..

flag

58% accept rate

5 Answers

vote up 5 vote down

You can use HTMLTidy to convert the HTML to well-formed XML so you can use XML Diff, as Gulzar suggested.

tidy -asxml index.html
link|flag
vote up 2 vote down

If out output XML compliant HTML. Or at least translate your HTML product into XML compliancy, you at least could then XSL your output to remove the content and id tags. Apply the same transformation to their html, and then compare.

link|flag
vote up 0 vote down

winmerge is a good visual diff program

link|flag
vote up 0 vote down

I was thinking on lines of XML Diff since HTML can be represented as an XML Document. The challenge with HTML is that it might not be always well formed. Found one more here showing how to use XMLDiff class.

link|flag
HTML is in fact not a subset of XML, but rather a descendant of SGML which has significantly more lenient syntax than XML. However your suggestion is still a good one, if he is working with XHTML (which is XML) then an XML diff tool is key. BeyondCompare has a plugin for XML compares also. – Boris Terzic Sep 7 '08 at 20:02
Thanks Boris. Made some edits to make it more clear. – Gulzar Sep 8 '08 at 20:17
vote up 0 vote down

A copy of my own answer from here.


What about DaisyDiff (Java and PHP vesions available).

Following features are really nice:

  • Works with badly formed HTML that can be found "in the wild".
  • The diffing is more specialized in HTML than XML tree differs. Changing part of a text node will not cause the entire node to be changed.
  • In addition to the default visual diff, HTML source can be diffed coherently.
  • Provides easy to understand descriptions of the changes.
  • The default GUI allows easy browsing of the modifications through keyboard shortcuts and links.
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.