-
Notifications
You must be signed in to change notification settings - Fork 15
/
compress.xml
37 lines (37 loc) · 1.07 KB
/
compress.xml
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
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE registry SYSTEM 'reg.dtd' [
<!ENTITY % ents SYSTEM 'reg.ent'>
<!ELEMENT registry ( meta, method* ) >
<!ELEMENT method ( name, desc, doc ) >
%ents;
]>
<?xml-stylesheet type='text/xsl' href='compress.xsl'?>
<registry>
<meta>
<title>Stream Compression Methods</title>
&LEGALNOTICE;
<overview>This is the official registry of stream compression methods as maintained by the ®ISTRAR; and authorized by &xep0138;.</overview>
<revision>
<version>0.2</version>
<date>2005-12-14</date>
<initials>psa</initials>
<remark>Added LZW (DCLZ) method.</remark>
</revision>
<revision>
<version>0.1</version>
<date>2005-06-16</date>
<initials>psa</initials>
<remark>Initial version (ZLIB method).</remark>
</revision>
</meta>
<method>
<name>lzw</name>
<desc>the LZW (DCLZ) compression method</desc>
<doc>&ecma151;</doc>
</method>
<method>
<name>zlib</name>
<desc>the ZLIB compression method</desc>
<doc>&rfc1950;</doc>
</method>
</registry>