diff options
author | Olivier Hallot <olivier.hallot@libreoffice.org> | 2017-06-06 17:00:08 -0300 |
---|---|---|
committer | Jan Holesovsky <kendy@collabora.com> | 2017-08-07 10:51:14 +0200 |
commit | 9f7edddfe613a3e61a1160028c853d9fc569876a (patch) | |
tree | 551d76edec3457e00ca1635e43eb3ddcfe2cd911 /helpers | |
parent | ae4b238aec8977510b63b5a30c71e0aa933c279a (diff) |
Make xml-lang optional in help DTD
Change DTD to make xml-lang optional, as requested by patch
https://gerrit.libreoffice.org/#/c/32296/
Change-Id: I5ef02dddb8486b75e16f3b141aa792b1dfb43f86
Reviewed-on: https://gerrit.libreoffice.org/38465
Reviewed-by: Olivier Hallot <olivier.hallot@edx.srv.br>
Tested-by: Olivier Hallot <olivier.hallot@edx.srv.br>
Reviewed-by: Jan Holesovsky <kendy@collabora.com>
Diffstat (limited to 'helpers')
-rw-r--r-- | helpers/xmlhelp.dtd | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/helpers/xmlhelp.dtd b/helpers/xmlhelp.dtd index 2c789604e4..d6564f5f4e 100644 --- a/helpers/xmlhelp.dtd +++ b/helpers/xmlhelp.dtd @@ -18,6 +18,9 @@ <!-- Version 03-Feb-2006 added optional localize attribute to images + +Version 06-Jun-2017 + Made xml-lang optional (#IMPLIED) --> <!ELEMENT ahelp (#PCDATA | embedvar | br | comment | emph | sub | sup | item | link | switchinline | variable)*> @@ -28,7 +31,7 @@ Version 03-Feb-2006 <!ELEMENT alt (#PCDATA)> <!ATTLIST alt - xml-lang CDATA #REQUIRED + xml-lang CDATA #IMPLIED id CDATA #REQUIRED localize CDATA #IMPLIED > @@ -40,7 +43,7 @@ Version 03-Feb-2006 <!ELEMENT bookmark (bookmark_value)*> <!ATTLIST bookmark branch CDATA #REQUIRED - xml-lang CDATA #REQUIRED + xml-lang CDATA #IMPLIED id CDATA #REQUIRED localize CDATA #IMPLIED > @@ -51,7 +54,7 @@ Version 03-Feb-2006 <!ELEMENT caption (#PCDATA | embedvar | br | emph | sub | sup | item | link | switchinline | variable)*> <!ATTLIST caption - xml-lang CDATA #REQUIRED + xml-lang CDATA #IMPLIED id CDATA #REQUIRED localize CDATA #IMPLIED > @@ -160,7 +163,7 @@ Version 03-Feb-2006 level CDATA #IMPLIED id CDATA #REQUIRED l10n CDATA #IMPLIED - xml-lang CDATA #REQUIRED + xml-lang CDATA #IMPLIED oldref CDATA #IMPLIED localize CDATA #IMPLIED > @@ -213,7 +216,7 @@ Version 03-Feb-2006 <!ELEMENT title (#PCDATA)> <!ATTLIST title - xml-lang CDATA #REQUIRED + xml-lang CDATA #IMPLIED id CDATA #REQUIRED localize CDATA #IMPLIED > |