#. extracted from dictionaries/no msgid "" msgstr "" "Project-Id-Version: LibO 350-l10n\n" "Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2013-05-28 18:07+0200\n" "PO-Revision-Date: 2011-10-07 14:46+0200\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: ks\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" #: description.xml msgctxt "" "description.xml\n" "dispname\n" "description.text" msgid "Norwegian (Nynorsk and Bokmål) spelling dictionary, hyphenation rules, and thesaurus" msgstr "" option> LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
path: root/sc/source/filter/inc/htmlpars.hxx
AgeCommit message (Collapse)Author
2024-03-20leaks in initial corpus for sc html import fuzzingCaolán McNamara
Change-Id: If5bfc9fb557fd449de8173790712f622a1c925ec Reviewed-on: https://gerrit.libreoffice.org/c/core/+/165020 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolan.mcnamara@collabora.com>
2024-03-19leaks in initial corpus for sc html import fuzzingCaolán McNamara
Change-Id: Ia7a9d6b283dcf127dccf734fb45cf8ac3dde5478 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/164978 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolan.mcnamara@collabora.com>
2024-02-13tdf#159483 sc HTML paste: handle data-sheets- attributes on a spanMiklos Vajna
Copy multiple cells, including a formula from google sheets to Calc, the formula is handled as a formula by the HTML paste. Do the same for a single cell, then only the result is pasted. The trouble is that the data-sheets-* attributes appear on <td> elements for multiple cells, but they appear on a <span> for a single cell. Fix the problem by extending ScHTMLLayoutParser::ProcToken() to handle the HtmlTokenId::SPAN_ON token and share the code between the <td> and <span> handler, so this markup works in both cases. Note that this is the paste handler, the no changes to the normal HTML import are made for now. Change-Id: Id749df9062d8fcb9a2f0acd928585a304efaae28 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/163291 Reviewed-by: Miklos Vajna <vmiklos@collabora.com> Tested-by: Jenkins
2024-02-07tdf#159483 sc HTML paste: handle data-sheets-value here, tooMiklos Vajna
HTML import into Calc could already create text cells, but HTML paste with the same content remained auto-converted to numbers unconditionally. Turns out HTML paste goes via ScHTMLLayoutParser instead of the HTML import's ScHTMLQueryParser, so the data-sheets-value was ignored for paste. Fix the problem by extracting the old data-sheets-value handler from ScHTMLQueryParser to a separate ParseDataSheetsValue(), and use it also in ScHTMLLayoutParser. For the actual handling, still only text is handled, no other formats yet. Change-Id: I0b2bf4665af331d07624ed42e30a24e31bfca331 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/163068 Reviewed-by: Miklos Vajna <vmiklos@collabora.com> Tested-by: Jenkins
2022-08-07clang-tidy modernize-pass-by-value in scNoel Grandin
Change-Id: Ia7ff651d1cbc119b36a9f8052594d03650988f59 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/137848 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
2022-02-19remove MAXCOL/MAXROW from ScAddress/ScRange (tdf#147509)Luboš Luňák
Change-Id: I4e80bba8b866f9915a6600ce67774380e619c2e7 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/130188 Tested-by: Jenkins Reviewed-by: Luboš Luňák <l.lunak@collabora.com>
2021-10-19tdf#96499 sc htmlimport: fix broken CSSHandler so that...Kevin Suo
...ScHTMLStyles can handle those MSO-Number-Formats again. The CSSHandler was added by the following commit, after which the sc htmlimport can parse the CSS stylesheets and set number formats of table cells accordingly: commit 24d8e4eaf4543c5b39b9e816d8514525b098827d Author: Kohei Yoshida Date: Thu Jul 28 00:46:55 2011 -0400 Parse CSS in the <style> content and set number formats to cells. However, this was broken since "selector_name" does not no longer functions in the handler since upgrade to orcus 0.9: commit edb38d702dd5a058ae0702b73a43328318b94649 Author: David Tardon Date: Thu Jun 4 16:09:48 2015 +0200 update to liborcus 0.9.1 And further the selector_name was then removed by the following commitd due to loplugin:unreffun checks: commit c76a8580c62299f310e7e43927afc133e2f02350 Author: Miklos Vajna Date: Fri Jun 5 12:29:36 2015 +0200 sc: loplugin:unreffun commit 9eeac5506bd726350b51cb0c36606646f04cbae9 Author: Miklos Vajna Date: Fri Jun 5 12:32:10 2015 +0200 sc: another loplugin:unreffun And then this was further broken by the following commit, in which it removed the mrStyles of type "ScHTMLStyles" from the CSSHandler class: commit 5d86154f49d713dada4aaa541755076cfeefa2c6 Author: Noel Grandin Date: Tue Sep 18 09:57:26 2018 +0200 loplugin:unusedfields improve search for unused collection fields This patch partially reverted those code, revised the CSSHandler member functions to make it work. More handler functions need to be implemented. Note that this bug is still not resoved yet because the orcus css parser does not accept css strings to include unquoted non-ascii chars as property values. This will be addressed in a separate patch. Change-Id: I8883f5a9362d9476dbfa9a2eed283c6f5c18305d Reviewed-on: https://gerrit.libreoffice.org/c/core/+/123715 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
2021-09-24no need to allocate this SfxItemSet on the heapNoel Grandin
Change-Id: I083ea9ef7b04322d60ce29b7e1610332a4709493 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/122553 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
2021-09-05no need to allocate NamePropsType with unique_ptrNoel Grandin
Change-Id: Ib042c481d682467620ae72a0b7e0bb2a5c8bf6ab Reviewed-on: https://gerrit.libreoffice.org/c/core/+/121649 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
2021-05-29tdf#127484 - Use HTML caption tag to name externally linked tablesAndreas Heinisch
Change-Id: I0abca8e1966e93337c16609211c146c0ed97c62f Reviewed-on: https://gerrit.libreoffice.org/c/core/+/114743 Tested-by: Jenkins Reviewed-by: Eike Rathke <erack@redhat.com>
2021-03-23tdf#124176 Use pragma once in s*Vincent LE GARREC
sc, scaddins, sccomp, scripting Change-Id: Ia99fec9e238033821cb784810edd4762c09bd5db Reviewed-on: https://gerrit.libreoffice.org/c/core/+/112049 Tested-by: Jenkins Reviewed-by: Ilmari Lauhakangas <ilmari.lauhakangas@libreoffice.org>
2020-12-11Adapt the remaining OUString functions to std string_viewStephan Bergmann
...for LIBO_INTERNAL_ONLY. These had been missed by 1b43cceaea2084a0489db68cd0113508f34b6643 "Make many OUString functions take std::u16string_view parameters" because they did not match the multi-overload pattern that was addressed there, but they nevertheless benefit from being changed just as well (witness e.g. the various resulting changes from copy() to subView()). This showed a conversion from OStringChar to std::string_view to be missing (while the corresponding conversion form OUStringChar to std::u16string_view was already present). The improvement to loplugin:stringadd became necessary to fix > [CPT] compilerplugins/clang/test/stringadd.cxx > error: 'error' diagnostics expected but not seen: > File ~/lo/core/compilerplugins/clang/test/stringadd.cxx Line 43 (directive at ~/lo/core/compilerplugins/clang/test/stringadd.cxx:42): simplify by merging with the preceding assignment [loplugin:stringadd] > File ~/lo/core/compilerplugins/clang/test/stringadd.cxx Line 61 (directive at ~/lo/core/compilerplugins/clang/test/stringadd.cxx:60): simplify by merging with the preceding assignment [loplugin:stringadd] > 2 errors generated. Change-Id: Ie40de0616a66e60e289c1af0ca60aed6f9ecc279 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/107602 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
2020-06-02inline some use-once typedefsNoel Grandin
Change-Id: I335e0c5cf7944efa487e4535a9e6a5baab2f36dd Reviewed-on: https://gerrit.libreoffice.org/c/core/+/95140 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
2020-03-12Revert "loplugin:constfields in sc"Noel Grandin
This reverts commit fb1d3b580763a333bbbfe115d09e1b5cd8849675. Now that we know that making fields has negative side effects like disabling assignment operator generation. Change-Id: Ib48334ffbeb2c768896dd8ced6818aa0b9910b0b Reviewed-on: https://gerrit.libreoffice.org/c/core/+/90333 Tested-by: Noel Grandin <noel.grandin@collabora.co.uk> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>