Lorax 0.1.0 Released

lorax version 0.1.0 has been released!

The Lorax is a diff and patch library for XML/HTML documents, based on
Nokogiri.

It can tell you whether two XML/HTML documents are identical, or if
they’re not, tell you what’s different. In trivial cases, it can even
apply the patch.

It’s based loosely on Gregory Cobena’s master’s thesis paper, which
generates deltas in less than O(n * log n) time, accepting some
tradeoffs in the size of the delta set. You can find his paper at
Gregory Cobena's PhD Thesis.

This is an early alpha release, so please expect bugs. See the failing
tests for more information.

“I am the Lorax, I speak for the trees.”

Changes:

0.1.0 (2010-03-09)

  • Happy Birthday!
  • Diffs and generates patches, and for trivial cases applies patches
    correctly.

On Tue, Mar 9, 2010 at 8:38 PM, Mike D.
[email protected]wrote:

“I am the Lorax, I speak for the trees.”

That’s awesome, great name

On Wed, Mar 10, 2010 at 6:09 AM, Intransition [email protected]
wrote:

It can tell you whether two XML/HTML documents are identical, or if
they’re not, tell you what’s different. In trivial cases, it can even
apply the patch.

Why not in every case?

Because there are still boogs! :smiley:

One example: the XPath pointing at the elements involved in the deltas
doesn’t take into consideration the fact that other sibling elements may
have been inserted or removed as part of an earlier delta. Another
example:
there are edge cases where Lorax can get confused by many identical
sibling
nodes interleaved with changing elements (think whitespace in an HTML
doc).

I’d like to note that the library uses dependency injection to allow a
modular choice of algorithm. So people with better CS chops than me can
take
a whack at it by building their own delta-set generator for their
favorite
algorithm, while still taking using the fast subtree signatures.

If you’re curious and interested, I’d love to have more eyes and hands
on
these issues. Both master and whitespace-fix branches have failing tests
which can tell you where to dive in. The TODO has information on class
responsibilities, algorithmic notes, missing integration tests and a
list of
needed features (like an rspec matcher).

On Mar 9, 10:38 pm, Mike D. [email protected] wrote:

lorax version 0.1.0 has been released!

The Lorax is a diff and patch library for XML/HTML documents, based on
Nokogiri.

It can tell you whether two XML/HTML documents are identical, or if
they’re not, tell you what’s different. In trivial cases, it can even
apply the patch.

Why not in every case?