list.rnc
来自「subversion-1.4.3-1.tar.gz 配置svn的源码」· RNC 代码 · 共 28 行
RNC
28 行
# XML RELAX NG schema for Subversion command-line client output# For "svn list"include "common.rnc"start = listslists = element lists { \list+ }## A target to the list command.\list = element list { attlist.list, entry* }attlist.list &= ## Local path or repository URL. attribute path { target.type }## A directory entry.entry = element entry { attlist.entry, name, size?, commit, lock? }attlist.entry &= ## The kind of the entry. attribute kind { "dir" | "file" }## Name of the file or directory.name = element name { string }## File size in bytes.size = element size { xsd:nonNegativeInteger }
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?