public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo commit in xml/htdocs/dtd: mirror.dtd
@ 2008-01-06 23:39 Robin H. Johnson (robbat2)
  0 siblings, 0 replies; 4+ messages in thread
From: Robin H. Johnson (robbat2) @ 2008-01-06 23:39 UTC (permalink / raw
  To: gentoo-commits

robbat2     08/01/06 23:39:31

  Added:                mirror.dtd
  Log:
  New mirror.dtd for mirrors.xml.

Revision  Changes    Path
1.1                  xml/htdocs/dtd/mirror.dtd

file : http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/dtd/mirror.dtd?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/dtd/mirror.dtd?rev=1.1&content-type=text/plain

Index: mirror.dtd
===================================================================
<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/dtd/mirror.dtd,v 1.1 2008/01/06 23:39:30 robbat2 Exp $ -->
<!-- This file is used for keeping the new mirrors.xml file -->

<!--<!ENTITY % common SYSTEM "common.dtd">

%common;
-->

<!--
  element: mirrors
  description: A set of mirrorgroups
  example: <mirrors>
             <mirrorgroup country="US" region="North America">
               ...
             </mirrorgroup>
             ...
           </mirrors>
-->

<!ELEMENT mirrors (mirrorgroup+)>

<!--
  element: mirrorgroup
  description: Group mirrors by region and country.
  example: <mirrorgroup region="South America" country="BZ">
             <mirror>
               ...
             </mirror>
             ...
           </mirrorgroup
-->

<!ELEMENT mirrorgroup (mirror+)>
<!ATTLIST mirrorgroup region CDATA #REQUIRED
                      country CDATA #REQUIRED
                      ipv4 CDATA #IMPLIED
                      ipv6 CDATA #IMPLIED>
<!--
  element: mirror
  description: One per mirror; name the mirror and provide one or more uris
  example: <mirror>
             <uri link="http">http://gentoo.osuosl.org/</uri>
             <name>OSU Open Source Lab (USA/http)</name>
           </mirror>
-->
<!ELEMENT mirror (name, uri*)>

<!--
  element: name
  description: Name of the mirror
  example: <name>OSU Open Source Lab</name>
-->
<!ELEMENT name (#PCDATA)>

<!--
  element: uri
  description: A Uniform Resource Locator for a given mirror
  example: <uri protocol='http' ipv4='y' ipv6='y'>http://gentoo.osuosl.org/</uri
-->
<!ELEMENT uri (#PCDATA)>
<!ATTLIST uri ipv4 (Y|y|N|n) "y"
              ipv6 (Y|y|N|n) "n"
              protocol (http|ftp|rsync) "http">



-- 
gentoo-commits@lists.gentoo.org mailing list



^ permalink raw reply	[flat|nested] 4+ messages in thread

* [gentoo-commits] gentoo commit in xml/htdocs/dtd: mirror.dtd
@ 2008-01-06 23:53 Robin H. Johnson (robbat2)
  0 siblings, 0 replies; 4+ messages in thread
From: Robin H. Johnson (robbat2) @ 2008-01-06 23:53 UTC (permalink / raw
  To: gentoo-commits

robbat2     08/01/06 23:53:06

  Modified:             mirror.dtd
  Log:
  Include a direct short name for each group for now (exclude them later), and fix examples.

Revision  Changes    Path
1.2                  xml/htdocs/dtd/mirror.dtd

file : http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/dtd/mirror.dtd?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/dtd/mirror.dtd?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/dtd/mirror.dtd?r1=1.1&r2=1.2

Index: mirror.dtd
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/dtd/mirror.dtd,v
retrieving revision 1.1
retrieving revision 1.2
diff -p -w -b -B -u -u -r1.1 -r1.2
--- mirror.dtd	6 Jan 2008 23:39:30 -0000	1.1
+++ mirror.dtd	6 Jan 2008 23:53:05 -0000	1.2
@@ -1,4 +1,4 @@
-<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/dtd/mirror.dtd,v 1.1 2008/01/06 23:39:30 robbat2 Exp $ -->
+<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/dtd/mirror.dtd,v 1.2 2008/01/06 23:53:05 robbat2 Exp $ -->
 <!-- This file is used for keeping the new mirrors.xml file -->
 
 <!--<!ENTITY % common SYSTEM "common.dtd">
@@ -22,7 +22,7 @@
 <!--
   element: mirrorgroup
   description: Group mirrors by region and country.
-  example: <mirrorgroup region="South America" country="BZ">
+  example: <mirrorgroup region="South America" country="BZ" countryname="Brazil">
              <mirror>
                ...
              </mirror>
@@ -33,6 +33,7 @@
 <!ELEMENT mirrorgroup (mirror+)>
 <!ATTLIST mirrorgroup region CDATA #REQUIRED
                       country CDATA #REQUIRED
+                      countryname CDATA #IMPLIED
                       ipv4 CDATA #IMPLIED
                       ipv6 CDATA #IMPLIED>
 <!--
@@ -40,7 +41,7 @@
   description: One per mirror; name the mirror and provide one or more uris
   example: <mirror>
              <uri link="http">http://gentoo.osuosl.org/</uri>
-             <name>OSU Open Source Lab (USA/http)</name>
+             <name>OSU Open Source Lab</name>
            </mirror>
 -->
 <!ELEMENT mirror (name, uri*)>
@@ -48,6 +49,8 @@
 <!--
   element: name
   description: Name of the mirror
+  note: Do not include a country and protocol pair, "(USA/http)" as they will
+        be built by the XSL.
   example: <name>OSU Open Source Lab</name>
 -->
 <!ELEMENT name (#PCDATA)>
@@ -55,7 +58,7 @@
 <!--
   element: uri
   description: A Uniform Resource Locator for a given mirror
-  example: <uri protocol='http' ipv4='y' ipv6='y'>http://gentoo.osuosl.org/</uri
+  example: <uri protocol='http' ipv4='y' ipv6='y'>http://gentoo.osuosl.org/</uri>
 -->
 <!ELEMENT uri (#PCDATA)>
 <!ATTLIST uri ipv4 (Y|y|N|n) "y"



-- 
gentoo-commits@lists.gentoo.org mailing list



^ permalink raw reply	[flat|nested] 4+ messages in thread

* [gentoo-commits] gentoo commit in xml/htdocs/dtd: mirror.dtd
@ 2008-01-07  0:32 Robin H. Johnson (robbat2)
  0 siblings, 0 replies; 4+ messages in thread
From: Robin H. Johnson (robbat2) @ 2008-01-07  0:32 UTC (permalink / raw
  To: gentoo-commits

robbat2     08/01/07 00:32:37

  Modified:             mirror.dtd
  Log:
  Include notation for partial mirrors.

Revision  Changes    Path
1.3                  xml/htdocs/dtd/mirror.dtd

file : http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/dtd/mirror.dtd?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/dtd/mirror.dtd?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/dtd/mirror.dtd?r1=1.2&r2=1.3

Index: mirror.dtd
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/dtd/mirror.dtd,v
retrieving revision 1.2
retrieving revision 1.3
diff -p -w -b -B -u -u -r1.2 -r1.3
--- mirror.dtd	6 Jan 2008 23:53:05 -0000	1.2
+++ mirror.dtd	7 Jan 2008 00:32:36 -0000	1.3
@@ -1,4 +1,4 @@
-<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/dtd/mirror.dtd,v 1.2 2008/01/06 23:53:05 robbat2 Exp $ -->
+<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/dtd/mirror.dtd,v 1.3 2008/01/07 00:32:36 robbat2 Exp $ -->
 <!-- This file is used for keeping the new mirrors.xml file -->
 
 <!--<!ENTITY % common SYSTEM "common.dtd">
@@ -63,4 +63,5 @@
 <!ELEMENT uri (#PCDATA)>
 <!ATTLIST uri ipv4 (Y|y|N|n) "y"
               ipv6 (Y|y|N|n) "n"
+              partial (Y|y|N|n) "n"
               protocol (http|ftp|rsync) "http">



-- 
gentoo-commits@lists.gentoo.org mailing list



^ permalink raw reply	[flat|nested] 4+ messages in thread

* [gentoo-commits] gentoo commit in xml/htdocs/dtd: mirror.dtd
@ 2008-01-08 13:24 Robin H. Johnson (robbat2)
  0 siblings, 0 replies; 4+ messages in thread
From: Robin H. Johnson (robbat2) @ 2008-01-08 13:24 UTC (permalink / raw
  To: gentoo-commits

robbat2     08/01/08 13:24:07

  Removed:              mirror.dtd
  Log:
  Remove old mirror dtd now. Renamed to mirrors.
-- 
gentoo-commits@lists.gentoo.org mailing list



^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2008-01-08 13:24 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-01-06 23:53 [gentoo-commits] gentoo commit in xml/htdocs/dtd: mirror.dtd Robin H. Johnson (robbat2)
  -- strict thread matches above, loose matches on Subject: below --
2008-01-08 13:24 Robin H. Johnson (robbat2)
2008-01-07  0:32 Robin H. Johnson (robbat2)
2008-01-06 23:39 Robin H. Johnson (robbat2)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox