up vote 0 down vote favorite
share [g+] share [fb]

I'm looking for some sort of tool that can take an html document and pump out a selector based representation of the file.

For example:

<div>
Some text
  <ul class="foo">
    <li>First</li>
    <li>Second</li>
  <ul>
</div>

And output a flat text file in the spirit of:

 div
 div #text Some text
 div ul.foo li Frist
 div ul.foo li Second

The purpose of doing this would be to make a predicate function of some sort that would be able to compare two HTML pages and tell to what degree they match and explicitly be able to tell in isolation how much of the content or layout is different.

(For the curious, this is for the QA phase of a relatively large data migration project)

link|improve this question

80% accept rate
If you're looking for a tool to do this, instead of writing that tool yourself, then maybe this question isn't programming-related. – ChrisW Sep 18 '09 at 22:43
Thanks for your comment Chris. I do, however, believe that not writing code is as much programming as writing code. – memet Sep 18 '09 at 23:51
It's that this seemed to me to be such a short/easy coding problem that I would have wanted to code it, instead of looking for an existing tool: 1) Load the HTML into a DOM 2) Walk/iterate the nodes in the DOM 3) Print each node (including its ancestor informatin) in the format you specified. – ChrisW Sep 20 '09 at 11:58
feedback

1 Answer

up vote 0 down vote accepted

I've found on another forum a program called haml which seems to do this exactly. For future reference:

http://wiki.rubyonrails.org/howtos/templates/haml

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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