Gentoo Archives: gentoo-commits

From: "Robin H. Johnson (robbat2)" <robbat2@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo commit in xml/htdocs/dtd: mirrors.dtd
Date: Tue, 08 Jan 2008 13:16:52
Message-Id: E1JCEK1-0000Ys-L6@stork.gentoo.org
1 robbat2 08/01/08 13:16:49
2
3 Added: mirrors.dtd
4 Log:
5 Rename file for neysx.
6
7 Revision Changes Path
8 1.1 xml/htdocs/dtd/mirrors.dtd
9
10 file : http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/dtd/mirrors.dtd?rev=1.1&view=markup
11 plain: http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/dtd/mirrors.dtd?rev=1.1&content-type=text/plain
12
13 Index: mirrors.dtd
14 ===================================================================
15 <!-- $Header: /var/cvsroot/gentoo/xml/htdocs/dtd/mirrors.dtd,v 1.1 2008/01/08 13:16:49 robbat2 Exp $ -->
16 <!-- This file is used for keeping the new mirrors.xml file -->
17
18 <!--<!ENTITY % common SYSTEM "common.dtd">
19
20 %common;
21 -->
22
23 <!--
24 element: mirrors
25 description: A set of mirrorgroups
26 example: <mirrors>
27 <mirrorgroup country="US" region="North America">
28 ...
29 </mirrorgroup>
30 ...
31 </mirrors>
32 -->
33
34 <!ELEMENT mirrors (mirrorgroup*)>
35
36 <!--
37 element: mirrorgroup
38 description: Group mirrors by region and country.
39 example: <mirrorgroup region="South America" country="BZ" countryname="Brazil">
40 <mirror>
41 ...
42 </mirror>
43 ...
44 </mirrorgroup
45 -->
46
47 <!ELEMENT mirrorgroup (mirror*)>
48 <!ATTLIST mirrorgroup region CDATA #REQUIRED
49 country CDATA #REQUIRED
50 countryname CDATA #IMPLIED>
51 <!--
52 element: mirror
53 description: One per mirror; name the mirror and provide one or more uris
54 example: <mirror>
55 <name>OSU Open Source Lab</name>
56 <uri protocol="http">http://gentoo.osuosl.org/</uri>
57 <uri protocol="ftp">ftp://gentoo.osuosl.org/</uri>
58 </mirror>
59 -->
60 <!ELEMENT mirror (name, uri+)>
61
62 <!--
63 element: name
64 description: Name of the mirror
65 note: Do not include a country and protocol pair, "(USA/http)" as they will
66 be built by the XSL.
67 example: <name>OSU Open Source Lab</name>
68 -->
69 <!ELEMENT name (#PCDATA)>
70
71 <!--
72 element: uri
73 description: A Uniform Resource Locator for a given mirror
74 example: <uri protocol='http' ipv4='y' ipv6='y'>http://gentoo.osuosl.org/</uri>
75 -->
76 <!ELEMENT uri (#PCDATA)>
77 <!ATTLIST uri ipv4 (Y|y|N|n) "y"
78 ipv6 (Y|y|N|n) "n"
79 active (Y|y|N|n) "y"
80 partial (Y|y|N|n) "n"
81 protocol (http|ftp|rsync) "http">
82
83
84
85 --
86 gentoo-commits@l.g.o mailing list