diff options
author | Tomaž Vajngerl <tomaz.vajngerl@collabora.co.uk> | 2019-12-24 16:03:23 +0100 |
---|---|---|
committer | Tomaž Vajngerl <quikee@gmail.com> | 2019-12-29 17:00:44 +0100 |
commit | 5a7cfe98e96489b7fa19d286ddd1e8c8e591d7dd (patch) | |
tree | d6a1496ac0e143d99d162b5e7002e07a73fa8841 /officecfg/registry | |
parent | 50f13bbedf0bba0509b7bf98bc782ec821c7777b (diff) |
pdf: Add option for PDF/UA to the PDF export dialog
This is adding PDF/UA option to the PDF export dialog. When PDF/UA
support is enabled, it automatically enables PDFTag support as it
is required for PDF/UA.
Change-Id: Ib3dece964523d4ed9884c98a6022a91120c6065f
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/85921
Tested-by: Jenkins
Reviewed-by: Tomaž Vajngerl <quikee@gmail.com>
Diffstat (limited to 'officecfg/registry')
-rw-r--r-- | officecfg/registry/schema/org/openoffice/Office/Common.xcs | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/officecfg/registry/schema/org/openoffice/Office/Common.xcs b/officecfg/registry/schema/org/openoffice/Office/Common.xcs index c8bdec0fd74e..675f173e5b36 100644 --- a/officecfg/registry/schema/org/openoffice/Office/Common.xcs +++ b/officecfg/registry/schema/org/openoffice/Office/Common.xcs @@ -5331,6 +5331,14 @@ <value>0</value> </prop> <!-- END PDF Version selection --> + <!-- PDF/UA Compliance --> + <prop oor:name="PDFUACompliance" oor:type="xs:boolean" oor:nillable="false"> + <info> + <desc>Specifies if the document is PDF/UA (Universal Accessibility) compliant</desc> + </info> + <value>false</value> + </prop> + <!-- END PDF/UA Compliance --> <!-- PDF Relative Link --> <prop oor:name="ExportLinksRelativeFsys" oor:type="xs:boolean" oor:nillable="false"> <info> @@ -5452,9 +5460,9 @@ <prop oor:name="UseWebDAVFileLocking" oor:type="xs:boolean" oor:nillable="false"> <info> <desc>Determines if WebDAV-specific file locking is used for documents - on WebDAV shares. It is not recommended to set this option to 'false' in - scenarios where multi-user, concurrent read/write access to WebDAV share - is required</desc> + on WebDAV shares. It is not recommended to set this option to 'false' in + scenarios where multi-user, concurrent read/write access to WebDAV share + is required</desc> </info> <value>true</value> </prop> |