~svn/ubuntu/oneiric/subversion/ppa

« back to all changes in this revision

Viewing changes to subversion/clients/cmdline/dtd/list.dtd

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2006-12-13 17:57:16 UTC
  • mfrom: (1.1.6 upstream) (0.1.3 etch)
  • Revision ID: james.westby@ubuntu.com-20061213175716-2ysv6z4w5dpa2r2f
Tags: 1.4.2dfsg1-2ubuntu1
* Merge with Debian unstable; remaining changes:
  - Create pot file on build.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<!-- XML DTD for Subversion command-line client output. -->
2
 
 
3
 
<!-- Common attributes and elements -->
4
 
<!ELEMENT author (#PCDATA)>  <!-- user name -->
5
 
<!ELEMENT date (#PCDATA)>  <!-- date as "yyyy-mm-ddThh:mm:ss.ssssssZ" -->
6
 
 
7
 
<!-- For "svn list" -->
8
 
<!ELEMENT lists (list+)>
9
 
<!ELEMENT list (entry*)>
10
 
<!ATTLIST list path CDATA #REQUIRED>  <!-- local path or URL -->
11
 
<!ELEMENT entry (name, size?, commit, lock?)>
12
 
<!ATTLIST entry kind (dir | file) #REQUIRED>
13
 
<!ELEMENT name (#PCDATA)>  <!-- name of file or directory -->
14
 
<!ELEMENT size (#PCDATA)>  <!-- file size in bytes: integer -->
15
 
<!ELEMENT commit (author, date)>
16
 
<!ATTLIST commit revision CDATA #REQUIRED>  <!-- revision number: integer -->
17
 
<!-- Lock info stored repos. -->
18
 
<!ELEMENT lock (token, owner, comment?, created, expires?)>
19
 
<!ELEMENT token (#PCDATA)>    <!-- lock token URI -->
20
 
<!ELEMENT owner (#PCDATA)>    <!-- lock owner -->
21
 
<!ELEMENT comment (#PCDATA)>  <!-- lock comment -->
22
 
<!ELEMENT created (#PCDATA)>  <!-- creation date in ISO format -->
23
 
<!ELEMENT expires (#PCDATA)>  <!-- expiration date in ISO format -->