log.rnc

来自「subversion-1.4.3-1.tar.gz 配置svn的源码」· RNC 代码 · 共 31 行

RNC
31
字号
# XML RELAX NG schema for Subversion command-line client output# For "svn log"include "common.rnc"start = loglog = element log { logentry* }logentry =  element logentry { attlist.logentry, author?, date?, paths?, msg? }attlist.logentry &=  attribute revision { revnum.type }## Changed paths information.paths = element paths { path+ }## Path within repository.path = element path { attlist.path, text }attlist.path &=  ## "action code": A)dd, D)elete, R)eplace or M)odify  attribute action { "A" | "D" | "R" | "M" },  (   ## The copyfrom path within repository.   attribute copyfrom-path { text },   ## Copyfrom revision number.   attribute copyfrom-rev { revnum.type })?## Log message.msg = element msg { text }

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?