Author: dsahlberg
Date: Thu Aug 19 20:21:55 2021
New Revision: 1892455
URL: http://svn.apache.org/viewvc?rev=1892455&view=rev
Log:
The attribute reverse-merge on the logentry element of svn log --xml was
missing in the schema. Attribute was added in r1559032. The attribute is
only present in svn log --xml -g so make it optional.
* subversion/svn/schema/log.rnc:
Add attribute
Modified:
subversion/trunk/subversion/svn/schema/log.rnc
Modified: subversion/trunk/subversion/svn/schema/log.rnc
URL:
http://svn.apache.org/viewvc/subversion/trunk/subversion/svn/schema/log.rnc?rev=1892455&r1=1892454&r2=1892455&view=diff
==============================================================================
--- subversion/trunk/subversion/svn/schema/log.rnc (original)
+++ subversion/trunk/subversion/svn/schema/log.rnc Thu Aug 19 20:21:55 2021
@@ -28,7 +28,8 @@ log = element log { logentry* }
logentry =
element logentry { attlist.logentry, author?, date?, paths?, msg?,
revprops?, logentry* }
attlist.logentry &=
- attribute revision { revnum.type }
+ attribute revision { revnum.type },
+ attribute reverse-merge { "true" | "false" }?
## Changed paths information.
paths = element paths { path+ }