D
david.karr
I'm writing a script that will (among other things) search the content
of a target element at a revision for a particular substring. In fact,
it will iterate through the available revisions for an element,
searching for the substring.
In looking at the numerous SVN Perl packages, I started with
"SVN::Client". This gives me a convenient interface to get the
revision numbers available for a target element.
Next, I have to be able to get the text content of the target element
at each of those revisions, in order to search for a substring. The
only obvious interface in SVN::Client that gives me access to the
element content is the "cat()" method, which writes the content to a
file descriptor. I suppose I could get this to work, but this seems
pretty indirect.
Assuming I'm not missing a different way to do this with SVN::Client,
among the numerous other SVN Perl packages, is there another one that
would give me convenient access to the content of an element at a
revision?
of a target element at a revision for a particular substring. In fact,
it will iterate through the available revisions for an element,
searching for the substring.
In looking at the numerous SVN Perl packages, I started with
"SVN::Client". This gives me a convenient interface to get the
revision numbers available for a target element.
Next, I have to be able to get the text content of the target element
at each of those revisions, in order to search for a substring. The
only obvious interface in SVN::Client that gives me access to the
element content is the "cat()" method, which writes the content to a
file descriptor. I suppose I could get this to work, but this seems
pretty indirect.
Assuming I'm not missing a different way to do this with SVN::Client,
among the numerous other SVN Perl packages, is there another one that
would give me convenient access to the content of an element at a
revision?