~svn/ubuntu/raring/subversion/ppa

« back to all changes in this revision

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

  • Committer: Bazaar Package Importer
  • Author(s): Adam Conrad
  • Date: 2005-12-05 01:26:14 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20051205012614-qom4xfypgtsqc2xq
Tags: 1.2.3dfsg1-3ubuntu1
Merge with the final Debian release of 1.2.3dfsg1-3, bringing in
fixes to the clean target, better documentation of the libdb4.3
upgrade and build fixes to work with swig1.3_1.3.27.

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)>
 
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 -->