|
Kitlist
A list manager for maintaining kit lists
|
<!--
This file is part of Kitlist, a program to maintain a simple list
of items and assign items to one or more categories.
Copyright (C) 2008,2009 Frank Dean
Kitlist 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 3 of the License, or
(at your option) any later version.
Kitlist 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 Kitlist. If not, see <http://www.gnu.org/licenses/>.
-->
<!ELEMENT kitlist (items, categories)>
<!ELEMENT items (item*)>
<!ELEMENT item (#PCDATA)>
<!ELEMENT categories (category*)>
<!ELEMENT category (category-name, category-items)>
<!ELEMENT category-name (#PCDATA)>
<!ELEMENT category-items (category-item*)>
<!ELEMENT category-item EMPTY>
<!ATTLIST item
id CDATA #REQUIRED
checked (true|false) "true">
<!ATTLIST category id CDATA #REQUIRED>
<!ATTLIST category-item id CDATA #REQUIRED>