README.dtd
上传用户:huihesys
上传日期:2007-01-04
资源大小:3877k
文件大小:2k
源码类别:

WEB邮件程序

开发平台:

C/C++

  1. <!-- DTD for WebMail README -->
  2. <!-- CVS ID: $Id: README.dtd,v 1.2 2000/04/06 08:02:01 wastl Exp $ -->
  3. <!--
  4.  * Copyright (C) 2000 Sebastian Schaffert
  5.  * 
  6.  * This program is free software; you can redistribute it and/or
  7.  * modify it under the terms of the GNU General Public License
  8.  * as published by the Free Software Foundation; either version 2
  9.  * of the License, or (at your option) any later version.
  10.  * 
  11.  * This program is distributed in the hope that it will be useful,
  12.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14.  * GNU General Public License for more details.
  15.  * 
  16.  * You should have received a copy of the GNU General Public License
  17.  * along with this program; if not, write to the Free Software
  18.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  19. -->
  20. <!ELEMENT README (TITLE,AUTHOR,SECTION+)>
  21. <!ELEMENT TITLE (#PCDATA)>
  22. <!ELEMENT AUTHOR (#PCDATA)>
  23. <!ELEMENT SECTION (SUBSECTION|P|CONTENTS)*>
  24. <!ELEMENT CONTENTS (#PCDATA)>
  25. <!ELEMENT SUBSECTION (SUBSUBSECTION|P)*>
  26. <!ELEMENT SUBSUBSECTION (P)*>
  27. <!ELEMENT P (#PCDATA|LIST|NLIST|NOTE|TABLE|STRONG|CODE|EM|A|BR)*>
  28. <!ELEMENT LIST (ITEM)*>
  29. <!ELEMENT NLIST (ITEM)*>
  30. <!ELEMENT ITEM (#PCDATA|TABLE|P|STRONG|CODE|EM|A|BR)*>
  31. <!ELEMENT NOTE (#PCDATA|STRONG|CODE|EM|A|BR)*>
  32. <!ELEMENT STRONG (#PCDATA|A|EM)*>
  33. <!ELEMENT EM (#PCDATA|A)*>
  34. <!ELEMENT CODE (#PCDATA|STRONG|EM|A|BR)*>
  35. <!ELEMENT BR (#PCDATA)>
  36. <!ELEMENT A (#PCDATA)>
  37. <!ELEMENT TABLE (TR)*>
  38. <!ELEMENT TR (TD)*>
  39. <!ELEMENT TD (#PCDATA|CODE|EM|STRONG|A)*>
  40. <!-- Sections, Subsections and Subsubsections require a name (the title of the section)
  41.      and a unique ID within the document for referencing -->
  42. <!ATTLIST SECTION       name CDATA #REQUIRED
  43.                         id   CDATA #REQUIRED>
  44. <!ATTLIST SUBSECTION    name CDATA #REQUIRED
  45.                         id   CDATA #REQUIRED>
  46. <!ATTLIST SUBSUBSECTION name CDATA #REQUIRED
  47.                         id   CDATA #REQUIRED>
  48. <!-- Links are very simple here, they just require a reference -->
  49. <!ATTLIST A             href CDATA #REQUIRED>