alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

What this is

This file is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Other links

The source code

<?xml version="1.0" encoding="UTF-8"?>

<!-- This DTD describes how WebMail help files should be built -->

<!-- CVS ID: $Id: webmail_help.dtd,v 1.1 2002/10/04 10:21:16 wastl Exp $ -->

<!--
 * Copyright (C) 2000 Sebastian Schaffert
 * 
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.
 * 
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 * 
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
-->

<!ELEMENT help (helptopic*)>

<!-- Each part of WebMail should have at least one helptopic which describes its functionality for
     the user.
     A helptopic has a id so it can be referenced.
     In the audience attribute the class of users this section applies to (novice, intermediate or 
        advanced)
-->
<!ELEMENT helptopic (icon?,helpdata,ref*)>
<!ATTLIST helptopic 
	id		CDATA				#REQUIRED
	title		CDATA				#REQUIRED
	audience	(novice|intermediate|advanced)	#IMPLIED>

<!-- Contains the real data of the help topic -->
<!ELEMENT helpdata (#PCDATA|note|warning|p|br|em|strong)*>

<!-- A note for the user -->
<!ELEMENT note (#PCDATA|p|br|em|strong)*>

<!-- A warning for the user; might e.g. be displayed in a red box -->
<!ELEMENT warning (#PCDATA|p|br|em|strong)*>

<!-- Some formatting elements -->
<!ELEMENT p (#PCDATA|p|br|em|strong|ul)*>
<!ELEMENT br EMPTY>
<!ELEMENT em (#PCDATA|strong)*>
<!ELEMENT strong (#PCDATA|em)*>
<!ELEMENT ul (li+)>
<!ELEMENT li (#PCDATA|strong|em|br)*>

<!-- References to other topics -->
<!ELEMENT ref EMPTY>
<!ATTLIST ref
	ref-id		CDATA				#REQUIRED>

<!ELEMENT icon EMPTY>
<!ATTLIST icon
	href		CDATA				#REQUIRED>

... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2021 Alvin Alexander, alvinalexander.com
All Rights Reserved.

A percentage of advertising revenue from
pages under the /java/jwarehouse URI on this website is
paid back to open source projects.