diff options
author | Ulrich Müller <ulm@gentoo.org> | 2022-01-25 01:31:52 +0100 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2022-01-25 01:31:52 +0100 |
commit | c238a3e8fd3240b27f39bb25f3368e36912b71fc (patch) | |
tree | 8c14b69258ed0bce7d3488ecb8a14088f636b186 | |
parent | devbook.rnc: Update from devmanual (diff) | |
download | nxml-gentoo-schemas-c238a3e8fd3240b27f39bb25f3368e36912b71fc.tar.gz nxml-gentoo-schemas-c238a3e8fd3240b27f39bb25f3368e36912b71fc.tar.bz2 nxml-gentoo-schemas-c238a3e8fd3240b27f39bb25f3368e36912b71fc.zip |
mirrors.rnc: Update from DTDnxml-gentoo-schemas-20220125
Signed-off-by: Ulrich Müller <ulm@gentoo.org>
-rw-r--r-- | mirrors.rnc | 26 |
1 files changed, 4 insertions, 22 deletions
diff --git a/mirrors.rnc b/mirrors.rnc index e516d0c..23a8d7d 100644 --- a/mirrors.rnc +++ b/mirrors.rnc @@ -1,27 +1,20 @@ -# $Header: /var/cvsroot/gentoo/xml/htdocs/dtd/mirrors.dtd,v 1.3 2009/12/03 09:43:39 robbat2 Exp $ - # This file is used for keeping the new mirrors.xml file # element: mirrors -# description: A set of mirrorgroups followed by a list of countries with their code +# description: A set of mirrorgroups # example: <mirrors> # <mirrorgroup country="US" region="North America"> # ... # </mirrorgroup> # ... -# <countries> -# <country code="CA">Canada</country> -# ... -# </countries> # </mirrors> namespace a = "http://relaxng.org/ns/compatibility/annotations/1.0" -mirrors = element mirrors { attlist.mirrors, mirrorgroup*, countries } +mirrors = element mirrors { attlist.mirrors, mirrorgroup* } attlist.mirrors &= empty # element: mirrorgroup # description: Group mirrors by region and country. -# The country code must exist in //countries/country # example: <mirrorgroup region="South America" country="BZ"> # <mirror> # ... @@ -31,7 +24,8 @@ attlist.mirrors &= empty mirrorgroup = element mirrorgroup { attlist.mirrorgroup, mirror* } attlist.mirrorgroup &= attribute region { text }, - attribute country { xsd:IDREF } + attribute country { text }, + attribute countryname { text }? # element: mirror # description: One per mirror; name the mirror and provide one or more uris # optionally: provide GPS coordinates, a city and a bug id. @@ -64,16 +58,4 @@ attlist.uri &= [ a:defaultValue = "n" ] attribute partial { "Y" | "y" | "N" | "n" }?, [ a:defaultValue = "http" ] attribute protocol { "http" | "ftp" | "rsync" }? -# element: countries -# description: A list of countries with their code and name -# example: <countries> -# <country code="CA">Canada</country> -# <countries> -countries = element countries { attlist.countries, country* } -attlist.countries &= empty -# element: country -# description: A country with its code -# example: <country code="CA">Canada</country> -country = element country { attlist.country, text } -attlist.country &= attribute code { xsd:ID } start = mirrors |