~ubuntu-branches/ubuntu/wily/coq-doc/wily

« back to all changes in this revision

Viewing changes to contrib/xml/theoryobject.dtd

  • Committer: Bazaar Package Importer
  • Author(s): Stéphane Glondu, Stéphane Glondu, Samuel Mimram
  • Date: 2010-01-07 22:50:39 UTC
  • mfrom: (1.2.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20100107225039-n3cq82589u0qt0s2
Tags: 8.2pl1-1
[ Stéphane Glondu ]
* New upstream release (Closes: #563669)
  - remove patches
* Packaging overhaul:
  - use git, advertise it in Vcs-* fields of debian/control
  - use debhelper 7 and dh with override
  - use source format 3.0 (quilt)
* debian/control:
  - set Maintainer to d-o-m, set Uploaders to Sam and myself
  - add Homepage field
  - bump Standards-Version to 3.8.3
* Register PDF documentation into doc-base
* Add debian/watch
* Update debian/copyright

[ Samuel Mimram ]
* Change coq-doc's description to mention that it provides documentation in
  pdf format, not postscript, closes: #543545.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?xml encoding="ISO-8859-1"?>
 
2
 
 
3
<!-- Copyright (C) 2000-2004, HELM Team                                -->
 
4
<!--                                                                   -->
 
5
<!-- This file is part of HELM, an Hypertextual, Electronic            -->
 
6
<!-- Library of Mathematics, developed at the Computer Science         -->
 
7
<!-- Department, University of Bologna, Italy.                         -->
 
8
<!--                                                                   -->
 
9
<!-- HELM is free software; you can redistribute it and/or             -->
 
10
<!-- modify it under the terms of the GNU General Public License       -->
 
11
<!-- as published by the Free Software Foundation; either version 2    -->
 
12
<!-- of the License, or (at your option) any later version.            -->
 
13
<!--                                                                   -->
 
14
<!-- HELM is distributed in the hope that it will be useful,           -->
 
15
<!-- but WITHOUT ANY WARRANTY; without even the implied warranty of    -->
 
16
<!-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the     -->
 
17
<!-- GNU General Public License for more details.                      -->
 
18
<!--                                                                   -->
 
19
<!-- You should have received a copy of the GNU General Public License -->
 
20
<!-- along with HELM; if not, write to the Free Software               -->
 
21
<!-- Foundation, Inc., 59 Temple Place - Suite 330, Boston,            -->
 
22
<!-- MA  02111-1307, USA.                                              -->
 
23
<!--                                                                   -->
 
24
<!-- For details, see the HELM World-Wide-Web page,                    -->
 
25
<!-- http://cs.unibo.it/helm/.                                         -->
 
26
 
 
27
 
 
28
 
 
29
<!-- Notice: the markup described in this DTD is meant to be embedded -->
 
30
<!-- in foreign markup (e.g. XHTML)                                   -->
 
31
 
 
32
<!ENTITY % theorystructure
 
33
  '(ht:AXIOM|ht:DEFINITION|ht:THEOREM|ht:VARIABLE|ht:SECTION|ht:MUTUAL)*'>
 
34
 
 
35
<!ELEMENT ht:SECTION (%theorystructure;)>
 
36
<!ATTLIST ht:SECTION
 
37
          uri CDATA #REQUIRED>
 
38
 
 
39
<!ELEMENT ht:MUTUAL (ht:DEFINITION,ht:DEFINITION+)>
 
40
 
 
41
<!-- Theory Items -->
 
42
 
 
43
<!ELEMENT ht:AXIOM (Axiom)>
 
44
<!ATTLIST ht:AXIOM
 
45
          uri CDATA #REQUIRED
 
46
          as (Axiom|Declaration) #REQUIRED>
 
47
 
 
48
<!ELEMENT ht:DEFINITION (Definition|InductiveDefinition)>
 
49
<!ATTLIST ht:DEFINITION
 
50
          uri CDATA #REQUIRED
 
51
          as (Definition|InteractiveDefinition|Inductive|CoInductive
 
52
             |Record) #REQUIRED>
 
53
 
 
54
<!ELEMENT ht:THEOREM (type)>
 
55
<!ATTLIST ht:THEOREM
 
56
          uri CDATA #REQUIRED
 
57
          as (Theorem|Lemma|Corollary|Fact|Remark) #REQUIRED>
 
58
 
 
59
<!ELEMENT ht:VARIABLE (Variable)>
 
60
<!ATTLIST ht:VARIABLE
 
61
          uri CDATA #REQUIRED
 
62
          as (Assumption|Hypothesis|LocalDefinition|LocalFact) #REQUIRED>