Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
www.pm.org/perl_mongers.dtd
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
75 lines (65 sloc)
1.23 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- Perl Mongers groups DTD --> | |
<!-- https://github.com/perlorg/www.pm.org/blob/master/perl_mongers.dtd --> | |
<!ELEMENT perl_mongers | |
(group)+ | |
> | |
<!ELEMENT group | |
( | |
name, | |
location, | |
(email)*, | |
tsar+, | |
web, | |
(mailing_list)*, | |
(date)* | |
) | |
> | |
<!ATTLIST group id CDATA #REQUIRED> | |
<!ATTLIST group status CDATA "unknown"> | |
<!ELEMENT location | |
( | |
city, | |
(state)?, | |
(region)?, | |
country, | |
continent, | |
longitude, | |
latitude | |
) | |
> | |
<!ELEMENT city (#PCDATA)> | |
<!ELEMENT state (#PCDATA)> | |
<!ELEMENT region (#PCDATA)> | |
<!ELEMENT country (#PCDATA)> | |
<!ELEMENT continent (#PCDATA)> | |
<!ELEMENT latitude (#PCDATA)> | |
<!ELEMENT longitude (#PCDATA)> | |
<!ELEMENT tsar | |
( | |
name, | |
) | |
> | |
<!ELEMENT mailing_list | |
( | |
name, | |
(email)+, | |
subscribe, | |
unsubscribe | |
) | |
> | |
<!ELEMENT name (#PCDATA)> | |
<!ELEMENT web (#PCDATA)> | |
<!ELEMENT subscribe (#PCDATA)> | |
<!ELEMENT unsubscribe (#PCDATA)> | |
<!ELEMENT date (#PCDATA)> | |
<!ATTLIST date type (inception | next_meeting | misc) "misc"> | |
<!ELEMENT email (#PCDATA)> | |
<!ATTLIST email type (group | personal | list | list_admin) "group"> | |
<!ENTITY agrave 'à' > | |
<!ENTITY aacute 'á' > | |
<!ENTITY atilde 'ã' > | |
<!ENTITY egrave 'è' > | |
<!ENTITY eacute 'é' > | |
<!ENTITY oacute 'ó' > | |
<!ENTITY uuml 'ü' > |