The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Parse::SVNDiff - Subversion binary diff format parser

VERSION

This document describes version 0.01 of Parse::SVNDiff, released November 6, 2004.

SYNOPSIS

    use Parse::SVNDiff;
    $diff = Parse::SVNDiff->new;
    $diff->parse($raw_svndiff);
    $target_text = $diff->apply($source_text);
    $raw_svndiff = $diff->dump;

DESCRIPTION

This module implements a parser and a dumper for Subversion's svndiff binary diff format. The API is still subject to change in the next few versions.

AUTHORS

Autrijus Tang <autrijus@autrijus.org>

COPYRIGHT

Copyright 2004 by Autrijus Tang <autrijus@autrijus.org>.

This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

See http://www.perl.com/perl/misc/Artistic.html