cstroe / svndumpapi

A Java library for manipulating a Subversion dump file.
GNU Affero General Public License v3.0
5 stars 1 forks source link

MergeInfoParser cannot handle non-inheritable merge info ranges #35

Closed cstroe closed 8 years ago

cstroe commented 8 years ago

As mentioned in this mergeinfo internals article, the merge info ranges can be marked non-inheritable which is encoded as a star * after the merge info range.

For example:

/trunk/file:1234*,1255*,1265*,1266*,1267-1357*,1359*,2001*

Notice the *s. Make MergeInfoParser be able to parse these ranges, and modify the merge info api to deal with these.