Matthew Wilson via RT wrote:
Show quoted text> Tue Sep 12 13:07:52 2006: Request 21451 was acted upon.
> Transaction: Ticket created by WILSON
> Queue: SVN-Web
> Subject: diff arbitrary revisions of a subtree
> Broken in: (no value)
> Severity: Wishlist
> Owner: Nobody
> Requestors: matthew@veradox.com
> Status: new
> Ticket <URL:
http://rt.cpan.org/Ticket/Display.html?id=21451 >
>
> I'm envisioning output just like SVN::Web::Revision,
This needs to be a bit more specific. Consider the current Revision
action output:, which broadly looks like this:
For example, suppose I have a file, trunk/foo, which was changed in r1,
r2, and r3.
Are you expecting the layout to be:
[ metadata for r1 ]
[ log message for r1 ]
[ list of files ]
[ diff for r1 ]
[ metadata for r2 ]
[ log message for r2 ]
[ list of files ]
[ diff for r2 ]
[ metadata for r3 ]
[ log message for r3 ]
[ list of files ]
[ diff for r3 ]
Or:
[metadata for r1 ]
[log message for r1 ]
[ list of files ]
[ metadata for r2 ]
[ log message for r2 ]
[ list of files ]
[ metadata for r3 ]
[ log message for r3 ]
[ list of files ]
[ diff from r1 to r3 ]
Or something else?
N