common.rnc
来自「subversion-1.4.3-1.tar.gz 配置svn的源码」· RNC 代码 · 共 51 行
RNC
51 行
# XML RELAX NG schema for Subversion command-line client output# Common declarations# Data types.## A revision number.revnum.type = xsd:nonNegativeInteger## A user name.username.type = string## A path or URL.target.type = string | xsd:anyURI## An UUID.uuid.type = string## An MD5 checksum.md5sum.type = xsd:hexBinary { length = "16" }# Common elements## Commit info.commit = element commit { attlist.commit, author?, date? }attlist.commit &= attribute revision { revnum.type }author = element author { username.type }date = element date { xsd:dateTime }## Lock info stored in repository or working copy.lock = element lock { \token, owner, comment?, created, expires? }## Lock token.\token = element token { xsd:anyURI }## Lock owner.owner = element owner { username.type }## Lock comment.comment = element comment { text }## Creation date.created = element created { xsd:dateTime }## Expiration date.expires = element expires { xsd:dateTime }
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?