|
|
d289e2 |
From 13aba101eadfe4f67a930ac7231d26ece658bbec Mon Sep 17 00:00:00 2001
|
|
|
d289e2 |
From: =?UTF-8?q?Caol=C3=A1n=20McNamara?= <caolanm@redhat.com>
|
|
|
d289e2 |
Date: Mon, 28 Sep 2020 14:55:47 +0100
|
|
|
d289e2 |
Subject: [PATCH] export HYPERLINK target in html clipboard export
|
|
|
d289e2 |
|
|
|
d289e2 |
Change-Id: Ia77e4bd8a5b54636d0e9e561360128202a81420b
|
|
|
d289e2 |
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/103557
|
|
|
d289e2 |
Tested-by: Jenkins
|
|
|
d289e2 |
Reviewed-by: Eike Rathke <erack@redhat.com>
|
|
|
d289e2 |
---
|
|
|
d289e2 |
sc/source/filter/html/htmlexp.cxx | 23 +++++++++++++++++++++++
|
|
|
d289e2 |
1 file changed, 23 insertions(+)
|
|
|
d289e2 |
|
|
|
d289e2 |
diff --git a/sc/source/filter/html/htmlexp.cxx b/sc/source/filter/html/htmlexp.cxx
|
|
|
d289e2 |
index 6122c9b6c45c..13792201c8b0 100644
|
|
|
d289e2 |
--- a/sc/source/filter/html/htmlexp.cxx
|
|
|
d289e2 |
+++ b/sc/source/filter/html/htmlexp.cxx
|
|
|
d289e2 |
@@ -37,6 +37,7 @@
|
|
|
d289e2 |
#include <sfx2/docfile.hxx>
|
|
|
d289e2 |
#include <sfx2/frmhtmlw.hxx>
|
|
|
d289e2 |
#include <sfx2/objsh.hxx>
|
|
|
d289e2 |
+#include <svl/stritem.hxx>
|
|
|
d289e2 |
#include <svl/urihelper.hxx>
|
|
|
d289e2 |
#include <svtools/htmlkywd.hxx>
|
|
|
d289e2 |
#include <svtools/htmlout.hxx>
|
|
|
d289e2 |
@@ -1127,6 +1128,26 @@ void ScHTMLExport::WriteCell( sc::ColumnBlockPosition& rBlockPos, SCCOL nCol, SC
|
|
|
d289e2 |
TAG_ON(aStr.makeStringAndClear().getStr());
|
|
|
d289e2 |
}
|
|
|
d289e2 |
|
|
|
d289e2 |
+ OUString aURL;
|
|
|
d289e2 |
+ bool bWriteHyperLink(false);
|
|
|
d289e2 |
+ if (aCell.meType == CELLTYPE_FORMULA)
|
|
|
d289e2 |
+ {
|
|
|
d289e2 |
+ ScFormulaCell* pFCell = aCell.mpFormula;
|
|
|
d289e2 |
+ if (pFCell->IsHyperLinkCell())
|
|
|
d289e2 |
+ {
|
|
|
d289e2 |
+ OUString aCellText;
|
|
|
d289e2 |
+ pFCell->GetURLResult(aURL, aCellText);
|
|
|
d289e2 |
+ bWriteHyperLink = true;
|
|
|
d289e2 |
+ }
|
|
|
d289e2 |
+ }
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ if (bWriteHyperLink)
|
|
|
d289e2 |
+ {
|
|
|
d289e2 |
+ OString aURLStr = HTMLOutFuncs::ConvertStringToHTML(aURL, eDestEnc, &aNonConvertibleChars);
|
|
|
d289e2 |
+ OString aStr = OOO_STRING_SVTOOLS_HTML_anchor " " OOO_STRING_SVTOOLS_HTML_O_href "=\"" + aURLStr + "\"";
|
|
|
d289e2 |
+ TAG_ON(aStr.getStr());
|
|
|
d289e2 |
+ }
|
|
|
d289e2 |
+
|
|
|
d289e2 |
OUString aStrOut;
|
|
|
d289e2 |
bool bFieldText = false;
|
|
|
d289e2 |
|
|
|
d289e2 |
@@ -1174,6 +1195,8 @@ void ScHTMLExport::WriteCell( sc::ColumnBlockPosition& rBlockPos, SCCOL nCol, SC
|
|
|
d289e2 |
if ( pGraphEntry )
|
|
|
d289e2 |
WriteGraphEntry( pGraphEntry );
|
|
|
d289e2 |
|
|
|
d289e2 |
+ if (bWriteHyperLink) { TAG_OFF(OOO_STRING_SVTOOLS_HTML_anchor); }
|
|
|
d289e2 |
+
|
|
|
d289e2 |
if ( bSetFont ) TAG_OFF( OOO_STRING_SVTOOLS_HTML_font );
|
|
|
d289e2 |
if ( bCrossedOut ) TAG_OFF( OOO_STRING_SVTOOLS_HTML_strikethrough );
|
|
|
d289e2 |
if ( bUnderline ) TAG_OFF( OOO_STRING_SVTOOLS_HTML_underline );
|
|
|
d289e2 |
--
|
|
|
d289e2 |
2.26.2
|
|
|
d289e2 |
|