[Libreoffice-bugs] [Bug 158433] Doxygen: put multiple paragraphs into parblocks where necessary

2023-11-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=158433

Mike Kaganski  changed:

   What|Removed |Added

Summary|Doxygen: put multiple   |Doxygen: put multiple
   |baragraphs into parblocks   |paragraphs into parblocks
   |where necessary |where necessary

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-commits] core.git: Branch 'distro/vector/vector-7.5' - 2 commits - include/svtools svtools/qa svtools/source sw/qa sw/source

2023-11-28 Thread Mike Kaganski (via logerrit)
 include/svtools/HtmlWriter.hxx|3 
 svtools/qa/unit/testHtmlWriter.cxx|6 
 svtools/source/svhtml/HtmlWriter.cxx  |   25 +-
 sw/qa/extras/htmlexport/data/image_anchored_to_paragraph_no_wrap.fodt |   20 +
 sw/qa/extras/htmlexport/htmlexport.cxx|   18 +
 sw/source/filter/html/htmlflywriter.cxx   |  112 
+-
 6 files changed, 115 insertions(+), 69 deletions(-)

New commits:
commit b0391cf000850b28546f0d21f194060ed86507c2
Author: Mike Kaganski 
AuthorDate: Mon Nov 27 16:01:11 2023 +0300
Commit: Mike Kaganski 
CommitDate: Wed Nov 29 10:47:34 2023 +0300

Don't emit 'br clear=...' for graphics wrap in ReqIF export

Change-Id: I7684c78c9b98fe63c2281bf3b2a2186d125e0ba4
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/159994
Tested-by: Jenkins
Reviewed-by: Mike Kaganski 

diff --git 
a/sw/qa/extras/htmlexport/data/image_anchored_to_paragraph_no_wrap.fodt 
b/sw/qa/extras/htmlexport/data/image_anchored_to_paragraph_no_wrap.fodt
new file mode 100644
index ..f1080724307e
--- /dev/null
+++ b/sw/qa/extras/htmlexport/data/image_anchored_to_paragraph_no_wrap.fodt
@@ -0,0 +1,20 @@
+
+
+
+ 
+  
+   
+  
+ 
+ 
+  
+   
+  
PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB4bWxucz0iaHR0
+   cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgdmlld0JveD0iMCAwIDIw
+   IDIwIiBzdHJva2U9ImJsYWNrIj4KPHBhdGggZD0iTTEsMUwxOSwxOSIvPgo8L3N2Zz4=
+  
+ 
+
+  
+ 
+
\ No newline at end of file
diff --git a/sw/qa/extras/htmlexport/htmlexport.cxx 
b/sw/qa/extras/htmlexport/htmlexport.cxx
index d72e2b1daf9e..662dc12a5a0b 100644
--- a/sw/qa/extras/htmlexport/htmlexport.cxx
+++ b/sw/qa/extras/htmlexport/htmlexport.cxx
@@ -2997,6 +2997,24 @@ CPPUNIT_TEST_FIXTURE(SwHtmlDomExportTest, 
testReqIF_ExportFormulasAsPDF)
  xTypeDetection->queryTypeByDescriptor(descr, true));
 }
 
+CPPUNIT_TEST_FIXTURE(SwHtmlDomExportTest, testReqIF_NoBrClearForImageWrap)
+{
+// Given a document with a paragraph-anchored image with "none" wrap:
+createSwDoc("image_anchored_to_paragraph_no_wrap.fodt");
+// When exporting to reqif:
+ExportToReqif();
+// Make sure that there's no 'br' elements in the 'object' (used to 
represent the wrapping
+// in HTML export, using 'clear' attribute):
+SvMemoryStream aStream;
+WrapReqifFromTempFile(aStream);
+xmlDocUniquePtr pXmlDoc = parseXmlStream();
+CPPUNIT_ASSERT(pXmlDoc);
+assertXPath(pXmlDoc, 
"/reqif-xhtml:html/reqif-xhtml:div/reqif-xhtml:p/reqif-xhtml:object");
+assertXPath(pXmlDoc,
+
"/reqif-xhtml:html/reqif-xhtml:div/reqif-xhtml:p/reqif-xhtml:object/reqif-xhtml:br",
+0);
+}
+
 CPPUNIT_PLUGIN_IMPLEMENT();
 
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/sw/source/filter/html/htmlflywriter.cxx 
b/sw/source/filter/html/htmlflywriter.cxx
index b58d3d9f6c44..624d992fb273 100644
--- a/sw/source/filter/html/htmlflywriter.cxx
+++ b/sw/source/filter/html/htmlflywriter.cxx
@@ -723,68 +723,71 @@ OString SwHTMLWriter::OutFrameFormatOptions( const 
SwFrameFormat ,
 sOut.setLength(0);
 }
 
-// Insert wrap for graphics that are anchored to a paragraph as
-//  in the string
-const SwFormatSurround* pSurround;
-if( (nFrameOpts & HtmlFrmOpts::BrClear) &&
-((RndStdIds::FLY_AT_PARA == rFrameFormat.GetAnchor().GetAnchorId()) ||
- (RndStdIds::FLY_AT_CHAR == rFrameFormat.GetAnchor().GetAnchorId())) &&
-(pSurround = rItemSet.GetItemIfSet( RES_SURROUND )) )
-{
-sal_Int16 eHoriOri =rFrameFormat.GetHoriOrient().GetHoriOrient();
-pStr = nullptr;
-css::text::WrapTextMode eSurround = pSurround->GetSurround();
-bool bAnchorOnly = pSurround->IsAnchorOnly();
-switch( eHoriOri )
+if (!mbReqIF)
+{
+// Insert wrap for graphics that are anchored to a paragraph as
+//  in the string
+const SwFormatSurround* pSurround;
+if( (nFrameOpts & HtmlFrmOpts::BrClear) &&
+((RndStdIds::FLY_AT_PARA == 
rFrameFormat.GetAnchor().GetAnchorId()) ||
+ (RndStdIds::FLY_AT_CHAR == 
rFrameFormat.GetAnchor().GetAnchorId())) &&
+(pSurround = rItemSet.GetItemIfSet( RES_SURROUND )) )
 {
-case text::HoriOrientation::RIGHT:
+sal_Int16 eHoriOri =
rFrameFormat.GetHoriOrient().GetHoriOrient();
+pStr = nullptr;
+css::text::WrapTextMode eSurround = pSurround->GetSurround();
+bool bAnchorOnly = pSurround->IsAnchorOnly();
+switch( eHoriOri )
 {
-switch( eSurround )
+case text::HoriOrientation::RIGHT:
 {
-case css::text::WrapTextMode_NONE:
-case css::text::WrapTextMode_RIGHT:
-

[Libreoffice-bugs] [Bug 158433] New: Doxygen: put multiple baragraphs into parblocks where necessary

2023-11-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=158433

Bug ID: 158433
   Summary: Doxygen: put multiple baragraphs into parblocks where
necessary
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Keywords: difficultyBeginner, easyHack
  Severity: enhancement
  Priority: medium
 Component: sdk
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: mikekagan...@hotmail.com

LibreOffice uses Doxygen comments to generate its API and C++ documentation
[1,2]. There are cases where some special Doxygen commands (like @param), that
expect a single paragraph of text, are used incorrectly, and several paragraphs
appear there without proper enclosing into parblock ... endparblock. [3]

E.g., css::sheet::XAreaLinks has such a problem in its aSourceArea
documentation [4], where  block ends the param, and so the text that was
intended to extend the parameter explanation gets out of the block; also, the
generated documentation [5] has a second occurrence of "Parameters" section
header, inserted after the out-of-parameter text.

This easyhack is to fix such places, and put all the paragraphs belonging to a
single block, where only one paragraph is expected in the main command.

[1] https://api.libreoffice.org/docs/idl/ref/index.html
[2] https://api.libreoffice.org/docs/cpp/ref/index.html
[3] https://www.doxygen.nl/manual/commands.html#cmdparblock
[4]
https://opengrok.libreoffice.org/xref/core/offapi/com/sun/star/sheet/XAreaLinks.idl?r=5687eba4#33
[5]
https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1sheet_1_1XAreaLinks.html#af482166e53e009514665099dc73c3675

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 157135] LibreOffice 7.6 stalls/crashes under Windows 11 with Norwegian (Bokmål) locale when opening file dialog

2023-11-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=157135

--- Comment #49 from Dalidadem  ---
Hi,
I am using Libreoffice in windows 10 and 11 in Turkish.
I have the same probleme in 3 computers with windows 11: writer is freezing
(Libre office 7.6 and later).
I have tried all steps I found on internet with no result (safe mode, disabling
Skia etc).
So I have reinstalled previous version 7.5 on these pc.

On my computer running under windows 10: libreoffice (7.6.3) works normally.

I will be please when the bug is corrected.
Thsnks

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 154223] WebDAV broken with having a proxy configured and/or HTTPS

2023-11-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154223

--- Comment #6 from jmreym...@ik.me ---
checked with 
tomcat 9.0.31 OK
tomcat 9.0.36 KO
tomcat 9.0.58 KO
tomcat 9.0.69 KO 

libreoffice send a lot of PROPFIND , is tomcat response not correct ?

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 101258] [META] Bibliography bugs and enhancements

2023-11-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101258
Bug 101258 depends on bug 152583, which changed state.

Bug 152583 Summary: Need a new citation style and autonumbering scheme for 
simplifed Chinese
https://bugs.documentfoundation.org/show_bug.cgi?id=152583

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |FIXED

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 152583] Need a new citation style and autonumbering scheme for simplifed Chinese

2023-11-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152583

Kevin Suo  changed:

   What|Removed |Added

 Resolution|--- |FIXED
 Status|NEW |RESOLVED

--- Comment #6 from Kevin Suo  ---
I now mark this as resolved fixed. Feel free to comment if you have any more
questions on this.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 152583] Need a new citation style and autonumbering scheme for simplifed Chinese

2023-11-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152583

--- Comment #5 from Commit Notification 
 ---
Kevin Suo committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/core/commit/22d8f339197b23348e401bb3e9dd7430110dfba6

tdf#152583: Add [1],[2],[3] numbering style for zh-CN locale

It will be available in 24.2.0.

The patch should be included in the daily builds available at
https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More
information about daily builds can be found at:
https://wiki.documentfoundation.org/Testing_Daily_Builds

Affected users are encouraged to test the fix and report feedback.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 152583] Need a new citation style and autonumbering scheme for simplifed Chinese

2023-11-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152583

Commit Notification  changed:

   What|Removed |Added

 Whiteboard||target:24.2.0

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-commits] core.git: i18npool/source

2023-11-28 Thread Kevin Suo (via logerrit)
 i18npool/source/localedata/data/zh_CN.xml |1 +
 1 file changed, 1 insertion(+)

New commits:
commit 22d8f339197b23348e401bb3e9dd7430110dfba6
Author: Kevin Suo 
AuthorDate: Wed Nov 29 11:27:17 2023 +0800
Commit: Kevin Suo 
CommitDate: Wed Nov 29 08:21:45 2023 +0100

tdf#152583: Add [1],[2],[3] numbering style for zh-CN locale

This adds the [1],[2],[3] style of numbering to the Simplified
Chinese locale data. This will show up when one clicks the
numbering toolbar icon.

Change-Id: I8b54746b431384e682f4161a3e99211b4147bad1
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/160059
Tested-by: Jenkins
Reviewed-by: Kevin Suo 

diff --git a/i18npool/source/localedata/data/zh_CN.xml 
b/i18npool/source/localedata/data/zh_CN.xml
index 1f33090d0ced..063be07c630e 100644
--- a/i18npool/source/localedata/data/zh_CN.xml
+++ b/i18npool/source/localedata/data/zh_CN.xml
@@ -431,6 +431,7 @@
  
  
  
+ 
  
  
  


[Libreoffice-ux-advise] [Bug 158404] Start Center Recent Documents view: make it so hover changes item selection

2023-11-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=158404

--- Comment #16 from Buovjaga  ---
I will focus on the multiselection for now and not change the hover behaviour.

-- 
You are receiving this mail because:
You are on the CC list for the bug.

[Libreoffice-commits] core.git: sw/qa

2023-11-28 Thread Miklos Vajna (via logerrit)
 sw/qa/extras/ooxmlexport/ooxmlexport16.cxx |   32 +++--
 1 file changed, 13 insertions(+), 19 deletions(-)

New commits:
commit 7f85266b390aaf784af6a8d4afa139cd1b6988e4
Author: Miklos Vajna 
AuthorDate: Tue Nov 28 20:11:54 2023 +0100
Commit: Miklos Vajna 
CommitDate: Wed Nov 29 08:18:29 2023 +0100

CppunitTest_sw_ooxmlexport16: rework to avoid preTest()

This keeps all code of a test in a single place, if we don't trigger the
preTest() magic.

Change-Id: Ib97bf07cde6e235d9f9705cbff2f163fbc6d72b3
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/160055
Tested-by: Jenkins
Reviewed-by: Miklos Vajna 

diff --git a/sw/qa/extras/ooxmlexport/ooxmlexport16.cxx 
b/sw/qa/extras/ooxmlexport/ooxmlexport16.cxx
index f7e62615e8a8..dd1b87f147aa 100644
--- a/sw/qa/extras/ooxmlexport/ooxmlexport16.cxx
+++ b/sw/qa/extras/ooxmlexport/ooxmlexport16.cxx
@@ -30,29 +30,12 @@
 #include 
 #include 
 #include 
+#include 
 
 class Test : public SwModelTestBase
 {
 public:
 Test() : SwModelTestBase("/sw/qa/extras/ooxmlexport/data/", "Office Open 
XML Text") {}
-
-virtual std::unique_ptr preTest(const char* filename) override
-{
-if (filename == std::string_view("tdf135774_numberingShading.docx"))
-{
-bool bIsExportAsShading = 
SvtFilterOptions::Get().IsCharBackground2Shading();
-// This function is run at the end of the test - returning the 
filter options to normal.
-std::unique_ptr pResetter(new Resetter(
-[bIsExportAsShading] () {
-if (bIsExportAsShading)
-SvtFilterOptions::Get().SetCharBackground2Shading();
-}));
-// For these tests, ensure exporting CharBackground as w:highlight.
-SvtFilterOptions::Get().SetCharBackground2Highlighting();
-return pResetter;
-}
-return nullptr;
-}
 };
 
 CPPUNIT_TEST_FIXTURE(Test, testTdf143860NonPrimitiveCustomShape)
@@ -542,8 +525,19 @@ CPPUNIT_TEST_FIXTURE(Test, testTdf134951_duplicates)
 
 CPPUNIT_TEST_FIXTURE(Test, testTdf135773_numberingShading)
 {
+bool bIsExportAsShading = 
SvtFilterOptions::Get().IsCharBackground2Shading();
+// This function is run at the end of the test - returning the filter 
options to normal.
+comphelper::ScopeGuard g(
+[bIsExportAsShading]
+{
+if (bIsExportAsShading)
+SvtFilterOptions::Get().SetCharBackground2Shading();
+});
+// For these test, ensure exporting CharBackground as w:highlight.
+SvtFilterOptions::Get().SetCharBackground2Highlighting();
+
 loadAndSave("tdf135774_numberingShading.docx");
-// This test uses preTest to export CharBackground as Highlight instead of 
the 7.0 default of Shading.
+// This test uses a custom setting to export CharBackground as Highlight 
instead of the 7.0 default of Shading.
 
 // Before the fix, the imported shading was converted into a red highlight.
 xmlDocUniquePtr pXmlStyles = parseExport("word/numbering.xml");


[Libreoffice-bugs] [Bug 158430] Imported SVG image is wrong size (tiny) when imported in writer

2023-11-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=158430

Telesto  changed:

   What|Removed |Added

 CC||tele...@surfxs.nl

--- Comment #5 from Telesto  ---
Thanks for the report. This should be fixed in more recent version of
LibreOffice (say 7.6.3)

I don't experience the it with
Version: 24.2.0.0.alpha0+ (X86_64) / LibreOffice Community
Build ID: 5682e1d4145c26fc8021879df0543d5aeacf9c83
CPU threads: 8; OS: macOS 13.4.1; UI render: Skia/Metal; VCL: osx
Locale: nl-NL (nl_NL.UTF-8); UI: en-US
Calc: threaded

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-commits] core.git: sw/source

2023-11-28 Thread Jim Raykowski (via logerrit)
 sw/source/uibase/inc/conttree.hxx  |4 
 sw/source/uibase/utlui/content.cxx |  183 +++--
 2 files changed, 97 insertions(+), 90 deletions(-)

New commits:
commit 7a555725dad87b977154961beeb5c0da2a856709
Author: Jim Raykowski 
AuthorDate: Thu Nov 23 16:54:51 2023 -0900
Commit: Jim Raykowski 
CommitDate: Wed Nov 29 07:59:38 2023 +0100

SwNavigator: Rework the SwContentTree Expand function

in effort to improve readability and operation.

Change-Id: I7bfe485e24ee4cda3a3d99c522177950ad9ad399
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/159887
Tested-by: Jenkins
Reviewed-by: Jim Raykowski 

diff --git a/sw/source/uibase/inc/conttree.hxx 
b/sw/source/uibase/inc/conttree.hxx
index a8094c40303a..9e1653fd08e3 100644
--- a/sw/source/uibase/inc/conttree.hxx
+++ b/sw/source/uibase/inc/conttree.hxx
@@ -109,10 +109,10 @@ class SwContentTree final : public SfxListener
 std::map< void*, bool > mOutLineNodeMap;
 std::map m_aRegionNodeExpandMap; // stores expand state 
of nodes with children
 
-sal_Int32   m_nActiveBlock; // used to restore content 
types/categories expand state
+sal_Int32   m_nActiveBlock;  // used to restore content types 
expand state
 sal_Int32   m_nHiddenBlock;
 size_t  m_nEntryCount;
-ContentTypeId   m_nRootType;
+ContentTypeId   m_nRootType;// content type that is currently 
displayed in the tree
 ContentTypeId   m_nLastSelType;
 sal_uInt8   m_nOutlineLevel;
 
diff --git a/sw/source/uibase/utlui/content.cxx 
b/sw/source/uibase/utlui/content.cxx
index 352a6daa9bba..4ca633697cdd 100644
--- a/sw/source/uibase/utlui/content.cxx
+++ b/sw/source/uibase/utlui/content.cxx
@@ -2364,122 +2364,129 @@ SdrObject* 
SwContentTree::GetDrawingObjectsByContent(const SwContent *pCnt)
 return pRetObj;
 }
 
-void SwContentTree::Expand(const weld::TreeIter& rParent, 
std::vector>* pNodesToExpand)
+void SwContentTree::Expand(const weld::TreeIter& rParent,
+   std::vector>* 
pNodesToExpand)
 {
-if (!(m_xTreeView->iter_has_child(rParent) || 
m_xTreeView->get_children_on_demand(rParent)))
+if (!m_xTreeView->iter_has_child(rParent) && 
!m_xTreeView->get_children_on_demand(rParent))
 return;
 
-if (m_nRootType == ContentTypeId::UNKNOWN || m_nRootType == 
ContentTypeId::OUTLINE ||
-m_nRootType == ContentTypeId::REGION)
+// pNodesToExpand is used by the Display function to restore the trees 
expand structure for
+// hierarchical content types, e.g., OUTLINE and REGION.
+if (pNodesToExpand)
+pNodesToExpand->emplace_back(m_xTreeView->make_iterator());
+
+// rParentId is a string representation of a pointer to SwContentType or 
SwContent
+const OUString& rParentId = m_xTreeView->get_id(rParent);
+// bParentIsContentType tells if the passed rParent tree entry is a 
content type or content
+const bool bParentIsContentType = lcl_IsContentType(rParent, *m_xTreeView);
+// eParentContentTypeId is the content type of the passed rParent tree 
entry
+const ContentTypeId eParentContentTypeId =
+bParentIsContentType ? 
weld::fromId(rParentId)->GetType() :
+   
weld::fromId(rParentId)->GetParent()->GetType();
+
+if (m_nRootType == ContentTypeId::UNKNOWN && bParentIsContentType)
 {
-if (lcl_IsContentType(rParent, *m_xTreeView))
+// m_nActiveBlock and m_nHiddenBlock are used to persist the content 
type expand state for
+// the all content view mode
+const sal_Int32 nOr = 1 << static_cast(eParentContentTypeId); 
//linear -> Bitposition
+if (State::HIDDEN != m_eState)
 {
-ContentTypeId eContentTypeId =
-
weld::fromId(m_xTreeView->get_id(rParent))->GetType();
-const sal_Int32 nOr = 1 << static_cast(eContentTypeId); 
//linear -> Bitposition
-if (State::HIDDEN != m_eState)
-{
-m_nActiveBlock |= nOr;
-m_pConfig->SetActiveBlock(m_nActiveBlock);
-}
-else
-m_nHiddenBlock |= nOr;
-if (eContentTypeId == ContentTypeId::OUTLINE)
-{
-std::map< void*, bool > aCurrOutLineNodeMap;
+m_nActiveBlock |= nOr;
+m_pConfig->SetActiveBlock(m_nActiveBlock);
+}
+else
+m_nHiddenBlock |= nOr;
+}
+
+if (m_nRootType == ContentTypeId::OUTLINE || (m_nRootType == 
ContentTypeId::UNKNOWN &&
+  eParentContentTypeId == 
ContentTypeId::OUTLINE))
+{
+if (bParentIsContentType)
+{
+std::map< void*, bool > aCurrOutLineNodeMap;
 
-SwWrtShell* pShell = GetWrtShell();
-bool bParentHasChild = RequestingChildren(rParent);
-if (pNodesToExpand)
-   

[Libreoffice-bugs] [Bug 158426] Number of columns should be limited in Calc data entry form

2023-11-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=158426

Buovjaga  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #2 from Buovjaga  ---
Came up in the live stream and yes, seems like the right thing to do.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 148544] Option to remove all whitespace in "Paste special" and other dialogs

2023-11-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148544

--- Comment #9 from Mike Kaganski  ---
(In reply to Mike Kaganski from comment #8)
> It may be useful to have in the UI.

... and it is there - I just missed that. So it is all good.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-ux-advise] [Bug 158404] Start Center Recent Documents view: make it so hover changes item selection

2023-11-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=158404

--- Comment #15 from Buovjaga  ---
As a somewhat on-topic note, we could enrich the Template Manager dialog per
Mike Kaganski's comment in the dev chat:

"as to multiselection: mobile/web UIs have a paradigm to show checkboxes when
user explicitly tells to multi-select for some feature (e.g., to remove
multiple)"

I should create a new report for that.

-- 
You are receiving this mail because:
You are on the CC list for the bug.

[Libreoffice-bugs] [Bug 158432] New: CSV IMPORT: add option to keep (not overwrite) target cell formatting

2023-11-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=158432

Bug ID: 158432
   Summary: CSV IMPORT: add option to keep (not overwrite) target
cell formatting
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: mikekagan...@hotmail.com

CSV filter applies formatting to imported cells. E.g., it may set column widths
and number formats.

It might be useful to avoid changes of formatting in cases when a user has some
pre-formatted range, and pastes a CSV there, e.g. using

> FilterName="Text - txt - csv (StarCalc)"
> FilterOptions="44,34,76,1,,1037"
> ThisComponent.AreaLinks.insertAtPosition(address,url,source,filter,options)

The 'options' could make use of a new option to avoid change of the target
format. So that the CSV import filter does all the processing of the data in
the file, recognizes it according to the normal rules (as defined in the filter
- e.g., detects special numbers or not; uses fixed widths of separators;
considers E-notation as numbers or strings ...), but when putting it to the
cells on sheet, it would only put data, not formats (so e.g. recognized dates
could possibly appear as numbers - it would be OK).

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 148544] Option to remove all whitespace in "Paste special" and other dialogs

2023-11-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148544

--- Comment #8 from Mike Kaganski  ---
"Remove all whitespace" is definitely not a good pre-defined option. If someone
finds them often in need of such, it indicates they face some ill-prepared
sources. But generally, why not also introduce "remove all characters A to H"?
and also "all numbers 3 to 7"?

Import filter has an option to trim leading/trailing spaces - see option 11 in
[1]. It may be useful to have in the UI. But not anything more special. For the
infinite number of special cases, there are ways to pre-process the data, or
post-process it (functions, macros, extensions, external scripts running on
exported data...). It is not reasonable to try to build a "universal paste
plain text" tool that would be able to do just anything any person on Earth may
ever want to do with their data. Same for other UI places (like menu item).

[1]
https://help.libreoffice.org/7.6/en-US/text/shared/guide/csv_params.html?DbPAR=SHARED#bm_id181634740978601

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 51780] [META] Default to Firebird not HSQLDB in Base (for _new_ files)

2023-11-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=51780
Bug 51780 depends on bug 119628, which changed state.

Bug 119628 Summary: EDITING: Firebird Embedded: error message when resetting 
auto increment a second time
https://bugs.documentfoundation.org/show_bug.cgi?id=119628

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |WORKSFORME

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 119628] EDITING: Firebird Embedded: error message when resetting auto increment a second time

2023-11-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119628

Robert Großkopf  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |WORKSFORME

--- Comment #15 from Robert Großkopf  ---
Couldn't reproduce the buggy behavior any more with 
Version: 7.6.3.1 (X86_64) / LibreOffice Community
Build ID: c4af5b1259bceea6e979e6fe2435dbee7a5a87c2
CPU threads: 6; OS: Linux 5.14; UI render: default; VCL: kf5 (cairo+xcb)
Locale: de-DE (de_DE.UTF-8); UI: de-DE
Calc: threaded

I will set this one to WORKSFORME.
Feel free to reopen if it could be reproduced on other systems.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-ux-advise] [Bug 158404] Start Center Recent Documents view: make it so hover changes item selection

2023-11-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=158404

--- Comment #14 from Buovjaga  ---
(In reply to V Stuart Foote from comment #13)
> Not clear there should be a multi-select for the Templates as now via
> keyboard--to me that is an implementation error. You can only open one
> template at a time to create a new document--and the last selected in a
> multi-select has the focus and is used for the new document.

Hmm, good point: for some reason I had only tested with the Template Manager
and thought it behaved the same way as the Templates view. Sorry for the noise.

So multiselection should also be removed from the SC Templates view.

-- 
You are receiving this mail because:
You are on the CC list for the bug.

[Libreoffice-bugs] [Bug 158389] Bookmark and fire fox history is not working

2023-11-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=158389

Buovjaga  changed:

   What|Removed |Added

  Component|SI-GUI  |deletionRequest
 Resolution|--- |INVALID
 Status|NEW |RESOLVED
URL|http://183.82.103.245/  |
   Assignee|reisi...@gmail.com  |libreoffice-b...@lists.free
   ||desktop.org
Product|QA Tools|LibreOffice

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 103030] [META] Navigator sidebar deck and floating window

2023-11-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103030
Bug 103030 depends on bug 157681, which changed state.

Bug 157681 Summary: Add an opportunity to hide sections via context menu at the 
Navigator
https://bugs.documentfoundation.org/show_bug.cgi?id=157681

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |FIXED

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 157681] Add an opportunity to hide sections via context menu at the Navigator

2023-11-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=157681

Jim Raykowski  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |FIXED

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 158430] Imported SVG image is wrong size (tiny) when imported in writer

2023-11-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=158430

--- Comment #4 from Peter  ---
Created attachment 191105
  --> https://bugs.documentfoundation.org/attachment.cgi?id=191105=edit
Screen shot of the PDF

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 158430] Imported SVG image is wrong size (tiny) when imported in writer

2023-11-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=158430

Peter  changed:

   What|Removed |Added

 Attachment #191104|Screen short|Screen shot as displyed in
description||writer

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 158430] Imported SVG image is wrong size (tiny) when imported in writer

2023-11-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=158430

--- Comment #3 from Peter  ---
Created attachment 191104
  --> https://bugs.documentfoundation.org/attachment.cgi?id=191104=edit
Screen short

Screen shot of writer as it displayed before exporting to pdf

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-commits] core.git: sw/source

2023-11-28 Thread Jim Raykowski (via logerrit)
 sw/source/uibase/utlui/content.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 8f2c10f051c4d3e587b859210e9430ada7876a7a
Author: Jim Raykowski 
AuthorDate: Tue Nov 28 10:49:31 2023 -0900
Commit: Jim Raykowski 
CommitDate: Wed Nov 29 07:03:54 2023 +0100

SwNavigator: Allow Sections, Indexes, and Headings tracking

when in a table and Table tracking is off

Change-Id: I0f5d069b80948aada9fee1338c29fc7809ffbe45
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/160056
Tested-by: Jenkins
Reviewed-by: Jim Raykowski 

diff --git a/sw/source/uibase/utlui/content.cxx 
b/sw/source/uibase/utlui/content.cxx
index ff354273ff82..352a6daa9bba 100644
--- a/sw/source/uibase/utlui/content.cxx
+++ b/sw/source/uibase/utlui/content.cxx
@@ -4226,8 +4226,8 @@ void SwContentTree::UpdateTracking()
 OUString aName = m_pActiveShell->GetTableFormat()->GetName();
 lcl_SelectByContentTypeAndName(this, *m_xTreeView, 
SwResId(STR_CONTENT_TYPE_TABLE),
aName);
+return;
 }
-return;
 }
 // indexes
 if (const SwTOXBase* pTOX = m_pActiveShell->GetCurTOX(); pTOX &&


[Libreoffice-commits] core.git: sw/qa sw/source

2023-11-28 Thread Mike Kaganski (via logerrit)
 sw/qa/extras/htmlexport/data/image_anchored_to_paragraph_no_wrap.fodt |   20 +
 sw/qa/extras/htmlexport/htmlexport.cxx|   16 +
 sw/source/filter/html/htmlflywriter.cxx   |  112 
+-
 3 files changed, 95 insertions(+), 53 deletions(-)

New commits:
commit 1f2d30093c12de22a04bc16969e027446ded5205
Author: Mike Kaganski 
AuthorDate: Mon Nov 27 16:01:11 2023 +0300
Commit: Mike Kaganski 
CommitDate: Wed Nov 29 06:46:33 2023 +0100

Don't emit 'br clear=...' for graphics wrap in ReqIF export

Change-Id: I7684c78c9b98fe63c2281bf3b2a2186d125e0ba4
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/159994
Tested-by: Jenkins
Reviewed-by: Mike Kaganski 

diff --git 
a/sw/qa/extras/htmlexport/data/image_anchored_to_paragraph_no_wrap.fodt 
b/sw/qa/extras/htmlexport/data/image_anchored_to_paragraph_no_wrap.fodt
new file mode 100644
index ..f1080724307e
--- /dev/null
+++ b/sw/qa/extras/htmlexport/data/image_anchored_to_paragraph_no_wrap.fodt
@@ -0,0 +1,20 @@
+
+
+
+ 
+  
+   
+  
+ 
+ 
+  
+   
+  
PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB4bWxucz0iaHR0
+   cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgdmlld0JveD0iMCAwIDIw
+   IDIwIiBzdHJva2U9ImJsYWNrIj4KPHBhdGggZD0iTTEsMUwxOSwxOSIvPgo8L3N2Zz4=
+  
+ 
+
+  
+ 
+
\ No newline at end of file
diff --git a/sw/qa/extras/htmlexport/htmlexport.cxx 
b/sw/qa/extras/htmlexport/htmlexport.cxx
index 161357ffbdba..96bdfab66b60 100644
--- a/sw/qa/extras/htmlexport/htmlexport.cxx
+++ b/sw/qa/extras/htmlexport/htmlexport.cxx
@@ -3016,6 +3016,22 @@ CPPUNIT_TEST_FIXTURE(SwHtmlDomExportTest, 
testReqIF_ExportFormulasAsPDF)
  xTypeDetection->queryTypeByDescriptor(descr, true));
 }
 
+CPPUNIT_TEST_FIXTURE(SwHtmlDomExportTest, testReqIF_NoBrClearForImageWrap)
+{
+// Given a document with a paragraph-anchored image with "none" wrap:
+createSwDoc("image_anchored_to_paragraph_no_wrap.fodt");
+// When exporting to reqif:
+ExportToReqif();
+// Make sure that there's no 'br' elements in the 'object' (used to 
represent the wrapping
+// in HTML export, using 'clear' attribute):
+xmlDocUniquePtr pXmlDoc = WrapReqifFromTempFile();
+assertXPath(pXmlDoc, 
"/reqif-xhtml:html/reqif-xhtml:div/reqif-xhtml:p/reqif-xhtml:object"_ostr);
+assertXPath(
+pXmlDoc,
+
"/reqif-xhtml:html/reqif-xhtml:div/reqif-xhtml:p/reqif-xhtml:object/reqif-xhtml:br"_ostr,
+0);
+}
+
 CPPUNIT_PLUGIN_IMPLEMENT();
 
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/sw/source/filter/html/htmlflywriter.cxx 
b/sw/source/filter/html/htmlflywriter.cxx
index 9976124b3adc..a0627effdc2b 100644
--- a/sw/source/filter/html/htmlflywriter.cxx
+++ b/sw/source/filter/html/htmlflywriter.cxx
@@ -704,68 +704,71 @@ OString SwHTMLWriter::OutFrameFormatOptions( const 
SwFrameFormat ,
 sOut.setLength(0);
 }
 
-// Insert wrap for graphics that are anchored to a paragraph as
-//  in the string
-const SwFormatSurround* pSurround;
-if( (nFrameOpts & HtmlFrmOpts::BrClear) &&
-((RndStdIds::FLY_AT_PARA == rFrameFormat.GetAnchor().GetAnchorId()) ||
- (RndStdIds::FLY_AT_CHAR == rFrameFormat.GetAnchor().GetAnchorId())) &&
-(pSurround = rItemSet.GetItemIfSet( RES_SURROUND )) )
-{
-sal_Int16 eHoriOri =rFrameFormat.GetHoriOrient().GetHoriOrient();
-pStr = nullptr;
-css::text::WrapTextMode eSurround = pSurround->GetSurround();
-bool bAnchorOnly = pSurround->IsAnchorOnly();
-switch( eHoriOri )
+if (!mbReqIF)
+{
+// Insert wrap for graphics that are anchored to a paragraph as
+//  in the string
+const SwFormatSurround* pSurround;
+if( (nFrameOpts & HtmlFrmOpts::BrClear) &&
+((RndStdIds::FLY_AT_PARA == 
rFrameFormat.GetAnchor().GetAnchorId()) ||
+ (RndStdIds::FLY_AT_CHAR == 
rFrameFormat.GetAnchor().GetAnchorId())) &&
+(pSurround = rItemSet.GetItemIfSet( RES_SURROUND )) )
 {
-case text::HoriOrientation::RIGHT:
+sal_Int16 eHoriOri =
rFrameFormat.GetHoriOrient().GetHoriOrient();
+pStr = nullptr;
+css::text::WrapTextMode eSurround = pSurround->GetSurround();
+bool bAnchorOnly = pSurround->IsAnchorOnly();
+switch( eHoriOri )
 {
-switch( eSurround )
+case text::HoriOrientation::RIGHT:
 {
-case css::text::WrapTextMode_NONE:
-case css::text::WrapTextMode_RIGHT:
-pStr = OOO_STRING_SVTOOLS_HTML_AL_right;
-break;
-case css::text::WrapTextMode_LEFT:
-case css::text::WrapTextMode_PARALLEL:
-if( bAnchorOnly )
-m_bClearRight = true;
-break;
-

[Libreoffice-bugs] [Bug 93352] RTL: Horizontal scrolling for right-to-left Sheet moves in opposite direction (macOS and Linux)

2023-11-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93352

--- Comment #23 from Amin  ---
Is there any update on this issue? It is really annoying

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 158430] Imported SVG image is wrong size (tiny) when imported in writer

2023-11-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=158430

--- Comment #2 from Peter  ---
Created attachment 191103
  --> https://bugs.documentfoundation.org/attachment.cgi?id=191103=edit
Generated PDF file (error on page 2)

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 158430] Imported SVG image is wrong size (tiny) when imported in writer

2023-11-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=158430

--- Comment #1 from Peter  ---
Created attachment 191102
  --> https://bugs.documentfoundation.org/attachment.cgi?id=191102=edit
Source odt file

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 158431] New: ctrl + z is mot working properly

2023-11-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=158431

Bug ID: 158431
   Summary: ctrl + z is mot working properly
   Product: LibreOffice
   Version: 3.3.2 release
  Hardware: All
OS: Android
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Android Editor
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: mahajanvanshik...@gmail.com

Description:
when i press short cut key ctrl space instead of undo icon all the formting
erased at once 

Actual Results:
all the formating is erased at once

Expected Results:
its should move back only one step at time 


Reproducible: Sometimes


User Profile Reset: No

Additional Info:
it happens some times only in my device

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 158430] New: Imported SVG image is wrong size (tiny) when imported in writer

2023-11-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=158430

Bug ID: 158430
   Summary: Imported SVG image is wrong size (tiny) when imported
in writer
   Product: LibreOffice
   Version: 7.4.2.3 release
  Hardware: Other
OS: macOS (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: peters...@gmail.com

Description:
I imported a SVG file (the source does not seem to matter, though this one was
created with MS Office) into a writer document. Export the writer to PDF. The
svg image is microscopic in the PDF file.



Steps to Reproduce:
1. Import & size svg image
2. export to pdf
3. view the pdf

Actual Results:
svg is tiny in the pdf file.

Expected Results:
svg image should be the same size as displayed in the write window


Reproducible: Always


User Profile Reset: Yes

Additional Info:
After restarting in safe mode, the image was less microscopic, but still tiny.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 158429] New: ctral + z is not woring properly

2023-11-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=158429

Bug ID: 158429
   Summary: ctral + z is not woring properly
   Product: LibreOffice
   Version: 3.3.0 release
  Hardware: All
OS: Android
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Android Editor
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: mahajanvanshik...@gmail.com

Description:
when i press short cut key ctrl+z not workig instead all the formattin erased

Actual Results:
all the ormatting erased at once

Expected Results:
its should move back only one step at a time


Reproducible: Sometimes


User Profile Reset: No

Additional Info:
ts happen some timesonly in this device

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-commits] core.git: include/sfx2 sfx2/source writerfilter/source

2023-11-28 Thread Mike Kaganski (via logerrit)
 include/sfx2/objsh.hxx  |2 
 include/sfx2/strings.hrc|3 -
 sfx2/source/doc/objmisc.cxx |   54 +++-
 writerfilter/source/ooxml/OOXMLDocumentImpl.cxx |6 --
 4 files changed, 47 insertions(+), 18 deletions(-)

New commits:
commit 92e7f28f9aff78907bad030be80a9ea9452a3ddc
Author: Mike Kaganski 
AuthorDate: Mon Nov 27 18:07:30 2023 +0300
Commit: Mike Kaganski 
CommitDate: Wed Nov 29 06:23:33 2023 +0100

Related: tdf#104718 Use package repair request and behavior

Same as in other places handling that:
* SfxBaseModel::load (sfx2/source/doc/sfxbasemodel.cxx);
* StorageFilterDetect::detect 
(filter/source/storagefilterdetect/filterdetect.cxx);
* TypeDetection::impl_detectTypeFlatAndDeep 
(filter/source/config/cache/typedetection.cxx)

In these cases, the same handler is used (RequestPackageReparation);
when the user approves an attempt to repair the package, the media
descriptor gets "RepairPackage" property set to true (this produces
a "(repaired document)" appended to the document title); also, the
document is opened in template mode (so saving it doesn't simply
overwrite the original broken document, but asks for a new name).

Re-using this logic, and checking if the "RepairPackage" is already
set, allows to unify the behavior, and to avoid duplicate warnings
when the user already approved repair of a broken package.

The request won't contain the details of the XML problem; but it
will be shown if rejected anyway, so OK for the diagnostics.

Change-Id: Ic997f89272212227479d14236f5e7788298a904a
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/160001
Tested-by: Jenkins
Reviewed-by: Mike Kaganski 

diff --git a/include/sfx2/objsh.hxx b/include/sfx2/objsh.hxx
index fd23ae4af437..20e497b6e4af 100644
--- a/include/sfx2/objsh.hxx
+++ b/include/sfx2/objsh.hxx
@@ -475,7 +475,7 @@ public:
 voidAvoidRecentDocs(bool bAvoid) { 
mbAvoidRecentDocs = bAvoid; }
 
 /// On first error ask user if import should continue; return saved answer.
-bool
IsContinueImportOnFilterExceptions(std::u16string_view aErrMessage);
+boolIsContinueImportOnFilterExceptions();
 
 // Transfer IFace
 boolIsAbortingImport() const;
diff --git a/include/sfx2/strings.hrc b/include/sfx2/strings.hrc
index 300e1036169b..d28fa1cc22b7 100644
--- a/include/sfx2/strings.hrc
+++ b/include/sfx2/strings.hrc
@@ -70,9 +70,6 @@
 #define STR_QMSG_SEL_FOLDER_DELETE  
NC_("STR_QMSG_SEL_FOLDER_DELETE", "Do you want to delete the selected 
category?")
 #define STR_QMSG_TEMPLATE_OVERWRITE 
NC_("STR_QMSG_TEMPLATE_OVERWRITE", "A template named $1 already exists in $2. 
Do you want to overwrite it?")
 #define STR_QMSG_SEL_TEMPLATE_DELETE
NC_("STR_QMSG_SEL_TEMPLATE_DELETE", "Do you want to delete the selected 
templates?")
-#define STR_QMSG_ERROR_OPENING_FILE 
NC_("STR_QMSG_ERROR_OPENING_FILE", "An error occurred during opening the file. 
This may be caused by incorrect file contents.\n")
-#define STR_QMSG_ERROR_OPENING_FILE_DETAILS 
NC_("STR_QMSG_ERROR_OPENING_FILE_DETAILS", "The error details are:\n")
-#define STR_QMSG_ERROR_OPENING_FILE_CONTINUE
NC_("STR_QMSG_ERROR_OPENING_FILE_CONTINUE", "\nProceeding with import may cause 
data loss or corruption, and application may become unstable or crash.\n\nDo 
you want to ignore the error and attempt to continue loading the file?")
 
 #define STR_HELP_WINDOW_TITLE   NC_("STR_HELP_WINDOW_TITLE", 
"%PRODUCTNAME Help")
 #define STR_HELP_BUTTON_INDEX_ON
NC_("STR_HELP_BUTTON_INDEX_ON", "Show Navigation Pane")
diff --git a/sfx2/source/doc/objmisc.cxx b/sfx2/source/doc/objmisc.cxx
index 57deb4fe9de8..ede8983608c6 100644
--- a/sfx2/source/doc/objmisc.cxx
+++ b/sfx2/source/doc/objmisc.cxx
@@ -50,6 +50,7 @@
 #include 
 #include 
 
+#include 
 #include 
 #include 
 
@@ -66,6 +67,7 @@
 #include 
 #include 
 
+#include 
 #include 
 #include 
 #include 
@@ -80,6 +82,7 @@
 #include 
 #include 
 
+#include 
 #include 
 #include 
 #include 
@@ -1937,20 +1940,51 @@ bool SfxObjectShell_Impl::hasTrustedScriptingSignature(
 return bResult;
 }
 
-bool SfxObjectShell::IsContinueImportOnFilterExceptions(std::u16string_view 
aErrMessage)
+bool SfxObjectShell::IsContinueImportOnFilterExceptions()
 {
 if (mbContinueImportOnFilterExceptions == undefined)
 {
-if (Application::GetDialogCancelMode() == DialogCancelMode::Off)
+if (!pMedium)
 {
-// Ask the user to try to continue or abort loading
-OUString aMessage = SfxResId(STR_QMSG_ERROR_OPENING_FILE);
-if (!aErrMessage.empty())
-aMessage += SfxResId(STR_QMSG_ERROR_OPENING_FILE_DETAILS) + 
aErrMessage;
-   

[Libreoffice-bugs] [Bug 147565] Browsing comments in the navigation pane also browses hidden solved comments

2023-11-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147565

--- Comment #38 from Nyt wordle  ---
Nyt Wordle is a word-guessing game that challenges players to decipher a hidden
five-letter word. The catch? Players only have six attempts to guess the
correct word. With each guess, the game provides feedback on which letters are
correct and in the right position, and which are incorrect. It’s a game of
deduction, wordplay, and strategy, all wrapped up in an elegant and minimalist
interface.
Website : https://www.newyorktimeswordle.org/

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 158388] Files with corrupted meta.xml should be able to open and rebuild since it's not a fatal error

2023-11-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=158388

--- Comment #2 from Dev  ---
(In reply to Mike Kaganski from comment #1)
> See also: https://gerrit.libreoffice.org/c/core/+/159976
> 
> Since this is a broken package, the fix should set the RepairPackage media
> descriptor property to true, after a prompt.
> 
> In package/source/zippackage/ZipPackage.cxx, there are checks related to the
> most fundamental things - e.g., for ODF packages, manifest is checked.
> 
> But all the other XML streams can't be checked there; so the XML parser
> needs to do the job.

Not sure if it is related to broken zip or not.  In our case the ods file
itself is zipped-okay, we could unzip it (so that we knew the meta.xml was
wrong).  No idea why meta.xml was emptied (since this file is from our user).

Indeed it should be solved in more general way, not specific to Calc.  However
so far when we tried to search where to process/import meta.xml it was spread
in different components like sc/, sd/, sw/, etc.  Do you suggest us to add
similar code to all those components, or is there another "upper" place to
handle this at once?

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-commits] core.git: Branch 'libreoffice-7-6' - extras/source

2023-11-28 Thread Laurent Balland (via logerrit)
 extras/source/templates/presnt/Candy/content.xml |9 ---
 extras/source/templates/presnt/Candy/styles.xml  |   55 ++-
 2 files changed, 25 insertions(+), 39 deletions(-)

New commits:
commit 6737658171df267a466ff55bd870f97e5bffebc1
Author: Laurent Balland 
AuthorDate: Tue Nov 21 18:57:57 2023 +0100
Commit: Adolfo Jayme Barrientos 
CommitDate: Wed Nov 29 04:26:06 2023 +0100

tdf#158202 Candy Impress template background

On first master page, move picture from page background to an object at
the background
Other updates:
- remove unused font declarations
- remove page number value

Change-Id: Ieded7b794e00213b7c47e0059bb7120ed133b125
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/159794
Tested-by: Jenkins
Reviewed-by: Laurent Balland 
(cherry picked from commit c8b21dd6a310ff4fb1dd53c6930768fda34dda4b)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/159896

diff --git a/extras/source/templates/presnt/Candy/content.xml 
b/extras/source/templates/presnt/Candy/content.xml
index aef0e01fa93b..b435ce9c16af 100644
--- a/extras/source/templates/presnt/Candy/content.xml
+++ b/extras/source/templates/presnt/Candy/content.xml
@@ -2,24 +2,15 @@
 http://openoffice.org/2009/office; 
xmlns:anim="urn:oasis:names:tc:opendocument:xmlns:animation:1.0" 
xmlns:smil="urn:oasis:names:tc:opendocument:xmlns:smil-compatible:1.0" 
xmlns:presentation="urn:oasis:names:tc:opendocument:xmlns:presentation:1.0" 
xmlns:css3t="http://www.w3.org/TR/css3-text/; 
xmlns:grddl="http://www.w3.org/2003/g/data-view#; 
xmlns:xhtml="http://www.w3.org/1999/xhtml; 
xmlns:formx="urn:openoffice:names:experimental:ooxml-odf-interop:xmlns:form:1.0"
 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance; 
xmlns:rpt="http://openoffice.org/2005/report; 
xmlns:dc="http://purl.org/dc/elements/1.1/; 
xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0" 
xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0" 
xmlns:draw="urn:oasis:names:tc:opendocument:xmlns:drawing:1.0" 
xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0" 
xmlns:oooc="http://openoffice.org/2004/calc; 
xmlns:style="urn:oasis:names:tc:opendocument:
 xmlns:style:1.0" xmlns:ooow="http://openoffice.org/2004/writer; 
xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" 
xmlns:xlink="http://www.w3.org/1999/xlink; 
xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0" 
xmlns:ooo="http://openoffice.org/2004/office; 
xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" 
xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0" 
xmlns:table="urn:oasis:names:tc:opendocument:xmlns:table:1.0" 
xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0" 
xmlns:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2" 
xmlns:calcext="urn:org:documentfoundation:names:experimental:calc:xmlns:calcext:1.0"
 xmlns:tableooo="http://openoffice.org/2009/table; 
xmlns:drawooo="http://openoffice.org/2010/draw; 
xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0"
 xmlns:dom="http://www.w3.org/2001/xml-events; 
xmlns:field="urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0" 
xmlns:xsd="ht
 tp://www.w3.org/2001/XMLSchema" 
xmlns:math="http://www.w3.org/1998/Math/MathML; 
xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0" 
xmlns:script="urn:oasis:names:tc:opendocument:xmlns:script:1.0" 
xmlns:xforms="http://www.w3.org/2002/xforms; office:version="1.3">
   
   
-
 
 
-
 
 
-
 
-
 
 
-
-
-
 
 
-
-
 
 
 
diff --git a/extras/source/templates/presnt/Candy/styles.xml 
b/extras/source/templates/presnt/Candy/styles.xml
index d9ae11fac954..1f14a5a3f08f 100644
--- a/extras/source/templates/presnt/Candy/styles.xml
+++ b/extras/source/templates/presnt/Candy/styles.xml
@@ -1,24 +1,15 @@
 
 http://openoffice.org/2009/office; 
xmlns:anim="urn:oasis:names:tc:opendocument:xmlns:animation:1.0" 
xmlns:smil="urn:oasis:names:tc:opendocument:xmlns:smil-compatible:1.0" 
xmlns:presentation="urn:oasis:names:tc:opendocument:xmlns:presentation:1.0" 
xmlns:css3t="http://www.w3.org/TR/css3-text/; 
xmlns:rpt="http://openoffice.org/2005/report; 
xmlns:dc="http://purl.org/dc/elements/1.1/; 
xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0" 
xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0" 
xmlns:draw="urn:oasis:names:tc:opendocument:xmlns:drawing:1.0" 
xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0" 
xmlns:oooc="http://openoffice.org/2004/calc; 
xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0" 
xmlns:ooow="http://openoffice.org/2004/writer; 
xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" 
xmlns:xlink="http://www.w3.org/1999/xlink; 
xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compati
 ble:1.0" xmlns:ooo="http://openoffice.org/2004/office; 

[Libreoffice-commits] core.git: sw/source sw/uiconfig

2023-11-28 Thread Jim Raykowski (via logerrit)
 sw/source/uibase/inc/content.hxx   |2 +
 sw/source/uibase/utlui/content.cxx |   44 ++---
 sw/uiconfig/swriter/ui/navigatorcontextmenu.ui |   16 +
 3 files changed, 58 insertions(+), 4 deletions(-)

New commits:
commit 01a02ee7f1dbe7501a89b41e62599fba6a8b33f3
Author: Jim Raykowski 
AuthorDate: Sat Nov 18 18:56:56 2023 -0900
Commit: Jim Raykowski 
CommitDate: Wed Nov 29 04:24:57 2023 +0100

tdf#157681 SwNavigator: Add Protect and Hide menu items to Sections

context menu

Change-Id: I6a79c06abe2cf4dd44d491046d8ee73d35dfe6ac
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/159718
Tested-by: Jenkins
Reviewed-by: Jim Raykowski 

diff --git a/sw/source/uibase/inc/content.hxx b/sw/source/uibase/inc/content.hxx
index 77cb156b744c..c6698f4b0322 100644
--- a/sw/source/uibase/inc/content.hxx
+++ b/sw/source/uibase/inc/content.hxx
@@ -72,6 +72,8 @@ class SwRegionContent final : public SwContent
 m_nRegionLevel(nLevel), 
m_pSectionFormat(pSectionFormat){}
 sal_uInt8   GetRegionLevel() const {return m_nRegionLevel;}
 const SwSectionFormat* GetSectionFormat() const {return m_pSectionFormat;}
+
+bool IsProtect() const override;
 };
 
 class SwURLFieldContent final : public SwContent
diff --git a/sw/source/uibase/utlui/content.cxx 
b/sw/source/uibase/utlui/content.cxx
index 07fd64dc3bf9..ff354273ff82 100644
--- a/sw/source/uibase/utlui/content.cxx
+++ b/sw/source/uibase/utlui/content.cxx
@@ -260,6 +260,11 @@ bool SwURLFieldContent::IsProtect() const
 return m_pINetAttr->IsProtect();
 }
 
+bool SwRegionContent::IsProtect() const
+{
+return m_pSectionFormat->GetSection()->IsProtect();
+}
+
 SwGraphicContent::~SwGraphicContent()
 {
 }
@@ -810,7 +815,7 @@ void SwContentType::FillMemberList(bool* pbContentChanged)
 m_bAlphabeticSort ? 0 : 
getYPos(pNodeIndex->GetNode()),
 pFormat));
 
-if(!pFormat->IsVisible())
+if (!pFormat->IsVisible() || pSection->IsHidden())
 pCnt->SetInvisible();
 m_pMember->insert(std::move(pCnt));
 }
@@ -1718,6 +1723,9 @@ IMPL_LINK(SwContentTree, CommandHdl, const CommandEvent&, 
rCEvt, bool)
 
 bool bRemoveSortEntry = true;
 
+bool bRemoveProtectSection = true;
+bool bRemoveHideSection = true;
+
 if (xEntry)
 {
 const SwContentType* pType;
@@ -1811,7 +1819,8 @@ IMPL_LINK(SwContentTree, CommandHdl, const CommandEvent&, 
rCEvt, bool)
 && 
m_pActiveShell->getIDocumentSettingAccess().get(DocumentSettingId::PROTECT_BOOKMARKS);
 const bool bEditable = pType->IsEditable() &&
 ((bVisible && !bProtected) || ContentTypeId::REGION == 
nContentType);
-const bool bDeletable = pType->IsDeletable() && bVisible && 
!bProtected && !bProtectBM;
+const bool bDeletable = pType->IsDeletable()
+&& ((bVisible && !bProtected && !bProtectBM) || 
ContentTypeId::REGION == nContentType);
 const bool bRenamable = bEditable && !bReadonly &&
 (ContentTypeId::TABLE == nContentType ||
  ContentTypeId::FRAME == nContentType ||
@@ -1913,8 +1922,17 @@ IMPL_LINK(SwContentTree, CommandHdl, const 
CommandEvent&, rCEvt, bool)
 }
 else if(ContentTypeId::REGION == nContentType)
 {
-bRemoveSelectEntry = false;
 bRemoveEditEntry = false;
+bRemoveProtectSection = false;
+bRemoveHideSection = false;
+SwContent* pCnt = 
weld::fromId(m_xTreeView->get_id(*xEntry));
+
assert(dynamic_cast(static_cast(pCnt)));
+const SwSectionFormat* pSectionFormat
+= 
static_cast(pCnt)->GetSectionFormat();
+bool bHidden = pSectionFormat->GetSection()->IsHidden();
+bRemoveSelectEntry = bHidden || !bVisible;
+xPop->set_active("protectsection", bProtected);
+xPop->set_active("hidesection", bHidden);
 }
 else if (bEditable)
 bRemoveEditEntry = false;
@@ -2106,6 +2124,10 @@ IMPL_LINK(SwContentTree, CommandHdl, const 
CommandEvent&, rCEvt, bool)
 xPop->remove("endnotetracking");
 if (bRemoveSortEntry)
 xPop->remove("sort");
+if (bRemoveProtectSection)
+xPop->remove("protectsection");
+if (bRemoveHideSection)
+xPop->remove("hidesection");
 
 bool bSetSensitiveCollapseAllCategories = false;
 if (!m_bIsRoot && xEntry)
@@ -4811,7 +4833,21 @@ void SwContentTree::ExecuteContextMenuAction(const 
OUString& rSelectedPopupEntry
 if 

[Libreoffice-bugs] [Bug 157681] Add an opportunity to hide sections via context menu at the Navigator

2023-11-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=157681

--- Comment #8 from Commit Notification 
 ---
Jim Raykowski committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/core/commit/01a02ee7f1dbe7501a89b41e62599fba6a8b33f3

tdf#157681 SwNavigator: Add Protect and Hide menu items to Sections

It will be available in 24.2.0.

The patch should be included in the daily builds available at
https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More
information about daily builds can be found at:
https://wiki.documentfoundation.org/Testing_Daily_Builds

Affected users are encouraged to test the fix and report feedback.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 157681] Add an opportunity to hide sections via context menu at the Navigator

2023-11-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=157681

Commit Notification  changed:

   What|Removed |Added

 Whiteboard||target:24.2.0

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 152583] Need a new citation style and autonumbering scheme for simplifed Chinese

2023-11-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152583

--- Comment #4 from Kevin Suo  ---
> In order to make Writer to use the [1], [2], [3] numbering style for Chinese 
> documents by default, we need to set templates. We now have a default Chinese 
> template named "Simplified Chinese Normal" under the "Localization" template 
> category (File > Template > Manage Template), you can right click that 
> template and set it to default template for Writer. However that template 
> currently still uses the default 1,2,3 style numbering for footnote and 
> endnote. I can prepare a patch to let that template use [1], [2], [3] style 
> footnote and endnote, but shall I set it to both footnote and endnote, or 
> only for endnote?

I checked, and the current default Chinese template does use [1], [2], [3] for
footnote and endnote numbering, so there is no need to prepare a patch.

You can access the template from: File > Templates > Manage Templates > select
"Localization" from the category dropdown, then you will see a template named
"Simplified Chinese Normal" (普通简体中文). To set it to your default for Writer
documents, right-click that template and select "Set to Default Template". (By
the way, see also the feature request in bug 86483)

I will add another numbering style so that this numbering style would show up
where you click the numbering toolbar icon.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 158216] donut chart : space parameter between nested donuts

2023-11-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=158216

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 158424] Checking for an update failed. Error reading data from the Internet. Server error message: . BLANK

2023-11-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=158424

--- Comment #3 from QA Administrators  ---
[Automated Action] NeedInfo-To-Unconfirmed

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 158424] Checking for an update failed. Error reading data from the Internet. Server error message: . BLANK

2023-11-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=158424

QA Administrators  changed:

   What|Removed |Added

 Ever confirmed|1   |0
 Status|NEEDINFO|UNCONFIRMED

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 155109] App crashes when scrolling

2023-11-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=155109

--- Comment #5 from QA Administrators  ---
Dear mj.harri...@proton.me,

Please read this message in its entirety before proceeding.

Your bug report is being closed as INSUFFICIENTDATA due to inactivity and
a lack of information which is needed in order to accurately
reproduce and confirm the problem. We encourage you to retest
your bug against the latest release. If the issue is still
present in the latest stable release, we need the following
information (please ignore any that you've already provided):

a) Provide details of your system including your operating
   system and the latest version of LibreOffice that you have
   confirmed the bug to be present

b) Provide easy to reproduce steps – the simpler the better

c) Provide any test case(s) which will help us confirm the problem

d) Provide screenshots of the problem if you think it might help

e) Read all comments and provide any requested information

Once all of this is done, please set the bug back to UNCONFIRMED
and we will attempt to reproduce the issue. Please do not:

a) respond via email 

b) update the version field in the bug or any of the other details
   on the top section of our bug tracker

Warm Regards,
QA Team

MassPing-NeedInfo-FollowUp

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 158411] MAILMERGE takes forever after creating Documents and crashes eventually after ~3h for large mailing

2023-11-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=158411

--- Comment #6 from QA Administrators  ---
[Automated Action] NeedInfo-To-Unconfirmed

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-ux-advise] [Bug 158174] EDITING: AutoCorrect locale options should have an exception for single smart quotes to be substituted back to apostrophes when in the middle of a word

2023-11-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=158174

--- Comment #4 from QA Administrators  ---
[Automated Action] NeedInfo-To-Unconfirmed

-- 
You are receiving this mail because:
You are on the CC list for the bug.

[Libreoffice-bugs] [Bug 158174] EDITING: AutoCorrect locale options should have an exception for single smart quotes to be substituted back to apostrophes when in the middle of a word

2023-11-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=158174

--- Comment #4 from QA Administrators  ---
[Automated Action] NeedInfo-To-Unconfirmed

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 155617] can't center or align right a table

2023-11-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=155617

--- Comment #3 from QA Administrators  ---
Dear ksso,

This bug has been in NEEDINFO status with no change for at least
6 months. Please provide the requested information as soon as
possible and mark the bug as UNCONFIRMED. Due to regular bug
tracker maintenance, if the bug is still in NEEDINFO status with
no change in 30 days the QA team will close the bug as INSUFFICIENTDATA
due to lack of needed information.

For more information about our NEEDINFO policy please read the
wiki located here:
https://wiki.documentfoundation.org/QA/Bugzilla/Fields/Status/NEEDINFO

If you have already provided the requested information, please
mark the bug as UNCONFIRMED so that the QA team knows that the
bug is ready to be confirmed.

Thank you for helping us make LibreOffice even better for everyone!

Warm Regards,
QA Team

MassPing-NeedInfo-Ping

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 155618] table behaviour can't be customized

2023-11-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=155618

--- Comment #3 from QA Administrators  ---
Dear ksso,

This bug has been in NEEDINFO status with no change for at least
6 months. Please provide the requested information as soon as
possible and mark the bug as UNCONFIRMED. Due to regular bug
tracker maintenance, if the bug is still in NEEDINFO status with
no change in 30 days the QA team will close the bug as INSUFFICIENTDATA
due to lack of needed information.

For more information about our NEEDINFO policy please read the
wiki located here:
https://wiki.documentfoundation.org/QA/Bugzilla/Fields/Status/NEEDINFO

If you have already provided the requested information, please
mark the bug as UNCONFIRMED so that the QA team knows that the
bug is ready to be confirmed.

Thank you for helping us make LibreOffice even better for everyone!

Warm Regards,
QA Team

MassPing-NeedInfo-Ping

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 148989] writer crash in LO 7.3.3.2 when use scroll page in master documente with 170 pg

2023-11-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148989

--- Comment #11 from QA Administrators  ---
Dear luisjosegarcia,

Please read this message in its entirety before proceeding.

Your bug report is being closed as INSUFFICIENTDATA due to inactivity and
a lack of information which is needed in order to accurately
reproduce and confirm the problem. We encourage you to retest
your bug against the latest release. If the issue is still
present in the latest stable release, we need the following
information (please ignore any that you've already provided):

a) Provide details of your system including your operating
   system and the latest version of LibreOffice that you have
   confirmed the bug to be present

b) Provide easy to reproduce steps – the simpler the better

c) Provide any test case(s) which will help us confirm the problem

d) Provide screenshots of the problem if you think it might help

e) Read all comments and provide any requested information

Once all of this is done, please set the bug back to UNCONFIRMED
and we will attempt to reproduce the issue. Please do not:

a) respond via email 

b) update the version field in the bug or any of the other details
   on the top section of our bug tracker

Warm Regards,
QA Team

MassPing-NeedInfo-FollowUp

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 155627] LibreOffice Calc – defined ranges are broken

2023-11-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=155627

--- Comment #2 from QA Administrators  ---
Dear Max Szabo,

This bug has been in NEEDINFO status with no change for at least
6 months. Please provide the requested information as soon as
possible and mark the bug as UNCONFIRMED. Due to regular bug
tracker maintenance, if the bug is still in NEEDINFO status with
no change in 30 days the QA team will close the bug as INSUFFICIENTDATA
due to lack of needed information.

For more information about our NEEDINFO policy please read the
wiki located here:
https://wiki.documentfoundation.org/QA/Bugzilla/Fields/Status/NEEDINFO

If you have already provided the requested information, please
mark the bug as UNCONFIRMED so that the QA team knows that the
bug is ready to be confirmed.

Thank you for helping us make LibreOffice even better for everyone!

Warm Regards,
QA Team

MassPing-NeedInfo-Ping

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 155168] LibreOffice no longer remembers which Style Sidebar I had open.

2023-11-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=155168

--- Comment #3 from QA Administrators  ---
Dear douglas.mathieu,

This bug has been in NEEDINFO status with no change for at least
6 months. Please provide the requested information as soon as
possible and mark the bug as UNCONFIRMED. Due to regular bug
tracker maintenance, if the bug is still in NEEDINFO status with
no change in 30 days the QA team will close the bug as INSUFFICIENTDATA
due to lack of needed information.

For more information about our NEEDINFO policy please read the
wiki located here:
https://wiki.documentfoundation.org/QA/Bugzilla/Fields/Status/NEEDINFO

If you have already provided the requested information, please
mark the bug as UNCONFIRMED so that the QA team knows that the
bug is ready to be confirmed.

Thank you for helping us make LibreOffice even better for everyone!

Warm Regards,
QA Team

MassPing-NeedInfo-Ping

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 149004] Libreoffice crashes when remote instances using the installation

2023-11-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=149004

--- Comment #2 from QA Administrators  ---
Dear judy.zhu,

This bug has been in NEEDINFO status with no change for at least
6 months. Please provide the requested information as soon as
possible and mark the bug as UNCONFIRMED. Due to regular bug
tracker maintenance, if the bug is still in NEEDINFO status with
no change in 30 days the QA team will close the bug as INSUFFICIENTDATA
due to lack of needed information.

For more information about our NEEDINFO policy please read the
wiki located here:
https://wiki.documentfoundation.org/QA/Bugzilla/Fields/Status/NEEDINFO

If you have already provided the requested information, please
mark the bug as UNCONFIRMED so that the QA team knows that the
bug is ready to be confirmed.

Thank you for helping us make LibreOffice even better for everyone!

Warm Regards,
QA Team

MassPing-NeedInfo-Ping

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 91132] FILESAVE: save a copy or PDF export -> ending isn't handled well if filename ends with ".1" (per Comment 48)

2023-11-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91132

--- Comment #55 from QA Administrators  ---
Dear Markus Grob,

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present with the latest version of LibreOffice
from https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the information
from Help - About LibreOffice.

If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a comment that includes the information from Help
- About LibreOffice.

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a particular
meaning that is not 
appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3) from
https://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to 'inherited from OOo';
4b. If the bug was not present in 3.3 - add 'regression' to keyword


Feel free to come ask questions or to say hello in our QA chat:
https://web.libera.chat/?settings=#libreoffice-qa

Thank you for helping us make LibreOffice even better for everyone!

Warm Regards,
QA Team

MassPing-UntouchedBug

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 71496] EDITING: Inserting a Paragraph below a Protected Section is not Possible if Cursor is not Allowed in Protected Areas

2023-11-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=71496

--- Comment #11 from QA Administrators  ---
Dear Harald Koester,

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present with the latest version of LibreOffice
from https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the information
from Help - About LibreOffice.

If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a comment that includes the information from Help
- About LibreOffice.

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a particular
meaning that is not 
appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3) from
https://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to 'inherited from OOo';
4b. If the bug was not present in 3.3 - add 'regression' to keyword


Feel free to come ask questions or to say hello in our QA chat:
https://web.libera.chat/?settings=#libreoffice-qa

Thank you for helping us make LibreOffice even better for everyone!

Warm Regards,
QA Team

MassPing-UntouchedBug

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 56904] Bundle Microsoft Access Database Engine 2010 Redistributable

2023-11-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=56904

--- Comment #12 from QA Administrators  ---
Dear Lionel Elie Mamane,

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present with the latest version of LibreOffice
from https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the information
from Help - About LibreOffice.

If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a comment that includes the information from Help
- About LibreOffice.

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a particular
meaning that is not 
appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3) from
https://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to 'inherited from OOo';
4b. If the bug was not present in 3.3 - add 'regression' to keyword


Feel free to come ask questions or to say hello in our QA chat:
https://web.libera.chat/?settings=#libreoffice-qa

Thank you for helping us make LibreOffice even better for everyone!

Warm Regards,
QA Team

MassPing-UntouchedBug

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 130545] "Cancel" does not cancel changes to "Print automatically inserted blank pages" in "Print" and "Print Settings" dialog

2023-11-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=130545

--- Comment #3 from QA Administrators  ---
Dear sdc.blanco,

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present with the latest version of LibreOffice
from https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the information
from Help - About LibreOffice.

If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a comment that includes the information from Help
- About LibreOffice.

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a particular
meaning that is not 
appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3) from
https://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to 'inherited from OOo';
4b. If the bug was not present in 3.3 - add 'regression' to keyword


Feel free to come ask questions or to say hello in our QA chat:
https://web.libera.chat/?settings=#libreoffice-qa

Thank you for helping us make LibreOffice even better for everyone!

Warm Regards,
QA Team

MassPing-UntouchedBug

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 145657] Export to PDF resets automatic blank pages option for printer

2023-11-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=145657

--- Comment #2 from QA Administrators  ---
Dear Hagar Delest,

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present with the latest version of LibreOffice
from https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the information
from Help - About LibreOffice.

If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a comment that includes the information from Help
- About LibreOffice.

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a particular
meaning that is not 
appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3) from
https://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to 'inherited from OOo';
4b. If the bug was not present in 3.3 - add 'regression' to keyword


Feel free to come ask questions or to say hello in our QA chat:
https://web.libera.chat/?settings=#libreoffice-qa

Thank you for helping us make LibreOffice even better for everyone!

Warm Regards,
QA Team

MassPing-UntouchedBug

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 119628] EDITING: Firebird Embedded: error message when resetting auto increment a second time

2023-11-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119628

--- Comment #14 from QA Administrators  ---
Dear kam3don,

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present with the latest version of LibreOffice
from https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the information
from Help - About LibreOffice.

If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a comment that includes the information from Help
- About LibreOffice.

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a particular
meaning that is not 
appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3) from
https://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to 'inherited from OOo';
4b. If the bug was not present in 3.3 - add 'regression' to keyword


Feel free to come ask questions or to say hello in our QA chat:
https://web.libera.chat/?settings=#libreoffice-qa

Thank you for helping us make LibreOffice even better for everyone!

Warm Regards,
QA Team

MassPing-UntouchedBug

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-ux-advise] [Bug 158404] Start Center Recent Documents view: make it so hover changes item selection

2023-11-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=158404

--- Comment #13 from V Stuart Foote  ---
(In reply to Buovjaga from comment #12)

> It should be changed because the two different highlights provide no value
> in the Recent Documents view and instead cause a jarring visual effect, when
> the selection confusingly stays put while the highlight follows the mouse.
> 

No, the MRU selection and mouseover highlight are now clearly different visual
events on the StartCenter with Heiko's tweak for bug 158084 -- sorry but I
don't see it as as "jarring visual effect" in any sense.

> The change is in no way drastic as it makes the mouse behaviour coherent and
> does not remove any functionality. If you want to argue it is drastic,
> please provide concrete scenarios where things get worse due to the change.
> 

It is drastic as attempts to change the mouseover into a selection action
serves no purpose in the UI. It does not consolidate anything--mouseover on SC
sidebar, on Menu submenu items, and on Toolbar widgets behaves the same as the
SC thumbnail views--with focus/selection remaining while mouseover highlights
and triggers tooltips. Selections are not changed there either.

In fact the mouseover changes to the SC would cause more user annoyance than
any visual improvement to the UI.

> In the Templates view we should probably make the multiselection more useful
> by allowing Shift/Ctrl-clicking to expand the selection. Now it is difficult
> to discover for mouse users as it only works via keyboard.

Not clear there should be a multi-select for the Templates as now via
keyboard--to me that is an implementation error. You can only open one template
at a time to create a new document--and the last selected in a multi-select has
the focus and is used for the new document.

-- 
You are receiving this mail because:
You are on the CC list for the bug.

[Libreoffice-bugs] [Bug 158078] [7.6.3.1] Crashes on startup: segmentation fault in pthread_mutex_lock

2023-11-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=158078

--- Comment #5 from l...@q66.moe ---
(7.6.2.1 likewise also works for us)

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 158078] [7.6.3.1] Crashes on startup: segmentation fault in pthread_mutex_lock

2023-11-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=158078

--- Comment #4 from l...@q66.moe ---
I also reproduce this on Chimera Linux (clang 17 and musl), same backtrace.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 158424] Checking for an update failed. Error reading data from the Internet. Server error message: . BLANK

2023-11-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=158424

--- Comment #2 from Graham GADGET  ---
Created attachment 191101
  --> https://bugs.documentfoundation.org/attachment.cgi?id=191101=edit
screenshot

Using the HELP Menu.
Select Check for updates.
results in ERROR

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 158428] New: Fillable PDF Forms in Libreoffice Draw cannot have textboxes that scale their font to fit the textbox

2023-11-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=158428

Bug ID: 158428
   Summary: Fillable PDF Forms in Libreoffice Draw cannot have
textboxes that scale their font to fit the textbox
   Product: LibreOffice
   Version: 7.6.3.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: Draw
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: b...@webzone.com.au

Description:
I am trying to transition from Adobe Acrobat to Libreoffice Draw for making
Fillable PDF forms, however draw seems to be lacking a feature.

If I create a text box form control, draw the box, export as a PDF then type a
long string of letters, the letters will truncated. This is unacceptable for
any form that needs to be printed to paper.

In adobe acrobat, if you set the font size of the text box to 'auto', the text
will shrink to fit in the box instead of being truncated.

According to this bug report in mozillas pdf reader
https://github.com/mozilla/pdf.js/issues/15605 if the font size of the form is
set to zero, then the PDF viewer should fit the text to the bounding box. As
far as I am aware, there is no way to do this in draw.

Steps to Reproduce:
1. Goto View -> Toolbars -> Form Controls to enable form controls
2. Click the 'Text Box' control from the form controls
3. Drag to create a text box
4. Export the file as a PDF
5. Open the PDF in a PDF viewer (Such as firefox or chrome)
6. Type a long string of letters that is greater than the length of the text
box
6. Deselect the text box


Actual Results:
The text box it cut off

Expected Results:
The text should have been shrunk to fit the text box


Reproducible: Always


User Profile Reset: No

Additional Info:
Version: 7.6.3.2 (X86_64) / LibreOffice Community
Build ID: 29d686fea9f6705b262d369fede658f824154cc0
CPU threads: 8; OS: Windows 10.0 Build 19045; UI render: Skia/Raster; VCL: win
Locale: en-AU (en_AU); UI: en-US
Calc: threaded

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 158427] 7.3.2.2 calc system dialog font problem

2023-11-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=158427

m.a.riosv  changed:

   What|Removed |Added

 CC||miguelangelrv@libreoffice.o
   ||rg

--- Comment #1 from m.a.riosv  ---
Please attach a sample file, and paste the information in Menu/Help/About
LibreOffice, there is an icon to copy.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 158427] 7.3.2.2 calc system dialog font problem

2023-11-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=158427

m.a.riosv  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 158426] Number of columns should be limited in Calc data entry form

2023-11-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=158426

m.a.riosv  changed:

   What|Removed |Added

 CC||miguelangelrv@libreoffice.o
   ||rg

--- Comment #1 from m.a.riosv  ---
+1 for the message.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 132031] EDITING Enhancement Request: When using 'Current Selection Only' in F/R, keep the same selection after each replace operation

2023-11-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132031

m.a.riosv  changed:

   What|Removed |Added

 CC||j22...@gmail.com

--- Comment #11 from m.a.riosv  ---
*** Bug 158425 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 158425] About which cells remain selected after replacing

2023-11-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=158425

m.a.riosv  changed:

   What|Removed |Added

 Resolution|--- |DUPLICATE
 Status|UNCONFIRMED |RESOLVED
 CC||miguelangelrv@libreoffice.o
   ||rg

--- Comment #1 from m.a.riosv  ---


*** This bug has been marked as a duplicate of bug 132031 ***

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 102847] [META] Quick Find, Search and Replace

2023-11-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=102847
Bug 102847 depends on bug 139886, which changed state.

Bug 139886 Summary: CALC: Add option to retain selection when using "Replace 
All" in "Current selection only"
https://bugs.documentfoundation.org/show_bug.cgi?id=139886

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |DUPLICATE

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 132031] EDITING Enhancement Request: When using 'Current Selection Only' in F/R, keep the same selection after each replace operation

2023-11-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132031

m.a.riosv  changed:

   What|Removed |Added

 CC||bugrepor...@public-files.de

--- Comment #10 from m.a.riosv  ---
*** Bug 139886 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 139886] CALC: Add option to retain selection when using "Replace All" in "Current selection only"

2023-11-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139886

m.a.riosv  changed:

   What|Removed |Added

 Resolution|--- |DUPLICATE
 Status|NEW |RESOLVED

--- Comment #3 from m.a.riosv  ---


*** This bug has been marked as a duplicate of bug 132031 ***

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 132031] EDITING Enhancement Request: When using 'Current Selection Only' in F/R, keep the same selection after each replace operation

2023-11-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132031

m.a.riosv  changed:

   What|Removed |Added

 CC||en.benede...@gmail.com

--- Comment #9 from m.a.riosv  ---
*** Bug 81442 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 113136] [META] Find & Replace Dialog

2023-11-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113136
Bug 113136 depends on bug 81442, which changed state.

Bug 81442 Summary: EDITING: When doing a Search and Replace All, "Current 
selection only" becomes deselected.
https://bugs.documentfoundation.org/show_bug.cgi?id=81442

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |DUPLICATE

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 81442] EDITING: When doing a Search and Replace All, "Current selection only" becomes deselected.

2023-11-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=81442

m.a.riosv  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |DUPLICATE
 CC||miguelangelrv@libreoffice.o
   ||rg

--- Comment #11 from m.a.riosv  ---
Unifying in one bug.

*** This bug has been marked as a duplicate of bug 132031 ***

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 158424] Checking for an update failed. Error reading data from the Internet. Server error message: . BLANK

2023-11-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=158424

m.a.riosv  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||miguelangelrv@libreoffice.o
   ||rg
 Ever confirmed|0   |1

--- Comment #1 from m.a.riosv  ---
You didn't explain what type of link access to internet.

Only if you attach a sample file, the issue can be tested.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 158096] Selection of lighter Preinstalled Themes under Personalization (Options) leaves menu ribbon icons white and unreadable

2023-11-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=158096

--- Comment #8 from TH  ---
ADDITIONALLY, there is NO clear way to change the "icon theme" when switching
to a lighter theme in LO 7.5, to make the ribbon icons legible.  In fact, I see
NO way at all to do that.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 158096] Selection of lighter Preinstalled Themes under Personalization (Options) leaves menu ribbon icons white and unreadable

2023-11-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=158096

--- Comment #7 from TH  ---
(In reply to Stéphane Guillou (stragu) from comment #5)
> (In reply to TH from comment #3)
> > In version 7.4.x of LibreOffice, with the OS being set to dark mode, the
> > light themes in LibreOffice DO have properly readable menu ribbon icons,
> > etc.  It is in later version of LibreOffice, that this is broken.
> This is likely because of better dark mode support since LO 7.5 and the fix
> for bug 152183: now the icon theme changes automatically to a light theme if
> the OS is in dark mode, which is a great improvement.
> If you overwrite the OS theme with a Personnalisation theme, you have to
> change the icon theme to a suitable one. This was actually already the case
> before 7.5, the other way around: if you used a dark Personnalisation theme,
> you would have had to change the icon theme to an icon theme suitable for a
> dark theme.
> > NO ONE
> > should be required to have their OS set to non-dark-mode in order to be able
> > to successfully use a lighter in-built theme in LibreOffice, and that should
> > NOT be your expectation.
> ...you should be able to change between dark mode and light mode just for
> LibreOffice, in Tools > Options > View > Appearance. No need to change it
> for the whole OS.

FALSE.  Switching to light mode in the latest version of LibreOffice, as I
earlier pointed out very carefully, leaves the ribbon icons UNREADABLE and thus
UNUSABLE.  Additionally, the dark mode support since LO 7.5 clearly thus BREAKS
the light mode themes.  You seem to have FAILED even to test these things,
before commenting, or my points would be self-evident to you, as being CORRECT.
 You also seem to have FAILED to actually pay attention to what I stated, in
full, when identifying this new bug / break in the lighter themes, etc.  Your
comments are simply WRONG, from start to finish, in regard to what I am saying.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 158427] New: 7.3.2.2 calc system dialog font problem

2023-11-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=158427

Bug ID: 158427
   Summary: 7.3.2.2 calc system dialog font problem
   Product: LibreOffice
   Version: 7.3.2.2 release
  Hardware: Other
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: up.and.d...@hotmail.com

after this update, the Calc parts of dialog boxes show a non-readable font.
For example, format cells: strike-thru font is unreadable.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 131560] Data/Form provides access to cells that are protected

2023-11-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=131560

Hossein  changed:

   What|Removed |Added

   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=15
   ||8426

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 158426] Number of columns should be limited in Calc data entry form

2023-11-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=158426

Hossein  changed:

   What|Removed |Added

   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=15
   ||8211

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 158211] Form input writes over protected cells

2023-11-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=158211

Hossein  changed:

   What|Removed |Added

   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=15
   ||8426

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 158426] Number of columns should be limited in Calc data entry form

2023-11-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=158426

Hossein  changed:

   What|Removed |Added

   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=13
   ||1560

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 116461] [META] Data Entry Form bugs and enhancements

2023-11-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=116461

Hossein  changed:

   What|Removed |Added

 Depends on||158426


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=158426
[Bug 158426] Number of columns should be limited in Calc data entry form
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 158426] Number of columns should be limited in Calc data entry form

2023-11-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=158426

Hossein  changed:

   What|Removed |Added

 CC||ilmari.lauhakangas@libreoff
   ||ice.org
 Blocks||116461


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=116461
[Bug 116461] [META] Data Entry Form bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 158426] New: Number of columns should be limited in Calc data entry form

2023-11-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=158426

Bug ID: 158426
   Summary: Number of columns should be limited in Calc data entry
form
   Product: LibreOffice
   Version: Inherited From OOo
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: hoss...@libreoffice.org

Description:
While testing tdf#158211 (a duplicate of tdf#131560), one can face performance
problems by doing select all, and then choosing "Data > Form".

Steps to Reproduce:
1. Open Calc
2. Press ctrl+a to select all cells
3. Choose "Data > Form" from menu bar

Actual Results:
LibreOffice hangs for a few minutes. When the dialog box appears at last, it is
still unresponsive.

Expected Results:
LibreOffice should respond immediately, as no heavy process is active.


Reproducible: Always


User Profile Reset: No

Additional Info:
The problem is likely because of the excessive number of columns, as they
appear in the dialog box as line edit widgets. Limiting the number of possible
columns can help avoid this problem.

In MS Excel, when the number of selected columns is too much, a warning message
is displayed: "Too many fields in the data form". The maximum number of columns
is 32. This is clarified in these links:

https://answers.microsoft.com/en-us/msoffice/forum/all/too-many-fields-in-the-data-form/4ad69e07-524b-40c7-a520-746f4562bc01

https://www.timeatlas.com/excel-data-form

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 131304] [META] MS Word compatibilityMode = 15

2023-11-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=131304

László Németh  changed:

   What|Removed |Added

 Depends on||158333


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=158333
[Bug 158333] FILEOPEN: DOCX: Layout differences with justified paragraph if
multiple text portions in a line
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 158333] FILEOPEN: DOCX: Layout differences with justified paragraph if multiple text portions in a line

2023-11-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=158333

László Németh  changed:

   What|Removed |Added

 Blocks||107830, 131304


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=107830
[Bug 107830] [META] DOCX (OOXML) paragraph-related issues
https://bugs.documentfoundation.org/show_bug.cgi?id=131304
[Bug 131304] [META] MS Word compatibilityMode = 15
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 107830] [META] DOCX (OOXML) paragraph-related issues

2023-11-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107830

László Németh  changed:

   What|Removed |Added

 Depends on||158333


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=158333
[Bug 158333] FILEOPEN: DOCX: Layout differences with justified paragraph if
multiple text portions in a line
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 131304] [META] MS Word compatibilityMode = 15

2023-11-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=131304

László Németh  changed:

   What|Removed |Added

 Depends on||158419


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=158419
[Bug 158419] FILEOPEN: DOCX: fix cursor position in a paragraph line shrunk by
the new justification algorithm
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 158419] FILEOPEN: DOCX: fix cursor position in a paragraph line shrunk by the new justification algorithm

2023-11-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=158419

László Németh  changed:

   What|Removed |Added

 Blocks||107830, 131304


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=107830
[Bug 107830] [META] DOCX (OOXML) paragraph-related issues
https://bugs.documentfoundation.org/show_bug.cgi?id=131304
[Bug 131304] [META] MS Word compatibilityMode = 15
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 107830] [META] DOCX (OOXML) paragraph-related issues

2023-11-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107830

László Németh  changed:

   What|Removed |Added

 Depends on||158419


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=158419
[Bug 158419] FILEOPEN: DOCX: fix cursor position in a paragraph line shrunk by
the new justification algorithm
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 158419] FILEOPEN: DOCX: fix cursor position in a paragraph line shrunk by the new justification algorithm

2023-11-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=158419

Commit Notification  changed:

   What|Removed |Added

 Whiteboard||target:24.2.0

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 158419] FILEOPEN: DOCX: fix cursor position in a paragraph line shrunk by the new justification algorithm

2023-11-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=158419

--- Comment #1 from Commit Notification 
 ---
László Németh committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/core/commit/20cbe88ce5610fd8ee302e5780a4c0821ddb3db4

tdf#119908 tdf#158419 sw smart justify: fix cursor position

It will be available in 24.2.0.

The patch should be included in the daily builds available at
https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More
information about daily builds can be found at:
https://wiki.documentfoundation.org/Testing_Daily_Builds

Affected users are encouraged to test the fix and report feedback.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 119908] FILEOPEN: DOCX: Layout differences with justified paragraph. MS 2013 introduced a new "smart justify" that can shrink as well as expand.

2023-11-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119908

--- Comment #25 from Commit Notification 
 ---
László Németh committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/core/commit/20cbe88ce5610fd8ee302e5780a4c0821ddb3db4

tdf#119908 tdf#158419 sw smart justify: fix cursor position

It will be available in 24.2.0.

The patch should be included in the daily builds available at
https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More
information about daily builds can be found at:
https://wiki.documentfoundation.org/Testing_Daily_Builds

Affected users are encouraged to test the fix and report feedback.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 158419] FILEOPEN: DOCX: fix cursor position in a paragraph line shrunk by the new justification algorithm

2023-11-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=158419

László Németh  changed:

   What|Removed |Added

 Status|ASSIGNED|RESOLVED
 Resolution|--- |FIXED
   Assignee|nem...@numbertext.org   |libreoffice-b...@lists.free
   ||desktop.org

-- 
You are receiving this mail because:
You are the assignee for the bug.

  1   2   3   4   >