xref: /Universal-ctags/Units/parser-dtd.r/colons-in-name.d/input.dtd (revision ebdab5e898cb9657e60c8956c450695b7aaf98de)
1<?xml version="1.0" encoding="UTF-8"?>
2
3<!-- Taken from OOO320_m19/framework/dtd/accelerator.dtd -->
4
5<!--
6
7  DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
8
9  Copyright 2000, 2010 Oracle and/or its affiliates.
10
11  OpenOffice.org - a multi-platform office productivity suite
12
13  This file is part of OpenOffice.org.
14
15  OpenOffice.org is free software: you can redistribute it and/or modify
16  it under the terms of the GNU Lesser General Public License version 3
17  only, as published by the Free Software Foundation.
18
19  OpenOffice.org is distributed in the hope that it will be useful,
20  but WITHOUT ANY WARRANTY; without even the implied warranty of
21  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
22  GNU Lesser General Public License version 3 for more details
23  (a copy is included in the LICENSE file that accompanied this code).
24
25  You should have received a copy of the GNU Lesser General Public License
26  version 3 along with OpenOffice.org.  If not, see
27  <http://www.openoffice.org/license.html>
28  for a copy of the LGPLv3 License.
29
30-->
31
32<!ENTITY % boolean		"(true|false)">
33
34<!ELEMENT accel:acceleratorlist (accel:item*)>
35<!ATTLIST accel:acceleratorlist
36	xmlns:accel CDATA #FIXED "http://openoffice.org/2001/accel"
37	xmlns:xlink CDATA #FIXED "http://www.w3.org/1999/xlink"
38>
39
40<!ELEMENT accel:item EMPTY>
41<!ATTLIST accel:item
42	accel:code CDATA #REQUIRED
43	accel:shift %boolean; "false"
44	accel:mod1 %boolean; "false"
45	accel:mod2 %boolean; "false"
46	xlink:href CDATA #REQUIRED
47>
48