From c238a3e8fd3240b27f39bb25f3368e36912b71fc Mon Sep 17 00:00:00 2001 From: Ulrich Müller Date: Tue, 25 Jan 2022 01:31:52 +0100 Subject: mirrors.rnc: Update from DTD MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Ulrich Müller --- mirrors.rnc | 26 ++++---------------------- 1 file 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: # # ... # # ... -# -# Canada -# ... -# # 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: # # ... @@ -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: -# Canada -# -countries = element countries { attlist.countries, country* } -attlist.countries &= empty -# element: country -# description: A country with its code -# example: Canada -country = element country { attlist.country, text } -attlist.country &= attribute code { xsd:ID } start = mirrors -- cgit v1.2.3-65-gdbad