forked from php/web-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.dtd
98 lines (92 loc) · 3.08 KB
/
package.dtd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<!--
$Id: package.dtd,v 1.1 2001-04-17 01:17:09 ssb Exp $
This is the PEAR package description, version 1.0.
It should be used with the informal public identifier:
"-//PHP Group//DTD PEAR Package 1.0//EN//XML"
Copyright (c) 1997-2001 The PHP Group
This source file is subject to version 2.02 of the PHP license,
that is bundled with this package in the file LICENSE, and is
available at through the world-wide-web at
http://www.php.net/license/2_02.txt.
If you did not receive a copy of the PHP license and are unable to
obtain it through the world-wide-web, please send a note to
[email protected] so we can mail you a copy immediately.
Authors:
Stig S. Bakken <[email protected]>
-->
<!--============== attributes present in all elements ======================-->
<!ENTITY % global.atts "id ID #IMPLIED">
<!--============== attributes common to several elements ===================-->
<!ENTITY % role.atts "Role (php|ext|test|doc) 'php'">
<!ENTITY % extension.atts "Debug (on|off) 'off'
ThreadSafe (on|off) 'off'">
<!ENTITY % format.atts "Format CDATA #IMPLIED">
<!--=============== ELEMENT: Package =======================================-->
<!ELEMENT Package (Name, Summary, Maintainer, Release, FileList)>
<!ATTLIST Package
%global.atts;
Type (Source | Binary | Empty) "Empty"
>
<!--=============== ELEMENT: Name ==========================================-->
<!ELEMENT Name (#PCDATA)>
<!ATTLIST Name
%global.atts;
>
<!--=============== ELEMENT: Summary =======================================-->
<!ELEMENT Summary (#PCDATA)>
<!ATTLIST Summary
%global.atts;
>
<!--=============== ELEMENT: Maintainer ====================================-->
<!ELEMENT Maintainer (Initials, Name, Email)>
<!ATTLIST Maintainer
%global.atts;
>
<!--=============== ELEMENT: Initials ======================================-->
<!ELEMENT Initials (#PCDATA)>
<!ATTLIST Initials
%global.atts;
>
<!--=============== ELEMENT: Email =========================================-->
<!ELEMENT Email (#PCDATA)>
<!ATTLIST Email
%global.atts;
>
<!--=============== ELEMENT: Release =======================================-->
<!ELEMENT Release (Version, Date, Notes?)>
<!ATTLIST Release
%global.atts;
>
<!--=============== ELEMENT: Version =======================================-->
<!ELEMENT Version (#PCDATA)>
<!ATTLIST Version
%global.atts;
>
<!--=============== ELEMENT: Date =========================================-->
<!ELEMENT Date (#PCDATA)>
<!ATTLIST Date
%global.atts;
>
<!--=============== ELEMENT: Notes =========================================-->
<!ELEMENT Notes (#PCDATA)>
<!ATTLIST Notes
%global.atts;
>
<!--=============== ELEMENT: FileList ======================================-->
<!ELEMENT FileList (Dir | File)*>
<!ATTLIST FileList
%global.atts;
>
<!--=============== ELEMENT: Dir ===========================================-->
<!ELEMENT Dir (#PCDATA)>
<!ATTLIST Dir
%global.atts;
>
<!--=============== ELEMENT: File ==========================================-->
<!ELEMENT File (#PCDATA)>
<!ATTLIST File
%global.atts;
%role.atts;
%extension.atts;
%format.atts;
>