diff options
author | Miklos Vajna <vmiklos@collabora.com> | 2023-02-23 08:21:46 +0100 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.com> | 2023-03-06 09:51:17 +0100 |
commit | c364afe8e58efc33a39615553d62f4875e2888bd (patch) | |
tree | d5a267a02dca124561318d5c906ffcc2bb2aeee2 /schema | |
parent | a82f24a0af1cc17432e0211795de4a4af8836a2b (diff) |
sw floattable: teach the ODT filter about SwFormatFlySplit
Map the IsSplitAllowed text frame property to <draw:frame
loext:may-break-between-pages="...">. This is meant to be always a
direct formatting, so doesn't go to the style / autostyle.
(cherry picked from commit 2da16ff9f018fae68c53a801e5a234dafc2ebcec)
Change-Id: I439fe372271e4b7db511b5e2150e2a3c2e0acf25
Diffstat (limited to 'schema')
-rw-r--r-- | schema/libreoffice/OpenDocument-v1.3+libreoffice-schema.rng | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/schema/libreoffice/OpenDocument-v1.3+libreoffice-schema.rng b/schema/libreoffice/OpenDocument-v1.3+libreoffice-schema.rng index 384b3cde05f3..e2d81480318c 100644 --- a/schema/libreoffice/OpenDocument-v1.3+libreoffice-schema.rng +++ b/schema/libreoffice/OpenDocument-v1.3+libreoffice-schema.rng @@ -3352,13 +3352,19 @@ xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1. </rng:optional> </rng:define> - <!-- https://issues.oasis-open.org/browse/OFFICE-4136 --> <rng:define name="draw-frame-attlist" combine="interleave"> + <!-- https://issues.oasis-open.org/browse/OFFICE-4136 --> <rng:optional> <rng:attribute name="loext:decorative"> <rng:ref name="boolean"/> </rng:attribute> </rng:optional> + <!-- TODO(vmiklos) no proposal for multi-page floating tables --> + <rng:optional> + <rng:attribute name="loext:may-break-between-pages"> + <rng:ref name="boolean"/> + </rng:attribute> + </rng:optional> </rng:define> </rng:grammar> |