Re: questions regarding of-pie chart work

2024-01-11 Thread Miklos Vajna
Hi Kurt,

On Wed, Jan 10, 2024 at 01:29:52AM +, Kurt Nordback 
 wrote:
> - I've implemented OOXML import/export, but not ODF import/export because ODF 
> doesn't support of-pie charts. The spec [19.15] does say: "Additional chart 
> types may be supported by using a different namespace." But I'm not sure what 
> that really means. Are there examples of this already?

There are standard namespace aliases in ODF, like text: or style:. You
can use loext: as a namespace that is intentionally not in the official
spec but is an LO extension.

See here for more info:

https://wiki.documentfoundation.org/Development/ODF_Implementer_Notes

> - I made various UI choices that may not be best. For instance, I added 
> pie-of-pie and bar-of-pie as subtypes of pie in the chart selection matrix 
> (widening it to 6 columns). It might be preferable to keep of-pie as a 
> different chart type (adding a row instead of two columns). I also made 
> arbitrary decisions about sizes and separation of the two chart parts in the 
> rendering. It appears there's a UI group that meets. Are these choices the 
> kind of things that could be put on their agenda?

Heiko leads that, and you can just mail des...@global.libreoffice.org if
you want design input, see:

https://www.libreoffice.org/get-help/mailing-lists/

> - In the selection matrix mentioned above I added crude placeholder graphics 
> that I created just by taking a screenshot of representative of-pie charts. 
> But they look nothing like the graphics for the other chart types. Is there 
> some prescribed process (or person) for creating uniform-looking UI graphics?

One way that works is to put a placeholder image (so you can test your
code) and then ask for help on the design@ list. I did something like
that myself in the past.

Regards,

Miklos


core.git: include/svx sc/source sd/inc sd/source svx/source sw/source

2024-01-11 Thread Szymon Kłos (via logerrit)
 include/svx/theme/IThemeColorChanger.hxx  |   10 ++-
 include/svx/theme/ThemeColorChangerCommon.hxx |2 +
 sc/source/ui/inc/ThemeColorChanger.hxx|2 -
 sc/source/ui/theme/ThemeColorChanger.cxx  |4 +-
 sc/source/ui/view/tabvwshc.cxx|7 +
 sd/inc/theme/ThemeColorChanger.hxx|2 -
 sd/source/core/ThemeColorChanger.cxx  |4 +-
 sd/source/ui/inc/ViewShellBase.hxx|2 +
 sd/source/ui/view/ViewShellBase.cxx   |   13 +
 sd/source/ui/view/drviews2.cxx|8 -
 svx/source/theme/ThemeColorChangerCommon.cxx  |   36 ++
 sw/source/core/inc/ThemeColorChanger.hxx  |2 -
 sw/source/core/model/ThemeColorChanger.cxx|4 +-
 sw/source/uibase/shells/basesh.cxx|7 -
 sw/source/uibase/uiview/view.cxx  |5 +--
 15 files changed, 70 insertions(+), 38 deletions(-)

New commits:
commit 13e055808461f92be68f7691392b23159ac9a1ba
Author: Szymon Kłos 
AuthorDate: Sun Jan 7 18:31:22 2024 +0100
Commit: Szymon Kłos 
CommitDate: Fri Jan 12 08:04:34 2024 +0100

sc: announce theme colors with lok callback

As it is done already for Writer. Unfortunately cannot
move the code from afterCallbackRegistered to base class
in sfx2 as it is not linked to svx which is needed to
generate JSON. So at least share generation and sending
part in ThemeColorChangerCommon.

Signed-off-by: Szymon Kłos 
Change-Id: Icbf681230bd4c49698c47d852a0862620d93bcec
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/161771
Tested-by: Jenkins CollaboraOffice 
Reviewed-by: Tomaž Vajngerl 
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/161927
Tested-by: Jenkins

diff --git a/include/svx/theme/IThemeColorChanger.hxx 
b/include/svx/theme/IThemeColorChanger.hxx
index d9273238c712..0b3b88d60afa 100644
--- a/include/svx/theme/IThemeColorChanger.hxx
+++ b/include/svx/theme/IThemeColorChanger.hxx
@@ -11,6 +11,7 @@
 
 #include 
 #include 
+#include "ThemeColorChangerCommon.hxx"
 
 namespace svx
 {
@@ -18,7 +19,14 @@ class SVXCORE_DLLPUBLIC IThemeColorChanger
 {
 public:
 virtual ~IThemeColorChanger() = default;
-virtual void apply(std::shared_ptr const& pColorSet) = 0;
+void apply(std::shared_ptr const& pColorSet)
+{
+doApply(pColorSet);
+svx::theme::notifyLOK(pColorSet);
+}
+
+private:
+virtual void doApply(std::shared_ptr const& pColorSet) = 
0;
 };
 
 } // end svx namespace
diff --git a/include/svx/theme/ThemeColorChangerCommon.hxx 
b/include/svx/theme/ThemeColorChangerCommon.hxx
index febc34ae3873..3a585236fbf8 100644
--- a/include/svx/theme/ThemeColorChangerCommon.hxx
+++ b/include/svx/theme/ThemeColorChangerCommon.hxx
@@ -21,6 +21,8 @@ namespace theme
 {
 SVXCORE_DLLPUBLIC void updateSdrObject(model::ColorSet const& rColorSet, 
SdrObject* pObject,
SdrView* pView, SfxUndoManager* 
pUndoManager = nullptr);
+
+SVXCORE_DLLPUBLIC void notifyLOK(std::shared_ptr const& 
pColorSet);
 }
 
 } // end svx namespace
diff --git a/sc/source/ui/inc/ThemeColorChanger.hxx 
b/sc/source/ui/inc/ThemeColorChanger.hxx
index 57ca91cdb83c..f85401385888 100644
--- a/sc/source/ui/inc/ThemeColorChanger.hxx
+++ b/sc/source/ui/inc/ThemeColorChanger.hxx
@@ -24,7 +24,7 @@ public:
 ThemeColorChanger(ScDocShell& rDocShell);
 virtual ~ThemeColorChanger() override;
 
-void apply(std::shared_ptr const& pColorSet) override;
+void doApply(std::shared_ptr const& pColorSet) override;
 };
 
 } // end sc namespace
diff --git a/sc/source/ui/theme/ThemeColorChanger.cxx 
b/sc/source/ui/theme/ThemeColorChanger.cxx
index c9b88652dcc3..2ba881544372 100644
--- a/sc/source/ui/theme/ThemeColorChanger.cxx
+++ b/sc/source/ui/theme/ThemeColorChanger.cxx
@@ -19,7 +19,7 @@
 #include 
 #include 
 #include 
-#include 
+#include 
 
 #include 
 #include 
@@ -311,7 +311,7 @@ void changeThemeColorInTheDocModel(ScDocShell& rDocShell,
 
 } // end anonymous ns
 
-void ThemeColorChanger::apply(std::shared_ptr const& 
pColorSet)
+void ThemeColorChanger::doApply(std::shared_ptr const& 
pColorSet)
 {
 // Can't change to an empty color set
 if (!pColorSet)
diff --git a/sc/source/ui/view/tabvwshc.cxx b/sc/source/ui/view/tabvwshc.cxx
index 0c214a02eb67..eeb554454eab 100644
--- a/sc/source/ui/view/tabvwshc.cxx
+++ b/sc/source/ui/view/tabvwshc.cxx
@@ -20,6 +20,7 @@
 #include 
 #include 
 #include 
+#include 
 #include 
 #include 
 
@@ -477,6 +478,12 @@ void ScTabViewShell::afterCallbackRegistered()
 pInputWindow->NotifyLOKClient();
 }
 }
+
+SfxObjectShell* pDocShell = GetObjectShell();
+if (pDocShell)
+{
+svx::theme::notifyLOK(pDocShell->GetThemeColors());
+}
 }
 
 void ScTabViewShell::NotifyCursor(SfxViewShell* pOtherShell) const
diff --git a/sd/inc/theme/ThemeColorChanger.hxx 
b/sd/inc/theme/ThemeColorChanger.hxx
index 

core.git: chart2/source

2024-01-11 Thread Kurt Nordback (via logerrit)
 chart2/source/view/charttypes/VSeriesPlotter.cxx   |   42 +
 chart2/source/view/inc/VSeriesPlotter.hxx  |2 +
 chart2/source/view/main/SeriesPlotterContainer.cxx |7 +++
 3 files changed, 51 insertions(+)

New commits:
commit ca3112f38ea67d3cff1c9784adcc30ffcb200a0a
Author: Kurt Nordback 
AuthorDate: Mon Jan 8 09:37:28 2024 -0700
Commit: Noel Grandin 
CommitDate: Fri Jan 12 07:55:02 2024 +0100

tdf#159043: combo chart render order isn't right

Change-Id: If20446c8bd5a67f73c2126c26ed6bd160aed
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/161797
Tested-by: Jenkins
Reviewed-by: Noel Grandin 

diff --git a/chart2/source/view/charttypes/VSeriesPlotter.cxx 
b/chart2/source/view/charttypes/VSeriesPlotter.cxx
index f9fa8fe0fea9..34a702d7b696 100644
--- a/chart2/source/view/charttypes/VSeriesPlotter.cxx
+++ b/chart2/source/view/charttypes/VSeriesPlotter.cxx
@@ -2307,6 +2307,48 @@ OUString VSeriesPlotter::getCategoryName( sal_Int32 
nPointIndex ) const
 return OUString();
 }
 
+namespace {
+// The following it to support rendering order for combo charts. A chart type
+// with a lower rendering order is rendered before (i.e., behind) a chart with 
a
+// higher rendering order. The rendering orders are based on rough guesses 
about
+// how much one chart (type) will obscure another chart (type). The intent is 
to
+// minimize obscuring of data, by putting charts that generally cover more
+// pixels (e.g., area charts) behind ones that generally cover fewer (e.g., 
line
+// charts).
+struct ROrderPair
+{
+ROrderPair(OUString n, sal_Int32 r) : chartName(n), renderOrder(r) {}
+
+OUString chartName;
+sal_Int32 renderOrder;
+};
+
+const ROrderPair pairList[] = {
+ROrderPair(CHART2_SERVICE_NAME_CHARTTYPE_AREA, 0),
+ROrderPair(CHART2_SERVICE_NAME_CHARTTYPE_BAR, 6),   // bar & column are 
same
+ROrderPair(CHART2_SERVICE_NAME_CHARTTYPE_COLUMN, 6),
+ROrderPair(CHART2_SERVICE_NAME_CHARTTYPE_LINE, 8),
+ROrderPair(CHART2_SERVICE_NAME_CHARTTYPE_SCATTER, 5),
+ROrderPair(CHART2_SERVICE_NAME_CHARTTYPE_PIE, 1),
+ROrderPair(CHART2_SERVICE_NAME_CHARTTYPE_NET, 3),
+ROrderPair(CHART2_SERVICE_NAME_CHARTTYPE_FILLED_NET, 2),
+ROrderPair(CHART2_SERVICE_NAME_CHARTTYPE_CANDLESTICK, 7),
+ROrderPair(CHART2_SERVICE_NAME_CHARTTYPE_BUBBLE, 4)
+};
+} // unnamed
+
+sal_Int32 VSeriesPlotter::getRenderOrder() const
+{
+OUString aChartType = m_xChartTypeModel->getChartType();
+for (size_t n = 0; n < sizeof(pairList); ++n) {
+if (aChartType.equalsIgnoreAsciiCase(pairList[n].chartName)) {
+return pairList[n].renderOrder;
+}
+}
+SAL_WARN("chart2", "Unsupported chart type in getRenderOrder()");
+return 0;
+}
+
 std::vector VSeriesPlotter::getAllSeries() const
 {
 std::vector aAllSeries;
diff --git a/chart2/source/view/inc/VSeriesPlotter.hxx 
b/chart2/source/view/inc/VSeriesPlotter.hxx
index eaf27495d0ed..45676830b538 100644
--- a/chart2/source/view/inc/VSeriesPlotter.hxx
+++ b/chart2/source/view/inc/VSeriesPlotter.hxx
@@ -275,6 +275,8 @@ public:
 OUString getLabelTextForValue(VDataSeries const & rDataSeries, sal_Int32 
nPointIndex,
   double fValue, bool bAsPercentage);
 
+sal_Int32 getRenderOrder() const;
+
 protected:
 
 VSeriesPlotter( rtl::Reference< ::chart::ChartType > xChartTypeModel
diff --git a/chart2/source/view/main/SeriesPlotterContainer.cxx 
b/chart2/source/view/main/SeriesPlotterContainer.cxx
index bcc5b0f482a3..67e4d75c0b9b 100644
--- a/chart2/source/view/main/SeriesPlotterContainer.cxx
+++ b/chart2/source/view/main/SeriesPlotterContainer.cxx
@@ -317,6 +317,13 @@ void 
SeriesPlotterContainer::initializeCooSysAndSeriesPlotter(ChartModel& rChart
 }
 }
 
+auto order
+= [](const std::unique_ptr& a, const 
std::unique_ptr& b) {
+  return a->getRenderOrder() < b->getRenderOrder();
+  };
+
+std::stable_sort(m_aSeriesPlotterList.begin(), m_aSeriesPlotterList.end(), 
order);
+
 //transport seriesnames to the coordinatesystems if needed
 if (m_aSeriesPlotterList.empty())
 return;


[Bug 158685] Implement a simple calculation of values to input size and position of draw objects

2024-01-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=158685

Buovjaga  changed:

   What|Removed |Added

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

--- Comment #6 from Buovjaga  ---
How it works in GIMP:
https://librearts.org/2020/07/how-to-use-math-input-in-gimp/

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

[Bug 158685] Implement a simple calculation of values to input size and position of draw objects

2024-01-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=158685

Buovjaga  changed:

   What|Removed |Added

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

--- Comment #6 from Buovjaga  ---
How it works in GIMP:
https://librearts.org/2020/07/how-to-use-math-input-in-gimp/

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

[Bug 159140] Save to .odt format causes figures on page to be reordered.

2024-01-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159140

--- Comment #3 from Scott franco  ---
Yes, I have seen it in two different releases. The other one is 7.6.3.2/Ubuntu
20.04.6.

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

[Bug 37887] Autotext does not function within comments

2024-01-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=37887

--- Comment #15 from Zeyan  ---
Best way to explore the hidden gems in Kashmir is to hire a car rental from https://www.travelmykashmir.com;>Kashmir cab service

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

[Bug 158371] Search, filter and sort not working

2024-01-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=158371

--- Comment #3 from amad...@paulussen.id  ---
I created a new issue for the filter and sort issue at:
https://bugs.documentfoundation.org/show_bug.cgi?id=159142

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

[Bug 159142] New: Filter and sort not working

2024-01-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159142

Bug ID: 159142
   Summary: Filter and sort not working
   Product: LibreOffice
   Version: 7.6.2.1 release
  Hardware: ARM
OS: Android
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Android Viewer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: amad...@paulussen.id

Description:
Neither the filter nor the sort function work on my Android device.

Steps to Reproduce:
1. Open ODS document in LibreOffice Viewer app
2. Filter (does not work at all, neither tapping, double tapping or long
pressing on any of the UI elements has any effect whatsoever)
3. Sort (same as with Filter, nothing happens when interacting with the UI
elements)

Actual Results:
No result on either filter nor sort functions.

Expected Results:
The Filter function would work and likewise the sort function would work.


Reproducible: Always


User Profile Reset: No

Additional Info:
# System information
* Gigaset GX6
* Android 13
* LibreOffice Viewer 7.6.2.1 (F-Droid)
* LibreOffice 7.6.3.2 (Flatpak) on Arch Linux

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

[Bug 159140] Save to .odt format causes figures on page to be reordered.

2024-01-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159140

BogdanB  changed:

   What|Removed |Added

 CC||buzea.bog...@libreoffice.or
   ||g
 Blocks||103152


Referenced Bugs:

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

[Bug 103152] [META] Writer image bugs and enhancements

2024-01-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103152

BogdanB  changed:

   What|Removed |Added

 Depends on||159140


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=159140
[Bug 159140] Save to .odt format causes figures on page to be reordered.
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 158371] Search, filter and sort not working

2024-01-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=158371

--- Comment #2 from amad...@paulussen.id  ---
Hi Michael(In reply to amad...@paulussen.id from comment #0)
> Created attachment 191041 [details]
> Screen shots
> 
> # Steps
> 1. Open ODS document in LibreOffice Viewer app
> 2. Search (wrong results are being highlighted).
> 3. Filter (does not work at all, neither tapping, double tapping or long
> pressing on any of the UI elements has any effect whatsoever)
> 4. Sort (same as with Filter, nothing happens when interacting with the UI
> elements)
> 
> # System information
> * Gigaset GX6
> * Android 13
> * LibreOffice Viewer 7.6.2.1 (F-Droid)
> * LibreOffice 7.6.3.2 (Flatpak) on Arch Linux

Hi Michael

I have sent you the desired attachment in confidence by email.

Many thanks!

Best

Amadeus

PD: I will create a new ticket for the Filter thing, sure.

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

[Bug 158945] Calc: crash when entering text in a cell

2024-01-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=158945

--- Comment #26 from Greg Skyles  ---
Hi @stragu, I just tried the 7.5.9.2 release. It has the same problem.

I don't know if this is useful or not, but it crashed in a slightly different
way. When I first ran it, it displayed the "this is the first time you are
using 7.5..." banner, which I dismissed, along with the tip of the day. I then
tried my test, which induced the crash. On crashing, it first froze the cursor
for a second or so, then the display updated to show the new to 7.5 banner
again, then the window closed.

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

[Bug 158958] Comment marker makes it difficult to see the data in a cell

2024-01-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=158958

--- Comment #19 from ady  ---
(In reply to Eyal Rozenberg from comment #18)
> The content should be excluded
> from the comment indicator area of the cell so that it doesn't overlap its
> area.

That's unacceptable. The limitation is on LO to resolve, instead of
limiting/affecting the user, just because of a problem that LO is causing.
Additionally, that would alter how the spreadsheet looks, especially when
comparing with opening the same spreadsheet with any other tool. Think about a
cell with centered alignment, for instance.

Are you suggesting that the cell should be altered (in content and/or size)
every time a comment is either added or deleted? Or when opening older
spreadsheets?

LO already altered the presentation of the comments themselves with the way the
author and date+time info was forcibly added on every comment, whether the user
needs/wants that or not. More than one report was started related to that.
Users asked to improve the indicator because it bothers, and instead of
improving the documentation about how to avoid such issue (especially for
inexperienced users), LO made the indicator even bigger. And now there is this
idea that the presentation of the cell (content and/or size) has to change
because of the indicator? How many users would be "pleased" with that?

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

[Bug 158958] Comment marker makes it difficult to see the data in a cell

2024-01-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=158958

--- Comment #19 from ady  ---
(In reply to Eyal Rozenberg from comment #18)
> The content should be excluded
> from the comment indicator area of the cell so that it doesn't overlap its
> area.

That's unacceptable. The limitation is on LO to resolve, instead of
limiting/affecting the user, just because of a problem that LO is causing.
Additionally, that would alter how the spreadsheet looks, especially when
comparing with opening the same spreadsheet with any other tool. Think about a
cell with centered alignment, for instance.

Are you suggesting that the cell should be altered (in content and/or size)
every time a comment is either added or deleted? Or when opening older
spreadsheets?

LO already altered the presentation of the comments themselves with the way the
author and date+time info was forcibly added on every comment, whether the user
needs/wants that or not. More than one report was started related to that.
Users asked to improve the indicator because it bothers, and instead of
improving the documentation about how to avoid such issue (especially for
inexperienced users), LO made the indicator even bigger. And now there is this
idea that the presentation of the cell (content and/or size) has to change
because of the indicator? How many users would be "pleased" with that?

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

[Bug 158948] LibreOffice bugs and freezes when I work between 2 different windows

2024-01-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=158948

QA Administrators  changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

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

[Bug 159119] Convert docx file to pdf using libreoffice, checkbox and drop-down selection contents are lost

2024-01-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159119

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

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

[Bug 158948] LibreOffice bugs and freezes when I work between 2 different windows

2024-01-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=158948

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

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

[Bug 159119] Convert docx file to pdf using libreoffice, checkbox and drop-down selection contents are lost

2024-01-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159119

QA Administrators  changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

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

[Bug 155828] Missing Table cell attributes to rotate text

2024-01-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=155828

QA Administrators  changed:

   What|Removed |Added

 Resolution|--- |INSUFFICIENTDATA
 Status|NEEDINFO|RESOLVED

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

[Bug 155722] Footers and Pagebreaks are never saved when I edit a saved Spreadsheet

2024-01-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=155722

QA Administrators  changed:

   What|Removed |Added

 Resolution|--- |INSUFFICIENTDATA
 Status|NEEDINFO|RESOLVED

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

[Bug 155828] Missing Table cell attributes to rotate text

2024-01-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=155828

--- Comment #3 from QA Administrators  ---
Dear paul.mitterberger,

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.

[Bug 59365] FILESAVE: Memory usage after autorecovery/manual savings

2024-01-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=59365

--- Comment #7 from QA Administrators  ---
Dear karolismatjosaitis,

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.

[Bug 155722] Footers and Pagebreaks are never saved when I edit a saved Spreadsheet

2024-01-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=155722

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

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.

[Bug 132518] PIVOTTABLE: Filter by year in Drop-down filter window doesn't work

2024-01-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132518

--- Comment #7 from QA Administrators  ---
Dear Zayed,

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.

[Bug 144717] ENDNOTES: I can't change endnote anchor to footnote anchor, if a table follows

2024-01-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144717

--- Comment #8 from QA Administrators  ---
Dear John,

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.

[Bug 132810] Gallery: Crash swlo!SwFEShell::SelectObj+0x46a when inserting a new shape with cursor still in textbox SwFrame::AppendDrawObj(SwAnchoredObject &)

2024-01-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132810

Matt K  changed:

   What|Removed |Added

   Assignee|libreoffice-b...@lists.free |matt...@gmail.com
   |desktop.org |
 Status|NEW |ASSIGNED

--- Comment #10 from Matt K  ---
Fix is posted at: https://gerrit.libreoffice.org/c/core/+/161950

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

[Bug 75057] [META] OOXML Chart object issues

2024-01-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=75057

Justin L  changed:

   What|Removed |Added

 Depends on||159141


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=159141
[Bug 159141] LAYOUT chart: the DataTable should be below the graph, not at the
X axis
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 159141] New: LAYOUT chart: the DataTable should be below the graph, not at the X axis

2024-01-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159141

Bug ID: 159141
   Summary: LAYOUT chart: the DataTable should be below the graph,
not at the X axis
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Keywords: filter:pptx, implementationError
  Severity: normal
  Priority: medium
 Component: Chart
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: jl...@mail.com
CC: jl...@mail.com, qui...@gmail.com
Blocks: 75057

When a chart has a negative range, then most graphs have the labels along the X
axis. However, when the axis includes the DataTable, then at least the data
table needs to be below the graph.

attachment 191778 (chartlegendmissing-min.pptx) from bug 137691 is the only
example I found.

Steps to reproduce: 
1.) open chartlegendmissing-min.pptx.

It should look like attachment 191779 (chartlegendmissing-min.pdf) according to
PowerPoint 2010.

Can you have a data table as well as some other labels? If so, would ALL of
them be below the graph?


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=75057
[Bug 75057] [META] OOXML Chart object issues
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 159119] Convert docx file to pdf using libreoffice, checkbox and drop-down selection contents are lost

2024-01-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159119

--- Comment #2 from pengyk  ---
(In reply to m_a_riosv from comment #1)
> Test with this option to enable form fields.
> 
> https://help.libreoffice.org/latest/he/text/shared/guide/pdf_params.
> html?=SHARED=WIN#:~:
> text=specifies%20whether%20form%20fields%20are%20exported%20as%20widgets%20or
> %20only%20their%20fixed%20print%20representation%20is%20exported.

Sorry, there are still problems when using the following command to convert.
Please see the pictures in the link below
https://github.com/pac-madarame/Public_file/blob/main/question_describe.png
Is there something wrong with the command used?

soffice --convert-to
pdf:writer_pdf_Export:{"ExportFormFields":{"type":"boolean","value":"false"}}
--outdir xx\office  xx\origin_document.docx
soffice --convert-to
pdf:writer_pdf_Export:{"ExportFormFields":{"type":"boolean","value":"true"}}
--outdir xx\office  xx\origin_document.docx
soffice --convert-to
pdf:draw_pdf_Export:{"ExportFormFields":{"type":"boolean","value":"true"}}
--outdir xx\office  xx\origin_document.docx
soffice --convert-to
pdf:draw_pdf_Export:{"ExportFormFields":{"type":"boolean","value":"false"}}
--outdir xx\office  xx\origin_document.docx

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

[Bug 159139] Scrolling performance in textdocument became very slow after last release

2024-01-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159139

--- Comment #2 from Patrick Luby  ---
My first guess is that is the same bug as tdf#155266. There is a fix for
tdf#155266 but, unfortunately, the fix will not be available until the
LibreOffice 7.6.5 release.

Fortunately, a tester has found a workaround for LibreOffice 7.5.9 and 7.6.4:
switch to Skia/Metal rendering.

To enable Skia/Metal rendering, do the following steps:

1. Open the Options dialog by selecting the LibreOffice > Preferences menu
2. Select LibreOffice > View in the left panel
3. In the right panel, check the "Use Skia for all rendering" and uncheck
"Force Skia software rendering" checkboxes as shown in the following screen
snapshot:
 https://bugs.documentfoundation.org/attachment.cgi?id=191409
4. Press the "OK" button and restart if prompted

Do the above steps improve scrolling performance?

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

[Bug 158112] Sidebar pane shortcuts conflict with Alt+NumPad input (comment 5, comment 9)

2024-01-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=158112

--- Comment #34 from Mike Kaganski  ---
(In reply to V Stuart Foote from comment #32)
> "ASCII" (4,5 decimal digits matching the Unicode BMP)

Not only BMP. As explained in "Decimal input (Alt codes)" at [1], Alt + 120132
also works.

[1] https://en.wikipedia.org/wiki/Unicode_input#Decimal_input_(Alt_codes)

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

[Bug 159117] Table of Contents tab formatting can be edited but is not applied.

2024-01-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159117

bnghiem1...@gmail.com changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEEDINFO

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

[Bug 159117] Table of Contents tab formatting can be edited but is not applied.

2024-01-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159117

--- Comment #1 from bnghiem1...@gmail.com ---
Thank you for reporting the bug. I can't seem to reproduce the bug, so could
you provide more clarification of the TOC settings in step 7 through an
attached screenshot? I have set the bug's status to 'NEEDINFO'. Please change
it back to 'UNCONFIRMED' once the requested information is provided.

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

[Bug 158987] LibreOffice not opening / responding when starting from a .doc file

2024-01-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=158987

--- Comment #4 from bnghiem1...@gmail.com ---
Thank you for reporting the bug. I can not reproduce the bug in version 7.5.4.1
(AARCH64).

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

[Bug 72367] FILESAVE: Z-Order of picture and text shapes doesn't save (or load) correctly in ODF

2024-01-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=72367

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

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

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

[Bug 108741] [META] Shapes bugs and enhancements

2024-01-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108741
Bug 108741 depends on bug 45758, which changed state.

Bug 45758 Summary: FORMATTING: Graphical objects change Z-order when closing 
then opening spreadsheet (possible FILEOPEN problem).
https://bugs.documentfoundation.org/show_bug.cgi?id=45758

   What|Removed |Added

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

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

[Bug 45758] FORMATTING: Graphical objects change Z-order when closing then opening spreadsheet (possible FILEOPEN problem).

2024-01-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=45758

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 CC||stephane.guillou@libreoffic
   ||e.org
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=72
   ||367
 Resolution|--- |WORKSFORME

--- Comment #15 from Stéphane Guillou (stragu) 
 ---
Reproduced comment 4 in:

Version: 6.3.6.2
Build ID: 2196df99b074d8a661f4036fca8fa0cbfa33a497
CPU threads: 8; OS: Linux 5.15; UI render: default; VCL: gtk3; 
Locale: en-AU (en_AU.UTF-8); UI-Language: en-US
Calc: threaded

Works for me since:

Version: 6.4.0.3
Build ID: b0a288ab3d2d4774cb44b62f04d5d28733ac6df8
CPU threads: 8; OS: Linux 5.15; UI render: default; VCL: gtk3; 
Locale: en-AU (en_AU.UTF-8); UI-Language: en-US
Calc: threaded

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

core.git: sw/source

2024-01-11 Thread Kira Tubo (via logerrit)
 sw/source/core/layout/layact.cxx |8 
 1 file changed, 4 insertions(+), 4 deletions(-)

New commits:
commit ba8f4bff6015013013df652efbfaf4d9ae10c881
Author: Kira Tubo 
AuthorDate: Wed Jan 10 15:31:19 2024 -0800
Commit: Hossein 
CommitDate: Fri Jan 12 00:39:32 2024 +0100

tdf#145538 Use range based for loops

Change-Id: I2e31b6ff335b5884a5d02d53bafef4315ad0fe68
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/161902
Tested-by: Jenkins
Reviewed-by: Hossein 

diff --git a/sw/source/core/layout/layact.cxx b/sw/source/core/layout/layact.cxx
index 747470129c96..34c9df1ace1d 100644
--- a/sw/source/core/layout/layact.cxx
+++ b/sw/source/core/layout/layact.cxx
@@ -1299,14 +1299,14 @@ bool SwLayAction::FormatLayout( OutputDevice 
*pRenderContext, SwLayoutFrame *pLa
 {
 SwRegionRects aRegion( aOldRect );
 aRegion -= aPaint;
-for ( size_t i = 0; i < aRegion.size(); ++i )
-m_pImp->GetShell()->AddPaintRect( aRegion[i] );
+for ( auto const& aRect : aRegion )
+m_pImp->GetShell()->AddPaintRect( aRect );
 aRegion.ChangeOrigin( aPaint );
 aRegion.clear();
 aRegion.push_back( aPaint );
 aRegion -= aOldRect;
-for ( size_t i = 0; i < aRegion.size(); ++i )
-m_pImp->GetShell()->AddPaintRect( aRegion[i] );
+for ( auto const& aRect : aRegion )
+m_pImp->GetShell()->AddPaintRect( aRect );
 }
 }
 else


[Bug 145538] Use range based for loops

2024-01-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=145538

--- Comment #31 from Commit Notification 
 ---
Kira Tubo committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/core/commit/ba8f4bff6015013013df652efbfaf4d9ae10c881

tdf#145538 Use range based for loops

It will be available in 24.8.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.

[Bug 159120] Recent documents: Show only documents from the current module by default

2024-01-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159120

--- Comment #7 from gra...@harris.net.nz ---
Sorry first time trying to use mastodon so I can respond to your poll. I
created an account at mindly.social thinking that would let me participate
(since it's federated) but it looks like I would have to have an account on
fosstodon.org to login and vote. 

Can someone give me a tip please?

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

[Bug 159120] Recent documents: Show only documents from the current module by default

2024-01-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159120

--- Comment #7 from gra...@harris.net.nz ---
Sorry first time trying to use mastodon so I can respond to your poll. I
created an account at mindly.social thinking that would let me participate
(since it's federated) but it looks like I would have to have an account on
fosstodon.org to login and vote. 

Can someone give me a tip please?

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

core.git: editeng/source sw/qa

2024-01-11 Thread Regina Henschel (via logerrit)
 editeng/source/editeng/impedit4.cxx |2 
 sw/qa/extras/uiwriter/data/tdf159049_LineBreakRTFClipboard.fodt |  300 
++
 sw/qa/extras/uiwriter/uiwriter9.cxx |   35 +
 3 files changed, 336 insertions(+), 1 deletion(-)

New commits:
commit c994f2491dd4e977f726f53de1953feff17c2227
Author: Regina Henschel 
AuthorDate: Tue Jan 9 21:41:40 2024 +0100
Commit: Regina Henschel 
CommitDate: Fri Jan 12 00:13:21 2024 +0100

tdf#159049 use RTF_LINE for EE_FEATURE_LINEBR for copy

Copy of simple text uses ImpEditEngine::WriteItemAsRTF() method.
Error was, that in case of a line break ('
') the string
OOO_STRING_SVTOOLS_RTF_SL was written, but it needs to be the string
OOO_STRING_SVTOOLS_RTF_LINE.

Change-Id: I1c2ff2087c563b26e26d8768dfcfd1645be91d2f
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/161842
Tested-by: Jenkins
Reviewed-by: Regina Henschel 

diff --git a/editeng/source/editeng/impedit4.cxx 
b/editeng/source/editeng/impedit4.cxx
index b5151467079a..d63522a555c1 100644
--- a/editeng/source/editeng/impedit4.cxx
+++ b/editeng/source/editeng/impedit4.cxx
@@ -905,7 +905,7 @@ void ImpEditEngine::WriteItemAsRTF( const SfxPoolItem& 
rItem, SvStream& rOutput,
 break;
 case EE_FEATURE_LINEBR:
 {
-rOutput.WriteOString( OOO_STRING_SVTOOLS_RTF_SL );
+rOutput.WriteOString( OOO_STRING_SVTOOLS_RTF_LINE );
 }
 break;
 case EE_CHAR_KERNING:
diff --git a/sw/qa/extras/uiwriter/data/tdf159049_LineBreakRTFClipboard.fodt 
b/sw/qa/extras/uiwriter/data/tdf159049_LineBreakRTFClipboard.fodt
new file mode 100644
index ..22472c197053
--- /dev/null
+++ b/sw/qa/extras/uiwriter/data/tdf159049_LineBreakRTFClipboard.fodt
@@ -0,0 +1,300 @@
+
+
+http://openoffice.org/2004/office; 
xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0" 
xmlns:xlink="http://www.w3.org/1999/xlink; 
xmlns:config="urn:oasis:names:tc:opendocument:xmlns:config:1.0" 
xmlns:dc="http://purl.org/dc/elements/1.1/; 
xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" 
xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0" 
xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0" 
xmlns:rpt="http://openoffice.org/2005/report; 
xmlns:draw="urn:oasis:names:tc:opendocument:xmlns:drawing:1.0" 
xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0" 
xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0" 
xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart: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:ooow="http://openoffice.org/200
 4/writer" xmlns:oooc="http://openoffice.org/2004/calc; 
xmlns:css3t="http://www.w3.org/TR/css3-text/; 
xmlns:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2" 
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:formx="urn:openoffice:names:experimental:ooxml-odf-interop:xmlns:form:1.0"
 xmlns:dom="http://www.w3.org/2001/xml-events; 
xmlns:xforms="http://www.w3.org/2002/xforms; 
xmlns:xsd="http://www.w3.org/2001/XMLSchema; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance; 
xmlns:xhtml="http://www.w3.org/1999/xhtml; 
xmlns:grddl="http://www.w3.org/2003/g/data-view#; office:version="1.3" 
office:mimetype="application/vnd.oasis.opendocument.text">
+ Regina 
Henschel2024-01-08T23:25:06.849002024-01-09T20:51:07.36300Regina
 
HenschelPT18M48S8LOmyBuild/24.8.0.0.alpha0$Windows_X86_64
 
LibreOffice_project/00eae23267bf64e07cf057f828cd85f3c38ac669
+ 
+  
+   0
+   0
+   21338
+   14543
+   true
+   false
+   
+
+ view2
+ 11003
+ 1000
+ 0
+ 0
+ 21336
+ 14542
+ 0
+ 1
+ false
+ 100
+ false
+ false
+ false
+ false
+ false
+ false
+
+   
+  
+  
+   true
+   
+   false
+   false
+   false
+   false
+   true
+   1
+   true
+   false
+   false
+   false
+   
+   false
+   
+   false
+   false
+   false
+   Person
+   0
+   false
+   true
+   true
+   false
+   false
+   false
+   IDAnredeVornameNachname
+   0
+   
+   true
+   high-resolution
+   false
+   false
+   true
+   true
+   true
+   false
+   false
+   true
+   true
+   false
+   true
+   true
+   false
+   false
+   false
+   true
+   false
+   true
+   false
+   false
+   true
+   false
+   false
+   false
+   false
+   false
+   false
+   757206
+   303919
+   false
+   false
+   true
+   true
+   false
+   true
+   true
+   false
+   true
+   true
+   true
+   false
+   false
+   false
+   false
+   true
+   false
+   true
+   false
+   false
+   false
+   false
+   false
+   true
+   0
+   true
+   false
+   true
+   true
+   false
+   false
+   true
+   false
+   0
+   true
+   false
+   true
+   true
+   true
+   false
+   false
+   

[Bug 159140] Save to .odt format causes figures on page to be reordered.

2024-01-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159140

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #2 from Stéphane Guillou (stragu) 
 ---
Thank you for the report. Reproduced in:

Version: 24.8.0.0.alpha0+ (X86_64) / LibreOffice Community
Build ID: 3cb1ed4339fc9aec414c0f112a69705a7a4d9cc6
CPU threads: 8; OS: Linux 5.15; UI render: default; VCL: gtk3
Locale: en-AU (en_AU.UTF-8); UI: en-US
Calc: threaded

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

[Bug 107905] [META] Cross-references bugs and enhancements

2024-01-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107905

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Depends on||159137


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=159137
[Bug 159137] Add "previous/next note" functionality to cross-references
(conditional mix of "referenced text" and "above/below")
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 159137] Add "previous/next note" functionality to cross-references (conditional mix of "referenced text" and "above/below")

2024-01-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159137

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 CC||libreoffice-ux-advise@lists
   ||.freedesktop.org,
   ||stephane.guillou@libreoffic
   ||e.org
 Blocks||107905
Summary|Add "previous/next note"|Add "previous/next note"
   |functionality to|functionality to
   |cross-references|cross-references
   ||(conditional mix of
   ||"referenced text" and
   ||"above/below")
   Keywords||needsUXEval

--- Comment #1 from Stéphane Guillou (stragu) 
 ---
Although automating this process makes perfect sense to me, it is quite
advanced and I could not find an earlier report requesting it.

See for example the use of Ibid.[1]:

> Ibid. may also be used in the Chicago (name-date) system for in-text
> references where there has been a close previous citation from the same
> source material. The previous reference should be immediately
> visible, e.g. within the same paragraph or page.

"Ibid." could be the displayed text for "cross-reference is directly above, on
the same page", whereas "see footnote x" would be the alternative.

Here's a question related to creating such conditional fields:
https://unix.stackexchange.com/questions/575371/using-macros-or-cross-references-for-the-condition-of-conditional-text-in-libreo
I could not find a way to create something of the sort.

UX/design team, do you think creating this kind of custom, conditional/mixed
field should be made easier?

In practice, this would be a mix between "Above/Below" (for the relative
position) and "Referenced text" (for the footnote number).

[1]: https://en.wikipedia.org/wiki/Ibid.


Referenced Bugs:

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

[Bug 159137] Add "previous/next note" functionality to cross-references (conditional mix of "referenced text" and "above/below")

2024-01-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159137

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 CC||libreoffice-ux-advise@lists
   ||.freedesktop.org,
   ||stephane.guillou@libreoffic
   ||e.org
 Blocks||107905
Summary|Add "previous/next note"|Add "previous/next note"
   |functionality to|functionality to
   |cross-references|cross-references
   ||(conditional mix of
   ||"referenced text" and
   ||"above/below")
   Keywords||needsUXEval

--- Comment #1 from Stéphane Guillou (stragu) 
 ---
Although automating this process makes perfect sense to me, it is quite
advanced and I could not find an earlier report requesting it.

See for example the use of Ibid.[1]:

> Ibid. may also be used in the Chicago (name-date) system for in-text
> references where there has been a close previous citation from the same
> source material. The previous reference should be immediately
> visible, e.g. within the same paragraph or page.

"Ibid." could be the displayed text for "cross-reference is directly above, on
the same page", whereas "see footnote x" would be the alternative.

Here's a question related to creating such conditional fields:
https://unix.stackexchange.com/questions/575371/using-macros-or-cross-references-for-the-condition-of-conditional-text-in-libreo
I could not find a way to create something of the sort.

UX/design team, do you think creating this kind of custom, conditional/mixed
field should be made easier?

In practice, this would be a mix between "Above/Below" (for the relative
position) and "Referenced text" (for the footnote number).

[1]: https://en.wikipedia.org/wiki/Ibid.


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=107905
[Bug 107905] [META] Cross-references bugs and enhancements
-- 
You are receiving this mail because:
You are on the CC list for the bug.

[Bug 158879] Direct-formatting of INDIVIDUAL list symbols

2024-01-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=158879

--- Comment #10 from libretist  ---
(In reply to Heiko Tietze from comment #9)
> Dup of bug 92170?

I don't think these are duplicates.

bug92170 seems to concern the "Shape style dialog" in Draw and Impress
bug158879 concerns direct-formatting in Writer

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

[Bug 103341] [META] AutoCorrect and Word Completion bugs and enhancements

2024-01-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103341

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Depends on||159136


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=159136
[Bug 159136] When spellcheck is on, Enter key triggers correction in a Calc
cell.
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 159136] When spellcheck is on, Enter key triggers correction in a Calc cell.

2024-01-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159136

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Blocks||103341
Version|unspecified |7.3.7.2 release
   Severity|minor   |enhancement
 CC||stephane.guillou@libreoffic
   ||e.org
 Status|UNCONFIRMED |NEEDINFO

--- Comment #1 from Stéphane Guillou (stragu) 
 ---
(In reply to Andreas from comment #0)
> Expected Results:
> At least (and arguably only) upon hitting enter, no spell correction should
> be done. Enter places the responsibility for spelling with the user.
Many users likely want to have their autocorrection rules applied after
pressing enter, there's no reason they might be less likely to want to fix a
typo (e.g. double capital) or apply a premeditated rule (e.g. "->" replaced by
"→") or have an essential tool like URL recognition apply when pressing Enter.
In your opinion, what would then be the user experience of users wanting those
rules to apply every time they enter data into a cell? Press Space, Backspace,
Enter?

_Maybe_ one could consider a setting that allows _not_ applying autocorrect on
pressing Enter.

Workarounds:
- turn rules off (the ones you never want to apply);
- Ctrl + Z after a rule is applied when you don't want it to.
Are those not sufficient?


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=103341
[Bug 103341] [META] AutoCorrect and Word Completion bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 159101] Cross-reference to referenced text causing a space at the beginning of a line

2024-01-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159101

Matthew Kogan  changed:

   What|Removed |Added

Version|7.6.4.1 release |7.6.0.0 beta1+

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

[Bug 158958] Comment marker makes it difficult to see the data in a cell

2024-01-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=158958

--- Comment #18 from Eyal Rozenberg  ---
Didn't we discuss this issue last time the comment marker came up?

Anyway, I say it's not the size, it's the fact that the cell contents is
allowed to overlap so much of the marker. The content should be excluded from
the comment indicator area of the cell so that it doesn't overlap its area.

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

[Bug 158958] Comment marker makes it difficult to see the data in a cell

2024-01-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=158958

--- Comment #18 from Eyal Rozenberg  ---
Didn't we discuss this issue last time the comment marker came up?

Anyway, I say it's not the size, it's the fact that the cell contents is
allowed to overlap so much of the marker. The content should be excluded from
the comment indicator area of the cell so that it doesn't overlap its area.

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

[Bug 159101] Cross-reference to referenced text causing a space at the beginning of a line

2024-01-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159101

--- Comment #1 from Matthew Kogan  ---
This was caused by https://gerrit.libreoffice.org/c/core/+/152274 so CCing
Michael Stahl.

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

[Bug 139007] [META] PDF accessibility

2024-01-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139007
Bug 139007 depends on bug 123870, which changed state.

Bug 123870 Summary: Calc Not Creating accessible PDF's (tagged content, tab and 
reading order)
https://bugs.documentfoundation.org/show_bug.cgi?id=123870

   What|Removed |Added

 Status|ASSIGNED|RESOLVED
 Resolution|--- |FIXED

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

[Bug 103378] [META] PDF export bugs and enhancements

2024-01-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103378
Bug 103378 depends on bug 123870, which changed state.

Bug 123870 Summary: Calc Not Creating accessible PDF's (tagged content, tab and 
reading order)
https://bugs.documentfoundation.org/show_bug.cgi?id=123870

   What|Removed |Added

 Status|ASSIGNED|RESOLVED
 Resolution|--- |FIXED

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

[Bug 101912] [META] Accessibility (a11y) bugs and enhancements

2024-01-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101912
Bug 101912 depends on bug 123870, which changed state.

Bug 123870 Summary: Calc Not Creating accessible PDF's (tagged content, tab and 
reading order)
https://bugs.documentfoundation.org/show_bug.cgi?id=123870

   What|Removed |Added

 Status|ASSIGNED|RESOLVED
 Resolution|--- |FIXED

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

[Bug 159140] Save to .odt format causes figures on page to be reordered.

2024-01-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159140

--- Comment #1 from Scott franco  ---
Created attachment 191882
  --> https://bugs.documentfoundation.org/attachment.cgi?id=191882=edit
This file demonstrates the issue.

This file demonstrates the issue. It is also available online at:

https://github.com/samiam95124/Pascal-P6/blob/master/doc/The_Pascal-P6_Compiler_cover.odt

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

[Bug 159140] New: Save to .odt format causes figures on page to be reordered.

2024-01-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159140

Bug ID: 159140
   Summary: Save to .odt format causes figures on page to be
reordered.
   Product: LibreOffice
   Version: 7.3.7.2 release
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: scott.franc...@gmail.com

Description:
In a document for libreoffice writer, .odt format, the figures on the page are
reordered on the page. The result is I have to fix the order before printing
every time I open the file.

Steps to Reproduce:
1.Load the indicated file.
2. Notice that the picture, arranged at the back, is in front, and thus covers
all other figures and text in the document.
3.Send the image to the back and save to .odt again.
4. Reload and notice that the image has come to the front again.

Actual Results:
Libreoffice writer does not keep the figure stacking order in the document.

Expected Results:
Should keep order in the saved document.


Reproducible: Always


User Profile Reset: No

Additional Info:
This causes the need to "fix" the document every time I load it.

Document is a single page, and exists at:

https://github.com/samiam95124/Pascal-P6/blob/master/doc/The_Pascal-P6_Compiler_cover.odt

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

core.git: Branch 'libreoffice-24-2' - helpcontent2

2024-01-11 Thread Rafael Lima (via logerrit)
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 7a0513ce48ed6da73eec22ba20ea8a7dcce8ec1d
Author: Rafael Lima 
AuthorDate: Thu Jan 11 22:03:23 2024 +0100
Commit: Gerrit Code Review 
CommitDate: Thu Jan 11 22:03:23 2024 +0100

Update git submodules

* Update helpcontent2 from branch 'libreoffice-24-2'
  to 4a851d785063f7286f134810ef87ee5e945a3ba7
  - Silence string for translation in sf_intro.xhp

Change-Id: I12d48417dc979e85138b78f906fae3486f9673b4
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/161938
Tested-by: Jenkins
Reviewed-by: Adolfo Jayme Barrientos 
(cherry picked from commit 3ed389a88b0650556d19ad64ad7b6f66ef4bee0d)
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/161939
Tested-by: Adolfo Jayme Barrientos 

diff --git a/helpcontent2 b/helpcontent2
index c903a5157e0b..4a851d785063 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit c903a5157e0b9fe44a624965b642d1af57ec2b28
+Subproject commit 4a851d785063f7286f134810ef87ee5e945a3ba7


help.git: Branch 'libreoffice-24-2' - source/text

2024-01-11 Thread Rafael Lima (via logerrit)
 source/text/sbasic/shared/03/sf_intro.xhp |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 4a851d785063f7286f134810ef87ee5e945a3ba7
Author: Rafael Lima 
AuthorDate: Thu Jan 11 21:25:11 2024 +0100
Commit: Adolfo Jayme Barrientos 
CommitDate: Thu Jan 11 22:03:23 2024 +0100

Silence string for translation in sf_intro.xhp

Change-Id: I12d48417dc979e85138b78f906fae3486f9673b4
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/161938
Tested-by: Jenkins
Reviewed-by: Adolfo Jayme Barrientos 
(cherry picked from commit 3ed389a88b0650556d19ad64ad7b6f66ef4bee0d)
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/161939
Tested-by: Adolfo Jayme Barrientos 

diff --git a/source/text/sbasic/shared/03/sf_intro.xhp 
b/source/text/sbasic/shared/03/sf_intro.xhp
index dced4f25b9..02e8d5a864 100644
--- a/source/text/sbasic/shared/03/sf_intro.xhp
+++ b/source/text/sbasic/shared/03/sf_intro.xhp
@@ -191,7 +191,7 @@
 
   
   In this case, set the 
environment variable PYTHONPATH as follows before starting 
the Python interpreter:
-  export 
PYTHONPATH=/usr/lib/libreoffice/program:/usr/lib/python3/dist-packages
+  export 
PYTHONPATH=/usr/lib/libreoffice/program:/usr/lib/python3/dist-packages
   The location of these files will be 
different for each operating system and %PRODUCTNAME installation method.
 
   


core.git: helpcontent2

2024-01-11 Thread Rafael Lima (via logerrit)
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit fa86997621e490fb490828e6a86f42e209d21283
Author: Rafael Lima 
AuthorDate: Thu Jan 11 22:02:42 2024 +0100
Commit: Gerrit Code Review 
CommitDate: Thu Jan 11 22:02:42 2024 +0100

Update git submodules

* Update helpcontent2 from branch 'master'
  to 04877b3bb878e30f8df562a35bc97163ee6be9ff
  - Silence string for translation in sf_intro.xhp

Change-Id: I12d48417dc979e85138b78f906fae3486f9673b4
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/161938
Tested-by: Jenkins
Reviewed-by: Adolfo Jayme Barrientos 

diff --git a/helpcontent2 b/helpcontent2
index 46e73230cf1f..04877b3bb878 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit 46e73230cf1f0b3c9f21391099c2e15d8a54db3b
+Subproject commit 04877b3bb878e30f8df562a35bc97163ee6be9ff


help.git: source/text

2024-01-11 Thread Rafael Lima (via logerrit)
 source/text/sbasic/shared/03/sf_intro.xhp |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 04877b3bb878e30f8df562a35bc97163ee6be9ff
Author: Rafael Lima 
AuthorDate: Thu Jan 11 21:25:11 2024 +0100
Commit: Adolfo Jayme Barrientos 
CommitDate: Thu Jan 11 22:02:41 2024 +0100

Silence string for translation in sf_intro.xhp

Change-Id: I12d48417dc979e85138b78f906fae3486f9673b4
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/161938
Tested-by: Jenkins
Reviewed-by: Adolfo Jayme Barrientos 

diff --git a/source/text/sbasic/shared/03/sf_intro.xhp 
b/source/text/sbasic/shared/03/sf_intro.xhp
index dced4f25b9..02e8d5a864 100644
--- a/source/text/sbasic/shared/03/sf_intro.xhp
+++ b/source/text/sbasic/shared/03/sf_intro.xhp
@@ -191,7 +191,7 @@
 
   
   In this case, set the 
environment variable PYTHONPATH as follows before starting 
the Python interpreter:
-  export 
PYTHONPATH=/usr/lib/libreoffice/program:/usr/lib/python3/dist-packages
+  export 
PYTHONPATH=/usr/lib/libreoffice/program:/usr/lib/python3/dist-packages
   The location of these files will be 
different for each operating system and %PRODUCTNAME installation method.
 
   


core.git: xmlsecurity/qa

2024-01-11 Thread Andrea Gelmini (via logerrit)
 xmlsecurity/qa/unit/signing/signing2.cxx |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 728be4c831d2c94d11a74445ff0665b2c7a0927c
Author: Andrea Gelmini 
AuthorDate: Thu Jan 11 17:54:23 2024 +0100
Commit: Adolfo Jayme Barrientos 
CommitDate: Thu Jan 11 21:18:49 2024 +0100

Fix typo

Change-Id: Ia63ef69c17c99de0c7bc3f33e7fc41dc042c2751
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/161925
Tested-by: Jenkins
Reviewed-by: Adolfo Jayme Barrientos 

diff --git a/xmlsecurity/qa/unit/signing/signing2.cxx 
b/xmlsecurity/qa/unit/signing/signing2.cxx
index 88b3ab99a705..71e887df236a 100644
--- a/xmlsecurity/qa/unit/signing/signing2.cxx
+++ b/xmlsecurity/qa/unit/signing/signing2.cxx
@@ -168,7 +168,7 @@ CPPUNIT_TEST_FIXTURE(SigningTest2, 
testPasswordPreserveMacroSignatureODF13)
 CPPUNIT_ASSERT_EQUAL(OUString("secret"), 
xTextDoc->getText()->getString());
 // test macro signature - this didn't actually work!
 // using Zip Storage means the encrypted streams are signed, so
-// after encrypting again the sigature didn't match and was dropped
+// after encrypting again the signature didn't match and was dropped
 //assertDocument(CPPUNIT_SOURCELINE(), "writer8", 
SignatureState::NOSIGNATURES,
 //   SignatureState::OK, ODFVER_013_TEXT);
 }
@@ -361,7 +361,7 @@ CPPUNIT_TEST_FIXTURE(SigningTest2, 
testPasswordPreserveMacroSignatureODFWholesom
 CPPUNIT_ASSERT_EQUAL(OUString("secret"), 
xTextDoc->getText()->getString());
 // test macro signature - this didn't actually work!
 // using Zip Storage means the encrypted streams are signed, so
-// after encrypting again the sigature didn't match and was dropped
+// after encrypting again the signature didn't match and was dropped
 //assertDocument(CPPUNIT_SOURCELINE(), "writer8", 
SignatureState::NOSIGNATURES,
 //   SignatureState::OK, ODFVER_013_TEXT);
 }


core.git: bin/update config_host.mk.in configure.ac distro-configs/Jenkins external/onlineupdate Makefile.gbuild

2024-01-11 Thread Stephan Bergmann (via logerrit)
 Makefile.gbuild   |2 
 bin/update/create_partial_update.py   |  185 --
 bin/update/path.py|   10 
 config_host.mk.in |1 
 configure.ac  |   16 -
 distro-configs/Jenkins/LibreOfficeLinuxUpdater.conf   |1 
 external/onlineupdate/UnpackedTarball_onlineupdate.mk |6 
 external/onlineupdate/cygpath.patch   |   11 +
 external/onlineupdate/lo.patch|   10 
 9 files changed, 74 insertions(+), 168 deletions(-)

New commits:
commit de98291912f6fddca8ff6cc3212c8e3850977892
Author: Stephan Bergmann 
AuthorDate: Thu Jan 11 17:02:43 2024 +0100
Commit: Stephan Bergmann 
CommitDate: Thu Jan 11 21:01:51 2024 +0100

Fix `make create-partial-info` (for Windows, at least)

I got lost trying to figure out how the original
bin/update/create_partial_update.py code was meant to obtain old and new
installation trees to diff, so I simplified that down to the 
create-partial-info
make target now expecting an ONLINEUPDATE_MAR_OLDARCHIVE make variable that
points at the old archive install set.  (And the
--with-online-update-mar-serverurl configure option is gone for good again.)
The remaining changes are similar to what was needed in
28bad382face10be75af3875e44dde89fbc78108 "Fix `make create-update-info` (for
Windows, at least)".  (And the mbsdiff and mar tools expect Windows-style
pathnames, but mktemp returns a Unix-style pathname in cygwin shell 
scripts, so
this needed an additional Windows-only external/onlineupdate/cygpath.patch.)

Change-Id: I40690210d62e3f26fb2d574914a0dd4323e6cd62
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/161924
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann 

diff --git a/Makefile.gbuild b/Makefile.gbuild
index 39eab31f95b2..211066becd37 100644
--- a/Makefile.gbuild
+++ b/Makefile.gbuild
@@ -60,7 +60,7 @@ create-partial-info:
$(eval VERSION := 
$(LIBO_VERSION_MAJOR).$(LIBO_VERSION_MINOR).$(LIBO_VERSION_MICRO).$(LIBO_VERSION_PATCH)$(LIBO_VERSION_SUFFIX)$(LIBO_VERSION_SUFFIX_SUFFIX))
$(eval PLATFORM := $(RTL_OS)_$(RTL_ARCH))
$(eval MAR_NAME_PREFIX := 
$(PRODUCTNAME)_$(VERSION)_$(PLATFORM)_$(BUILDID))
-   MBSDIFF=$(WORKDIR)/LinkTarget/Executable/mbsdiff 
MAR=$(INSTDIR)/program/mar $(SRCDIR)/bin/update/create_partial_update.py 
"$(WORKDIR)" "$(MAR_NAME_PREFIX)" "$(ONLINEUPDATE_MAR_SERVERURL)" 
LOOnlineUpdater "$(ONLINEUPDATE_MAR_CERTIFICATEPATH)" 
"$(ONLINEUPDATE_MAR_CERTIFICATENAME)" "$(ONLINEUPDATE_MAR_BASEURL)" 
"$(PLATFORM)" "$(BUILDID)"
+   MBSDIFF=$(WORKDIR)/LinkTarget/Executable/mbsdiff 
MAR=$(INSTDIR)/program/mar $(if $(filter WNT,$(OS)),$(shell cygpath -u 
$(SRCDIR)/bin/update/create_partial_update.py),$(SRCDIR)/bin/update/create_partial_update.py)
 "$(WORKDIR)" "$(MAR_NAME_PREFIX)" LOOnlineUpdater 
"$(ONLINEUPDATE_MAR_CERTIFICATEPATH)" "$(ONLINEUPDATE_MAR_CERTIFICATENAME)" 
"$(ONLINEUPDATE_MAR_BASEURL)" "$(PRODUCTNAME)" 
'$(LIBO_VERSION_MAJOR).$(LIBO_VERSION_MINOR).$(LIBO_VERSION_MICRO).$(LIBO_VERSION_PATCH)'
 "$(ONLINEUPDATE_MAR_OLDARCHIVE)"
 
 # also possible to bypass the dependencies/the gbuild processing by just 
running
 # LD_LIBRARY_PATH=instdir/program make cmd cmd='ALL_LANGS="$(ALL_LANGS)" 
workdir/LinkTarget/Executable/pocheck'
diff --git a/bin/update/create_partial_update.py 
b/bin/update/create_partial_update.py
index 2730c4765f14..cc9bb745852b 100755
--- a/bin/update/create_partial_update.py
+++ b/bin/update/create_partial_update.py
@@ -1,90 +1,14 @@
 #!/usr/bin/env python3
+import glob
 import json
 import os
+import re
 import subprocess
 import sys
 
-import requests
-
-from path import UpdaterPath, mkdir_p, convert_to_unix, convert_to_native
+from path import UpdaterPath, convert_to_native
 from signing import sign_mar_file
-from tools import get_file_info, get_hash
-from uncompress_mar import extract_mar
-
-BUF_SIZE = 1024
-current_dir_path = os.path.dirname(os.path.realpath(convert_to_unix(__file__)))
-
-
-class InvalidFileException(Exception):
-
-def __init__(self, *args, **kwargs):
-super().__init__(self, *args, **kwargs)
-
-
-def download_file(filepath, url, hash_string):
-with open(filepath, "wb") as f:
-response = requests.get(url, stream=True)
-
-if not response.ok:
-return
-
-for block in response.iter_content(1024):
-f.write(block)
-
-file_hash = get_hash(filepath)
-
-if file_hash != hash_string:
-raise InvalidFileException(
-"file hash does not match for file %s: Expected %s, Got: %s" % 
(url, hash_string, file_hash))
-
-
-def handle_language(lang_entries, filedir):
-langs = {}
-for lang, data in lang_entries.items():
-lang_dir = os.path.join(filedir, lang)
-lang_file = os.path.join(lang_dir, "lang.mar")
- 

[Bug 159139] Scrolling performance in textdocument became very slow after last release

2024-01-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159139

--- Comment #1 from harris.tidd...@t-online.de ---
Sorry it is not a text document but a calc document

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

core.git: sfx2/source

2024-01-11 Thread Attila Szűcs (via logerrit)
 sfx2/source/view/lokhelper.cxx |   12 +++-
 1 file changed, 7 insertions(+), 5 deletions(-)

New commits:
commit f97dc9d815ad8fdd75cbcd9c18b2e585ecf39ca5
Author: Attila Szűcs 
AuthorDate: Tue Jan 9 20:23:44 2024 +0100
Commit: Caolán McNamara 
CommitDate: Thu Jan 11 20:47:30 2024 +0100

LOK: fix language warning in setView

Made the warning before the new language set.
This way we log the old (wrong) and new (good) language.

Elseway we could save the old languages to a temporal variable,
set the language, and do the warning with the saved variable, but
i think the extra variables would be a waste of memory.

Change-Id: I0b69f49d07e9130bf1538c2c8e1d0b09cf82091f
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/161841
Tested-by: Jenkins CollaboraOffice 
Tested-by: Caolán McNamara 
Reviewed-by: Caolán McNamara 
(cherry picked from commit e09b3f5f4cd662a596b5d8d6ad4d5e2778e315f4)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/161916
Tested-by: Jenkins

diff --git a/sfx2/source/view/lokhelper.cxx b/sfx2/source/view/lokhelper.cxx
index 711e12209e8a..02cc7fe25230 100644
--- a/sfx2/source/view/lokhelper.cxx
+++ b/sfx2/source/view/lokhelper.cxx
@@ -194,10 +194,6 @@ void SfxLokHelper::setView(int nId)
 if (bIsCurrShell && 
comphelper::LibreOfficeKit::getLanguageTag().getBcp47() == 
pViewShell->GetLOKLanguageTag().getBcp47())
 return;
 
-// update the current LOK language and locale for the dialog 
tunneling
-
comphelper::LibreOfficeKit::setLanguageTag(pViewShell->GetLOKLanguageTag());
-comphelper::LibreOfficeKit::setLocale(pViewShell->GetLOKLocale());
-
 if (bIsCurrShell)
 {
 // If we wanted to set the SfxViewShell that is actually set, 
we could skip it.
@@ -206,9 +202,15 @@ void SfxLokHelper::setView(int nId)
 SAL_WARN("lok", "LANGUAGE mismatch at setView! ... old (wrong) 
lang:"
 << 
comphelper::LibreOfficeKit::getLanguageTag().getBcp47()
 << " new lang:" << 
pViewShell->GetLOKLanguageTag().getBcp47());
-return;
 }
 
+// update the current LOK language and locale for the dialog 
tunneling
+
comphelper::LibreOfficeKit::setLanguageTag(pViewShell->GetLOKLanguageTag());
+comphelper::LibreOfficeKit::setLocale(pViewShell->GetLOKLocale());
+
+if (bIsCurrShell)
+return;
+
 SfxViewFrame& rViewFrame = pViewShell->GetViewFrame();
 rViewFrame.MakeActive_Impl(false);
 


[Bug 159139] New: Scrolling performance in textdocument became very slow after last release

2024-01-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159139

Bug ID: 159139
   Summary: Scrolling performance in textdocument became very slow
after last release
   Product: LibreOffice
   Version: 7.5.9.2 release
  Hardware: All
OS: macOS (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: harris.tidd...@t-online.de

Description:
I loaded the new version today
"Version: 7.5.9.2 (X86_64) / LibreOffice Community
Build ID: cdeefe45c17511d326101eed8008ac4092f278a9
CPU threads: 4; OS: Mac OS X 12.7.2; UI render: default; VCL: osx
Locale: nl-NL (nl_NL.UTF-8); UI: nl-NL
Calc: threaded"
And since this new version the scrolling throug a textdocument via sliding the
slidebar at the righthand side became very slow.

Actual Results:
Start a larger document. Use the sidebar at the right side to slide

Expected Results:
This is very slow now and acts through small jumps to the wanted position


Reproducible: Always


User Profile Reset: No

Additional Info:
Follow the speed of the sliding as it did in the preceding version

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

core.git: sw/source

2024-01-11 Thread Michael Stahl (via logerrit)
 sw/source/core/crsr/crstrvl.cxx   |5 -
 sw/source/ui/index/swuiidxmrk.cxx |1 +
 2 files changed, 5 insertions(+), 1 deletion(-)

New commits:
commit 36f232e27616f267577851c38a24c2a5c3caad90
Author: Michael Stahl 
AuthorDate: Thu Jan 11 19:27:47 2024 +0100
Commit: Michael Stahl 
CommitDate: Thu Jan 11 20:34:01 2024 +0100

tdf#158783 sw: add some asserts for calling SelectTextAttr() ...

... with mismatched point node and SwTextAttr. Unfortunately SwTextAttr
doesn't have a member that points to the node, just half of its
subclasses do...

Change-Id: I78193ac47a9287f01b236b71934053299d0ffb23
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/161928
Tested-by: Jenkins
Reviewed-by: Michael Stahl 

diff --git a/sw/source/core/crsr/crstrvl.cxx b/sw/source/core/crsr/crstrvl.cxx
index 1ca95f7ef0e9..41437f04b84c 100644
--- a/sw/source/core/crsr/crstrvl.cxx
+++ b/sw/source/core/crsr/crstrvl.cxx
@@ -2218,6 +2218,7 @@ bool SwCursorShell::SelectTextModel( const sal_Int32 
nStart,
 SwCursorSaveState aSaveState( *m_pCurrentCursor );
 
 SwPosition& rPos = *m_pCurrentCursor->GetPoint();
+assert(nEnd <= rPos.GetNode().GetTextNode()->Len());
 m_pCurrentCursor->DeleteMark();
 rPos.SetContent(nStart);
 m_pCurrentCursor->SetMark();
@@ -2292,7 +2293,9 @@ bool SwCursorShell::SelectTextAttr( sal_uInt16 nWhich,
 return false;
 
 const sal_Int32* pEnd = pTextAttr->End();
-bool bRet = SelectTextModel(pTextAttr->GetStart(), (pEnd ? *pEnd : 
pTextAttr->GetStart() + 1));
+sal_Int32 const nEnd(pEnd ? *pEnd : pTextAttr->GetStart() + 1);
+assert(nEnd <= 
m_pCurrentCursor->GetPoint()->GetNode().GetTextNode()->Len());
+bool bRet = SelectTextModel(pTextAttr->GetStart(), nEnd);
 return bRet;
 }
 
diff --git a/sw/source/ui/index/swuiidxmrk.cxx 
b/sw/source/ui/index/swuiidxmrk.cxx
index 39443f7e7b04..a0a8a2f93c0c 100644
--- a/sw/source/ui/index/swuiidxmrk.cxx
+++ b/sw/source/ui/index/swuiidxmrk.cxx
@@ -923,6 +923,7 @@ void SwIndexMarkPane::UpdateDialog()
 m_xKey1DCB->set_sensitive(bEnable);
 m_xKey2DCB->set_sensitive(bEnable);
 
+assert(pMark->GetTextTOXMark()->GetTextNode() == 
m_pSh->GetCursor_()->GetPoint()->GetNode());
 m_pSh->SelectTextAttr( RES_TXTATR_TOXMARK, pMark->GetTextTOXMark() );
 // we need the point at the start of the attribute
 m_pSh->SwapPam();


[Bug 103479] [META] Word and character count bugs and enhancements

2024-01-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103479
Bug 103479 depends on bug 142494, which changed state.

Bug 142494 Summary: Word Count not 0 when no words are selected
https://bugs.documentfoundation.org/show_bug.cgi?id=142494

   What|Removed |Added

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

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

core.git: basctl/source officecfg/registry

2024-01-11 Thread Rafael Lima (via logerrit)
 basctl/source/basicide/BasicColorConfig.cxx  |   31 --
 basctl/source/basicide/baside2.cxx   |1 
 basctl/source/basicide/baside2.hxx   |7 +
 basctl/source/basicide/baside2b.cxx  |   51 +++
 basctl/source/basicide/linenumberwindow.cxx  |   26 +
 basctl/source/basicide/linenumberwindow.hxx  |1 
 basctl/source/inc/colorscheme.hxx|1 
 officecfg/registry/data/org/openoffice/Office/BasicIDE.xcu   |   30 ++
 officecfg/registry/schema/org/openoffice/Office/BasicIDE.xcs |   10 ++
 9 files changed, 149 insertions(+), 9 deletions(-)

New commits:
commit bf410be4502c2d78e38856c455833681c6b8a151
Author: Rafael Lima 
AuthorDate: Wed Jan 10 20:34:55 2024 +0100
Commit: Andreas Heinisch 
CommitDate: Thu Jan 11 19:56:08 2024 +0100

tdf#158750 Highlight the line where the cursor is positioned (Basic IDE)

This patch implements support for highlighting the selected line in the 
code editor, similar to what Kate, VSCode, etc do.

If the cursor is positioned in a single line and nothing is selected, then 
a highlight color is applied to the line. The line number window also 
highlights the selected line.

Change-Id: I2047d79500cd783b122b6752bb00996de0a7c702
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/161861
Tested-by: Jenkins
Reviewed-by: Andreas Heinisch 

diff --git a/basctl/source/basicide/BasicColorConfig.cxx 
b/basctl/source/basicide/BasicColorConfig.cxx
index 21ff95bc0f8e..ab17b164934b 100644
--- a/basctl/source/basicide/BasicColorConfig.cxx
+++ b/basctl/source/basicide/BasicColorConfig.cxx
@@ -49,13 +49,16 @@ ColorScheme BasicColorConfig::GetColorScheme(const 
OUString& rScheme)
 return GetAutomaticColorScheme();
 }
 
-std::vector aVecPropNames = {
-OUString(rScheme + "/GenericColor/Color"),   OUString(rScheme + 
"/IdentifierColor/Color"),
-OUString(rScheme + "/NumberColor/Color"),OUString(rScheme + 
"/StringColor/Color"),
-OUString(rScheme + "/CommentColor/Color"),   OUString(rScheme + 
"/ErrorColor/Color"),
-OUString(rScheme + "/OperatorColor/Color"),  OUString(rScheme + 
"/KeywordColor/Color"),
-OUString(rScheme + "/BackgroundColor/Color")
-};
+std::vector aVecPropNames = { OUString(rScheme + 
"/GenericColor/Color"),
+OUString(rScheme + 
"/IdentifierColor/Color"),
+OUString(rScheme + 
"/NumberColor/Color"),
+OUString(rScheme + 
"/StringColor/Color"),
+OUString(rScheme + 
"/CommentColor/Color"),
+OUString(rScheme + 
"/ErrorColor/Color"),
+OUString(rScheme + 
"/OperatorColor/Color"),
+OUString(rScheme + 
"/KeywordColor/Color"),
+OUString(rScheme + 
"/BackgroundColor/Color"),
+OUString(rScheme + 
"/LineHighlightColor/Color") };
 
 css::uno::Sequence aPropNames(aVecPropNames.size());
 OUString* pPropNames = aPropNames.getArray();
@@ -77,12 +80,22 @@ ColorScheme BasicColorConfig::GetColorScheme(const 
OUString& rScheme)
 aColors[6] >>= aColorScheme.m_aOperatorColor;
 aColors[7] >>= aColorScheme.m_aKeywordColor;
 aColors[8] >>= aColorScheme.m_aBackgroundColor;
+aColors[9] >>= aColorScheme.m_aLineHighlightColor;
 
 return aColorScheme;
 }
 
 ColorScheme BasicColorConfig::GetAutomaticColorScheme()
 {
+// Application Colors do not define a line highlight color, so here we 
adjust
+// the background color to get a highlight color
+Color aBackgroundColor = 
aColorConfig.GetColorValue(svtools::BASICEDITOR).nColor;
+Color aHighlightColor(aBackgroundColor);
+if (aBackgroundColor.IsDark())
+aHighlightColor.ApplyTintOrShade(1000);
+else
+aHighlightColor.ApplyTintOrShade(-1000);
+
 ColorScheme aScheme = { DEFAULT_SCHEME,
 false,
 
aColorConfig.GetColorValue(svtools::FONTCOLOR).nColor,
@@ -93,7 +106,9 @@ ColorScheme BasicColorConfig::GetAutomaticColorScheme()
 
aColorConfig.GetColorValue(svtools::BASICERROR).nColor,
 
aColorConfig.GetColorValue(svtools::BASICOPERATOR).nColor,
 
aColorConfig.GetColorValue(svtools::BASICKEYWORD).nColor,
-
aColorConfig.GetColorValue(svtools::BASICEDITOR).nColor };
+aBackgroundColor,
+aHighlightColor };
+
 return aScheme;
 }
 
diff --git a/basctl/source/basicide/baside2.cxx 
b/basctl/source/basicide/baside2.cxx
index 

[Bug 159120] Recent documents: Show only documents from the current module by default

2024-01-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159120

Andreas Heinisch  changed:

   What|Removed |Added

 CC||andreas.heini...@yahoo.de

--- Comment #6 from Andreas Heinisch  ---
Created attachment 191881
  --> https://bugs.documentfoundation.org/attachment.cgi?id=191881=edit
Current state of the MRU documents

What about increasing the number of prepended documents in the MRU?

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

[Bug 159120] Recent documents: Show only documents from the current module by default

2024-01-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159120

Andreas Heinisch  changed:

   What|Removed |Added

 CC||andreas.heini...@yahoo.de

--- Comment #6 from Andreas Heinisch  ---
Created attachment 191881
  --> https://bugs.documentfoundation.org/attachment.cgi?id=191881=edit
Current state of the MRU documents

What about increasing the number of prepended documents in the MRU?

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

core.git: helpcontent2

2024-01-11 Thread Rafael Lima (via logerrit)
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 45f3398c9a816f70815cf38620cf5db2ce66431c
Author: Rafael Lima 
AuthorDate: Thu Jan 11 19:50:54 2024 +0100
Commit: Gerrit Code Review 
CommitDate: Thu Jan 11 19:50:54 2024 +0100

Update git submodules

* Update helpcontent2 from branch 'master'
  to 46e73230cf1f0b3c9f21391099c2e15d8a54db3b
  - Improve sentences and fix strings in sf_dialog.xhp

Change-Id: Ic710fe6e92f73b5f247d881046b71a165ec6812f
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/161933
Tested-by: Jenkins
Reviewed-by: Olivier Hallot 

diff --git a/helpcontent2 b/helpcontent2
index 163b2d43d3e7..46e73230cf1f 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit 163b2d43d3e746a5c71c77b61e9e5dba4a34c039
+Subproject commit 46e73230cf1f0b3c9f21391099c2e15d8a54db3b


help.git: source/text

2024-01-11 Thread Rafael Lima (via logerrit)
 source/text/sbasic/shared/03/sf_dialog.xhp |  152 ++---
 1 file changed, 76 insertions(+), 76 deletions(-)

New commits:
commit 46e73230cf1f0b3c9f21391099c2e15d8a54db3b
Author: Rafael Lima 
AuthorDate: Thu Jan 11 18:54:02 2024 +0100
Commit: Olivier Hallot 
CommitDate: Thu Jan 11 19:50:54 2024 +0100

Improve sentences and fix strings in sf_dialog.xhp

Change-Id: Ic710fe6e92f73b5f247d881046b71a165ec6812f
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/161933
Tested-by: Jenkins
Reviewed-by: Olivier Hallot 

diff --git a/source/text/sbasic/shared/03/sf_dialog.xhp 
b/source/text/sbasic/shared/03/sf_dialog.xhp
index 37b1f9078d..1c6f0110de 100644
--- a/source/text/sbasic/shared/03/sf_dialog.xhp
+++ b/source/text/sbasic/shared/03/sf_dialog.xhp
@@ -552,8 +552,8 @@

  Sub 
TriggerEvent(oEvent As Object)

  Dim oDialog1 As Object, oDialog2 As Object, lExec As Long
- 
Set oDialog1 = CreateScriptService(DialogEvent, oEvent)  The 
dialog that caused the event
- 
Set oDialog2 = CreateScriptService(Dialog, ...)  Open a 
second dialog
+ 
Set oDialog1 = CreateScriptService("DialogEvent", oEvent)  The dialog 
that caused the event
+ 
Set oDialog2 = CreateScriptService("Dialog", ...)  Open a second 
dialog
  
oDialog2.Center(oDialog1)
  
lExec = oDialog2.Execute()
  
Select Case lExec
@@ -589,7 +589,7 @@



-  Set myButton2 = 
oDlg.CloneControl(Button1, Button2, 30, 30)
+  Set myButton2 = oDlg.CloneControl("Button1", 
"Button2", 30, 30)



@@ -637,7 +637,7 @@
   Dialog service;CreateButton

CreateButton
-   Create a new control 
of type Button in the current dialog.
+   Creates a new 
control of type Button in the current dialog.

svc.CreateButton(ControlName: str, Place: any,  
Toggle: bool = False, Push: str = ""): svc

@@ -651,7 +651,7 @@
All elements are 
expressed in Map 
AppFont units.

Toggle: 
when True a Toggle button is created. Default = 
False
-   Push: 
OK, CANCEL or  (default)
+   Push: 
"OK", "CANCEL" or "" (default)

  
  An instance of 
SFDialogs.DialogControl
 service or Nothing.
@@ -659,7 +659,7 @@



- Set 
myButton = oDlg.CreateButton(Button1, Array(20, 20, 60, 
15))
+ Set 
myButton = oDlg.CreateButton("Button1", Array(20, 20, 60, 15))



@@ -673,7 +673,7 @@
   Dialog service;CreateCheckBox

CreateCheckBox
-   Create a new control 
of type CheckBox in the current dialog.
+   Creates a new 
control of type CheckBox in the current dialog.

svc.CreateCheckBox(ControlName: str, Place: any, 
Multiline: bool = False): svc

@@ -682,7 +682,7 @@



- Set 
myCheckBox = oDlg.CreateCheckBox(CheckBox1, Array(20, 20, 60, 15), 
MultiLine := True)
+ Set 
myCheckBox = oDlg.CreateCheckBox("CheckBox1", Array(20, 20, 60, 15), MultiLine 
:= True)



@@ -696,18 +696,18 @@
   Dialog service;CreateComboBox

CreateComboBox
-   Create a new control 
of type ComboBox in the current dialog.
+   Creates a new 
control of type ComboBox in the current dialog.

svc.CreateComboBox(ControlName: str, Place: any, 
Border: str = "3D", DropDown: bool = True, LineCount: num = 5): 
svc

-   Border: 
3D (default) or FLAT or NONE
+   Border: 
"3D" (default), "FLAT" or "NONE"
DropDown: When True 
(default), a drop down button is displayed
LineCount: Specifies the maximum line 
count displayed in the drop down (default = 5)

   


- Set 
myComboBox = oDlg.CreateComboBox(ComboBox1, Array(20, 20, 60, 15), 
Dropdown := True)
+ Set 
myComboBox = oDlg.CreateComboBox("ComboBox1", Array(20, 20, 60, 15), Dropdown 
:= True)



@@ -721,11 +721,11 @@
   Dialog service;CreateCurrencyField

CreateCurrencyField
-   Create a new control 
of type CurrencyField in the current dialog.
+   Creates a new 
control of type CurrencyField in the current 
dialog.

svc.CreateCurrencyField(ControlName: str, Place: 
any, Border ="3D", SpinButton: bool = False, MinValue: num = -100, 
MaxValue: num = +100, Increment: num = 1, Accuracy: num = 2): 
svc

-   Border: 
3D (default) or FLAT or NONE
+   Border: 
"3D" (default), "FLAT" or "NONE"
SpinButton: when 
True (default = False), a spin button is 
present
MinValue: the smallest value that can 
be entered in the control. Default = -100
MaxValue: the largest value that can be 
entered in the control. Default = +100
@@ -735,7 +735,7 @@
   


- Set 
myCurrencyField = oDlg.CreateCurrencyField(CurrencyField1, 
Array(20, 20, 60, 15), SpinButton := True)
+ Set 
myCurrencyField = oDlg.CreateCurrencyField("CurrencyField1", Array(20, 20, 60, 
15), SpinButton := True)



@@ -749,11 +749,11 @@
   Dialog service;CreateDateField

CreateDateField
-   Create a new control 
of type DateField in 

core.git: basctl/source officecfg/registry

2024-01-11 Thread Rafael Lima (via logerrit)
 basctl/source/basicide/baside2.cxx   |   10 
 basctl/source/basicide/basides1.cxx  |   27 ---
 basctl/source/basicide/basidesh.cxx  |6 ++
 officecfg/registry/schema/org/openoffice/Office/BasicIDE.xcs |   18 +++
 4 files changed, 56 insertions(+), 5 deletions(-)

New commits:
commit c0075bf84ecb64186f42c861985af43e120101f9
Author: Rafael Lima 
AuthorDate: Tue Jan 9 23:01:02 2024 +0100
Commit: Andreas Heinisch 
CommitDate: Thu Jan 11 19:49:28 2024 +0100

tdf#155381 Remember the visibility of UI components in the Basic IDE

This patch remembers the visibility of the Object Catalog, Watched 
Expressions and Stack Window in the Basic IDE.

Change-Id: I2fea038ffc56af45cd6570feeb14ab84307f8cef
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/161852
Tested-by: Jenkins
Reviewed-by: Andreas Heinisch 

diff --git a/basctl/source/basicide/baside2.cxx 
b/basctl/source/basicide/baside2.cxx
index 8eebbdb44e8d..a36cec6fe245 100644
--- a/basctl/source/basicide/baside2.cxx
+++ b/basctl/source/basicide/baside2.cxx
@@ -1458,6 +1458,16 @@ ModulWindowLayout::ModulWindowLayout (vcl::Window* 
pParent, ObjectCatalog& rObje
 // Get active color scheme from the registry
 m_sColorSchemeId = 
GetShell()->GetColorConfig()->GetCurrentColorSchemeName();
 aSyntaxColors.ApplyColorScheme(m_sColorSchemeId, true);
+
+// Initialize the visibility of the Stack Window
+bool bStackVisible = 
::officecfg::Office::BasicIDE::EditorSettings::StackWindow::get();
+if (!bStackVisible)
+aStackWindow->Show(bStackVisible);
+
+// Initialize the visibility of the Watched Expressions window
+bool bWatchVisible = 
::officecfg::Office::BasicIDE::EditorSettings::WatchWindow::get();
+if (!bWatchVisible)
+aWatchWindow->Show(bWatchVisible);
 }
 
 ModulWindowLayout::~ModulWindowLayout()
diff --git a/basctl/source/basicide/basides1.cxx 
b/basctl/source/basicide/basides1.cxx
index 507902a34d0a..8052845983f3 100644
--- a/basctl/source/basicide/basides1.cxx
+++ b/basctl/source/basicide/basides1.cxx
@@ -423,14 +423,21 @@ void Shell::ExecuteGlobal( SfxRequest& rReq )
 break;
 
 case SID_BASICIDE_OBJCAT:
-// toggling object catalog
-aObjectCatalog->Show(!aObjectCatalog->IsVisible());
+{
+// Toggle the visibility of the object catalog
+bool bVisible = aObjectCatalog->IsVisible();
+aObjectCatalog->Show(!bVisible);
 if (pLayout)
 pLayout->ArrangeWindows();
 // refresh the button state
 if (SfxBindings* pBindings = GetBindingsPtr())
 pBindings->Invalidate(SID_BASICIDE_OBJCAT);
-break;
+
+std::shared_ptr 
batch(comphelper::ConfigurationChanges::create());
+
officecfg::Office::BasicIDE::EditorSettings::ObjectCatalog::set(!bVisible, 
batch);
+batch->commit();
+}
+break;
 
 case SID_BASICIDE_WATCH:
 {
@@ -438,9 +445,14 @@ void Shell::ExecuteGlobal( SfxRequest& rReq )
 if (!dynamic_cast(pLayout.get()))
 return;
 
-
pModulLayout->ShowWatchWindow(!pModulLayout->IsWatchWindowVisible());
+bool bVisible = pModulLayout->IsWatchWindowVisible();
+pModulLayout->ShowWatchWindow(!bVisible);
 if (SfxBindings* pBindings = GetBindingsPtr())
 pBindings->Invalidate(SID_BASICIDE_WATCH);
+
+std::shared_ptr 
batch(comphelper::ConfigurationChanges::create());
+
officecfg::Office::BasicIDE::EditorSettings::WatchWindow::set(!bVisible, batch);
+batch->commit();
 }
 break;
 
@@ -450,9 +462,14 @@ void Shell::ExecuteGlobal( SfxRequest& rReq )
 if (!dynamic_cast(pLayout.get()))
 return;
 
-
pModulLayout->ShowStackWindow(!pModulLayout->IsStackWindowVisible());
+bool bVisible = pModulLayout->IsStackWindowVisible();
+pModulLayout->ShowStackWindow(!bVisible);
 if (SfxBindings* pBindings = GetBindingsPtr())
 pBindings->Invalidate(SID_BASICIDE_STACK);
+
+std::shared_ptr 
batch(comphelper::ConfigurationChanges::create());
+
officecfg::Office::BasicIDE::EditorSettings::StackWindow::set(!bVisible, batch);
+batch->commit();
 }
 break;
 
diff --git a/basctl/source/basicide/basidesh.cxx 
b/basctl/source/basicide/basidesh.cxx
index e64e34e0ff59..420a51a2de8b 100644
--- a/basctl/source/basicide/basidesh.cxx
+++ b/basctl/source/basicide/basidesh.cxx
@@ -75,6 +75,7 @@
 #include 
 #include 
 #include 
+#include 
 
 namespace basctl
 {
@@ -211,6 +212,11 @@ void Shell::Init()
 InitTabBar();
 InitZoomLevel();
 
+// Initialize the visibility of the Object Catalog
+bool bObjCatVisible = 

core.git: helpcontent2

2024-01-11 Thread Stanislav Horacek (via logerrit)
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit a207d7ab26fe0324e1074ffb96d6385b3781b391
Author: Stanislav Horacek 
AuthorDate: Thu Jan 11 19:48:23 2024 +0100
Commit: Gerrit Code Review 
CommitDate: Thu Jan 11 19:48:23 2024 +0100

Update git submodules

* Update helpcontent2 from branch 'master'
  to 163b2d43d3e746a5c71c77b61e9e5dba4a34c039
  - fix various typos

Change-Id: Iba87ac215420d36ac9260fb3156b5493a3040f70
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/161900
Tested-by: Jenkins
Reviewed-by: Olivier Hallot 

diff --git a/helpcontent2 b/helpcontent2
index 26a5de6fa9b4..163b2d43d3e7 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit 26a5de6fa9b4134eda61cd21511f589cd1e852ad
+Subproject commit 163b2d43d3e746a5c71c77b61e9e5dba4a34c039


help.git: source/text

2024-01-11 Thread Stanislav Horacek (via logerrit)
 source/text/shared/00/0208.xhp |4 ++--
 source/text/shared/00/0404.xhp |8 
 2 files changed, 6 insertions(+), 6 deletions(-)

New commits:
commit 163b2d43d3e746a5c71c77b61e9e5dba4a34c039
Author: Stanislav Horacek 
AuthorDate: Wed Jan 10 23:42:07 2024 +0100
Commit: Olivier Hallot 
CommitDate: Thu Jan 11 19:48:23 2024 +0100

fix various typos

Change-Id: Iba87ac215420d36ac9260fb3156b5493a3040f70
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/161900
Tested-by: Jenkins
Reviewed-by: Olivier Hallot 

diff --git a/source/text/shared/00/0208.xhp 
b/source/text/shared/00/0208.xhp
index 9621d543a1..810319d013 100644
--- a/source/text/shared/00/0208.xhp
+++ b/source/text/shared/00/0208.xhp
@@ -109,13 +109,13 @@
 
 Detect special numbers
 When this option is enabled, Calc will automatically detect all number 
formats, including special number formats such as dates and time. Scientific 
notation will also be detected as Detect scientific notation 
option must be enabled at the same time.
-The selected 
language influences how such special numbers are detected, since different 
languages and regions many have different conventions for such special 
numbers.
+The selected 
language influences how such special numbers are detected, since different 
languages and regions may have different conventions for such special 
numbers.
 When this 
option is disabled, Calc will detect and convert only numbers in decimal 
notation. Detection of numbers in scientific notation will depend on 
Detect scientific notation option. The rest will be imported as 
text. A decimal number string can have digits 0-9, thousands separators, and a 
decimal separator. Thousands separators and decimal separators may vary with 
the selected language and region.
 
 
 Detect scientific notation
 When this option is enabled, Calc will automatically detect numbers 
with scientific notation, like 5E2 for 500.
-The selected 
language influences how scientific notation is detected, since different 
languages and regions many have different decimal separator.
+The selected 
language influences how scientific notation is detected, since different 
languages and regions may have different decimal separator.
 This option 
can be disabled only if Detect special numbers option is 
previously disabled.
 When this 
option is disabled, Calc will detect and convert only numbers in decimal 
notation. The rest will be imported as text. A decimal number string can have 
digits 0-9, thousands separators, and a decimal separator. Thousands separators 
and decimal separators may vary with the selected language and 
region.
 
diff --git a/source/text/shared/00/0404.xhp 
b/source/text/shared/00/0404.xhp
index ff1917d731..f822c1d752 100644
--- a/source/text/shared/00/0404.xhp
+++ b/source/text/shared/00/0404.xhp
@@ -66,7 +66,7 @@
 
 
 Select one 
or more rows, choose Insert Rows Above.
-Select one 
or more cells, choose Insert Cells - Entire 
Row.
+Select one 
or more cells, choose Insert - Entire Row.
 
 
 Choose 
Insert - Insert Row Above.
@@ -122,7 +122,7 @@
 
 
 Select one 
or more columns, choose Insert Columns Before.
-Select one 
or more columns, choose Insert Cells - Entire 
column.
+Select one 
or more cells, choose Insert - Entire column.
 
 
 Choose 
Insert - Insert Column Before.
@@ -135,10 +135,10 @@
 
 
 Choose 
Home - Insert Columns Before.
-Choose 
Layout - Row - Insert Columns Before.
+Choose 
Layout - Column - Insert Columns Before.
 
 
-Choose 
Table - Insert Row Above.
+Choose 
Table - Insert Column Before.
 
 
 


help.git: source/text

2024-01-11 Thread Olivier Hallot (via logerrit)
 source/text/scalc/01/calculate.xhp |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 26a5de6fa9b4134eda61cd21511f589cd1e852ad
Author: Olivier Hallot 
AuthorDate: Thu Jan 11 19:38:57 2024 +0100
Commit: Olivier Hallot 
CommitDate: Thu Jan 11 19:41:24 2024 +0100

Fix bookmark HID

Change-Id: Ibe80002fd4d5b71600f6cda234646fb1bd33d6a4
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/161934
Tested-by: Jenkins
Reviewed-by: Olivier Hallot 

diff --git a/source/text/scalc/01/calculate.xhp 
b/source/text/scalc/01/calculate.xhp
index b6f6f258eb..36aad9d836 100644
--- a/source/text/scalc/01/calculate.xhp
+++ b/source/text/scalc/01/calculate.xhp
@@ -16,7 +16,7 @@
 
 
 
-
+
 
 Calculate
 Commands to 
calculate formula cells.


core.git: helpcontent2

2024-01-11 Thread Olivier Hallot (via logerrit)
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 1b08dabad1fc217f7d0794c38f8f960c08f05ba8
Author: Olivier Hallot 
AuthorDate: Thu Jan 11 19:41:25 2024 +0100
Commit: Gerrit Code Review 
CommitDate: Thu Jan 11 19:41:25 2024 +0100

Update git submodules

* Update helpcontent2 from branch 'master'
  to 26a5de6fa9b4134eda61cd21511f589cd1e852ad
  - Fix bookmark HID

Change-Id: Ibe80002fd4d5b71600f6cda234646fb1bd33d6a4
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/161934
Tested-by: Jenkins
Reviewed-by: Olivier Hallot 

diff --git a/helpcontent2 b/helpcontent2
index abbdd32a5cd8..26a5de6fa9b4 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit abbdd32a5cd87a4f21ba17e4ea9de6fd224b8ed4
+Subproject commit 26a5de6fa9b4134eda61cd21511f589cd1e852ad


core.git: helpcontent2

2024-01-11 Thread Rafael Lima (via logerrit)
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 6c0463e38d138e0e502bc9c8ae9a01f4809ef5df
Author: Rafael Lima 
AuthorDate: Thu Jan 11 19:37:56 2024 +0100
Commit: Gerrit Code Review 
CommitDate: Thu Jan 11 19:37:56 2024 +0100

Update git submodules

* Update helpcontent2 from branch 'master'
  to abbdd32a5cd87a4f21ba17e4ea9de6fd224b8ed4
  - Fix strings in sf_dataset.xhp

Change-Id: Ifdee53dc4a92d9f889e9dc92943331659d28775b
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/161931
Tested-by: Jenkins
Reviewed-by: Olivier Hallot 

diff --git a/helpcontent2 b/helpcontent2
index d6168024a684..abbdd32a5cd8 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit d6168024a68482349db0c02713e79d37a31519ce
+Subproject commit abbdd32a5cd87a4f21ba17e4ea9de6fd224b8ed4


help.git: source/text

2024-01-11 Thread Rafael Lima (via logerrit)
 source/text/sbasic/shared/03/sf_dataset.xhp |   16 
 1 file changed, 8 insertions(+), 8 deletions(-)

New commits:
commit abbdd32a5cd87a4f21ba17e4ea9de6fd224b8ed4
Author: Rafael Lima 
AuthorDate: Thu Jan 11 14:12:23 2024 +0100
Commit: Olivier Hallot 
CommitDate: Thu Jan 11 19:37:56 2024 +0100

Fix strings in sf_dataset.xhp

Change-Id: Ifdee53dc4a92d9f889e9dc92943331659d28775b
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/161931
Tested-by: Jenkins
Reviewed-by: Olivier Hallot 

diff --git a/source/text/sbasic/shared/03/sf_dataset.xhp 
b/source/text/sbasic/shared/03/sf_dataset.xhp
index a3b7ae61a3..e63f16e3df 100644
--- a/source/text/sbasic/shared/03/sf_dataset.xhp
+++ b/source/text/sbasic/shared/03/sf_dataset.xhp
@@ -134,7 +134,7 @@
   Dictionary service
 
 
-  Returns a 
Dictionary  with the default values used for each field in 
the dataset. The fields or columns in the dataset are the keys in the 
dictionary.
+  Returns a 
Dictionary with the default values used for each field in 
the dataset. The fields or columns in the dataset are the keys in the 
dictionary.
   The 
database field types are converted to their corresponding Basic/Python data 
types. When the field type is undefined, the default value is 
Null if the field is nullable or 
Empty.
 
   
@@ -379,7 +379,7 @@
   Dataset service;CreateDataset
 
 CreateDataset
-Returns a 
Dataset service instance from an existing dataset by 
applying the specified filter and order by statements.
+Returns a 
Dataset service instance from an existing dataset by 
applying the specified filter and ORDER BY 
statements.
 
 
   svc.CreateDataset(opt filter: str, opt orderby: str): svc
@@ -393,17 +393,17 @@
   ' Use an empty 
string to remove the current filter
   oNewDataset = oDataset.CreateDataset(Filter := 
"")
   ' Examples of 
common filters
-  oNewDataset = oDataset.CreateDataset(Filter := 
"[Name] = 'John'")
-  oNewDataset = oDataset.CreateDataset(Filter := 
"[Name] LIKE 'A'")
+  oNewDataset = 
oDataset.CreateDataset(Filter := "[Name] = 'John'")
+  oNewDataset = 
oDataset.CreateDataset(Filter := "[Name] LIKE 'A'")
   ' It is possible to 
append additional conditions to the current filter
-  oNewDataset = oDataset.CreateDataset(Filter := "(" 
 oDataset.Filter  ") AND [Name] LIKE 'A'")
+  oNewDataset = 
oDataset.CreateDataset(Filter := "("  oDataset.Filter  ") AND [Name] 
LIKE 'A'")
 
 
 
   new_dataset = dataset.CreateDataset(filter = 
"")
-  new_dataset = dataset.CreateDataset(filter = "[Name] 
= 'John'")
-  new_dataset = dataset.CreateDataset(filter = "[Name] 
LIKE 'A'")
-  new_dataset = dataset.CreateDataset(filter = 
f"({dataset.Filter}) AND [Name] LIKE 'A'")
+  new_dataset = 
dataset.CreateDataset(filter = "[Name] = 'John'")
+  new_dataset = 
dataset.CreateDataset(filter = "[Name] LIKE 'A'")
+  new_dataset = 
dataset.CreateDataset(filter = f"({dataset.Filter}) AND [Name] LIKE 
'A'")
 
   
 


translations.git: Changes to 'refs/tags/libreoffice-24.2.0.2'

2024-01-11 Thread Christian Lohmaier (via logerrit)
Tag 'libreoffice-24.2.0.2' created by Christian Lohmaier 
 at 2024-01-11 18:27 +

Tag libreoffice-24.2.0.2
-BEGIN PGP SIGNATURE-

iQIzBAABCAAdFiEEwoOeytlAj76VMcPp9DSh76/urqMFAmWgMwgACgkQ9DSh76/u
rqP+bw//bLCaDGQCLRGFxKxFOnoZp4oLZdT7JH+rNupJBDM0H5YpeH8cN+zUkbUt
Eb5yYIlQvrpdrk1/7vx9f+ntRBEiEf6ly/RsUSNZo5irFfMi0+JVH+xSiCWA1PND
ZkhpW5ihwKLBmyOUFJJA8/PZ82uyVQXAZ1rKrR2UvjBT+87vkGF6/0Dt1W/3Yef/
UlIjEvnsxOH74ERzTo+2cGKRoSpYeFJ7tHiLl5TMq7e2BWD9LV0DmlyY68UTUguq
x4LEB5zwcyNlIL8RI3aG9SdV4E+5cgH09S5/XT1uPcZhuBMLloPOFfR4Gpm456iR
VsdMMEQ+/WRJUlJMC/tLCr9OzCiN/lcdG8Sf1rVHxfFn+RVswUrKMStusvyrxmzp
Ot5UnnAquLVXT04u4vIKTA6Ps8MWFFdpvGT5K6ewaiXTykPs52R0yqnOlV/TXNmr
s88ST7BLDnRekuAlQRBYmK9C2vFBh173qi5UBEV43/g7ziQXrsnf9KdCk201cGcM
+mFUFEs9jkS/LrrqlnsGW00GeJefW7UyeB5a469lZDuXP5P6tsC6JGB6yUJ1/XwL
H08QERiZaenpla+Da6WECEsoJp2v1RKAunTYbolOl8ckh7ko/Qlln/7L8zMJvNBG
hxCY84qNppyS5sgNmWPfk6r3P7LU98q7cC6HqRM3mWFlslt61sk=
=JqyC
-END PGP SIGNATURE-

Changes since libreoffice-24-2-branch-point-12:
---
 0 files changed
---


help.git: Changes to 'refs/tags/libreoffice-24.2.0.2'

2024-01-11 Thread Christian Lohmaier (via logerrit)
Tag 'libreoffice-24.2.0.2' created by Christian Lohmaier 
 at 2024-01-11 18:27 +

Tag libreoffice-24.2.0.2
-BEGIN PGP SIGNATURE-

iQIzBAABCAAdFiEEwoOeytlAj76VMcPp9DSh76/urqMFAmWgMwgACgkQ9DSh76/u
rqNkew/6AgQcXFffqAwfqStd6qX8OZZEQWBch6O5BWQWsWXk6WTqMu/8KSMhRsMZ
PLLvDRP/1H8of5hWZa/e05vLnONUHGk5V39KQDGiH11dU8yUFN5a86bCVk0gDWBn
S2C62HAoMWfGV7L/yJtsBRle6ndKf6HN1/Pd4yAB7eldpDiNZpiN4ja3qZDJ9Rjr
rNRjivF6DJruOgJp4hz5gXwJGpEE0XjGz2GVwF9rwq+G+d71/tYtfqqtM767pqf4
ja0mcUJtqmm8eRU5jUNEigx1MbAA/zmW/Em4p8EzOBsV2cCbUAlb5nwK7nhsCIA4
Lem8w6EeJPG4lFtf5u37+UQTdj+DDktwJ2gNfBeOV9CaV5l2kUcDWdr5mRpIle3M
xvsfg0ttFCopFLY6ByjDd9N5w3vsuQeAHo2Bmcj71NSzeSFTyJArnIx5BwSnnUFn
sde+oHBaZcFu/fuoz3gnPKmnUYY41sbuZ2/ySn8dhcxJWzAdenEFfglQ1WPPmtpX
VCdaFEkBCzjPj2hznppD+PbJ+7vEb8Mra2BQ4zTzEiaGVTHqjfJHnOwSg34zks96
J6cNMBY0QAfs1WCct2SuG+vYgoQBYCjGCsBFwZUrXelxb/PWOMz60HRSn7ua5Ugs
/7KkqpauOK3IJ5wYp79cbkJB/T0M+uzf5A1k/Sr7Ch04e2n6e6o=
=cnfV
-END PGP SIGNATURE-

Changes since libreoffice-24-2-branch-point-30:
---
 0 files changed
---


dictionaries.git: Changes to 'refs/tags/libreoffice-24.2.0.2'

2024-01-11 Thread Christian Lohmaier (via logerrit)
Tag 'libreoffice-24.2.0.2' created by Christian Lohmaier 
 at 2024-01-11 18:27 +

Tag libreoffice-24.2.0.2
-BEGIN PGP SIGNATURE-

iQIzBAABCAAdFiEEwoOeytlAj76VMcPp9DSh76/urqMFAmWgMwUACgkQ9DSh76/u
rqPwhA//dLzx07L+vEy1UHNJAfpbptWvfWeZ6bEZO9nPc+daMUhmybAO8f+P9f2h
h4Zwu/wyy9pNNSvVcAKOcdmp/e3acW9lKdoetMG9e6Q5twa5qWFTVXKzIkUYi/Qa
B9u2/k9WJrHPYDjXUaH38NiElns9lYGd/tb0Dj0pmYla1LmOCOV9QyROmfnsBq4a
E8bh61c7GH+CjC49UcdgnFuMxj8yecgDsXvyBhyQMxkHpWr8R9vv0l7FN/oQsnfY
Z2yKLWnhlNivCrgCj4jVztCQz5oSq4/54RdgYrDV5SxrjYjYASa71/cghh3sGxZD
ptu1RHrKMxXOw20IpJvtPVALZ68TDCjYFOytyQEeGWfEYV6miwqN166TwkNJtTTv
0NwIRAcAHxcdQzSReCtepGEmyBF0/tYwrun393XhBAFCWfrrEIotDWjgUg9/cxEK
N+kZNpplw2HOwuSmert0OBLIdSvGQrmITShp0M/gtMVrWsUROb35SKep0oxPkz6d
D/KlrZOxCZEjdLcLomvu/AJHYzleZb7PEajhu6SbjVc+Ni27jRady1UEFhAsyL6H
9OK33VB+xbqTgWdKU2rNVzXNIdSoyOS3/zjT7h5/g7t6Xf4Hskfy9Wa4ZRUCnvqm
0dp0lJdqiZW1kVO7fTsyDDLvWC1RpYv3kpYPkaUiEXRUrRhHnmI=
=Q/T+
-END PGP SIGNATURE-

Changes since libreoffice-24-2-branch-point-5:
---
 0 files changed
---


core.git: Changes to 'refs/tags/libreoffice-24.2.0.2'

2024-01-11 Thread Christian Lohmaier (via logerrit)
Tag 'libreoffice-24.2.0.2' created by Christian Lohmaier 
 at 2024-01-11 18:27 +

Tag libreoffice-24.2.0.2
-BEGIN PGP SIGNATURE-

iQIzBAABCAAdFiEEwoOeytlAj76VMcPp9DSh76/urqMFAmWgMwgACgkQ9DSh76/u
rqPHeQ//RfnflCbl/09kGryXYFAMwwuH8rb3TvUnqQ3Otp7BDNEu7bEpeYsoM6HW
w+vgNiynJYBFAP7PnAC7TtIBvC+JXJibeTJqaQTB7TSHruqKw4ngiN3tO4rgDTca
GWBO+JdyhUuyfiumXRfOWBaSDW2EmN+PmBSsiSfl3/aPVxaYeTN59YHEwqc2eR+I
3XojlKJDmFNi28C7Fel0WkujQhc+PgcwqiGrvaP40xkCYI7MxqlrNQSOJJmpVhST
P9Zf6ytLyoFkkhRaLqrtst2TSC/RL/e5MFB/ijMCVn7lZl4qHquCWCYbpGJGf/dh
7Y2NJnTkhFRiaxLIWOooLFKyF/RRALhFyJlqRt3IRvOBdRAFFTDJ4OKEFdyUEe7H
0CkKdyHalnRrWkvZTiwDk+PHmVw48HK8Agfho81+5NK4GfykY6W01HV3uvgQn7pQ
KLwTB/fAyQ2WpLelyIPhXMBDYRqQejQQctnIHmpyIVkCs0hGkcAD4Zyj5KoHXYwP
ZA3AGs8zgLtg8N6g+tcOK2bNRhMDgDKYyF9w3HPtLNmwyzCDMSB5yjN2fAqNSoMk
nWSZiLArZCBe1iK04ft388zjjDhbg3no0xnawdP0bVvxJOMvCDx0OyF13kTux5na
5Iwk3h8zmZBQqML/xqdDuyX6HkGGggvKiIkyzB8wGXac6KRsv00=
=NbLM
-END PGP SIGNATURE-

Changes since libreoffice-24-2-branch-point-269:
---
 0 files changed
---


core.git: Branch 'libreoffice-24-2-0' - configure.ac

2024-01-11 Thread Christian Lohmaier (via logerrit)
 configure.ac |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit d39acddc34f7dc3784e7dfed7293edda2e43cd9a
Author: Christian Lohmaier 
AuthorDate: Thu Jan 11 19:27:43 2024 +0100
Commit: Christian Lohmaier 
CommitDate: Thu Jan 11 19:27:43 2024 +0100

bump product version to 24.2.0.2.0+

Change-Id: Ic7c96aeb7ec5d623b013ffe17efd26143740f0c5

diff --git a/configure.ac b/configure.ac
index 77781df743ed..bb27813f0583 100644
--- a/configure.ac
+++ b/configure.ac
@@ -9,7 +9,7 @@ dnl in order to create a configure script.
 # several non-alphanumeric characters, those are split off and used only for 
the
 # ABOUTBOXPRODUCTVERSIONSUFFIX in openoffice.lst. Why that is necessary, no 
idea.
 
-AC_INIT([LibreOffice],[24.2.0.1.0+],[],[],[http://documentfoundation.org/])
+AC_INIT([LibreOffice],[24.2.0.2.0+],[],[],[http://documentfoundation.org/])
 
 dnl libnumbertext needs autoconf 2.68, but that can pick up autoconf268 just 
fine if it is installed
 dnl whereas aclocal (as run by autogen.sh) insists on using autoconf and fails 
hard


core.git: editeng/source sw/source

2024-01-11 Thread Andreas Heinisch (via logerrit)
 editeng/source/misc/svxacorr.cxx   |2 ++
 sw/source/core/swg/SwXMLTextBlocks.cxx |2 ++
 2 files changed, 4 insertions(+)

New commits:
commit a03a9236b01437b573cb68112959b9403418e11b
Author: Andreas Heinisch 
AuthorDate: Thu Jan 11 13:09:51 2024 +0100
Commit: Andreas Heinisch 
CommitDate: Thu Jan 11 19:25:50 2024 +0100

tdf#156769 - Escape the question mark in the storage name

Otherwise, an auto-text using the question mark for its shortcut
cannot be inserted.

Change-Id: I369e3d0f2ff82cea2d053896964a5c2c23b8d6f6
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/161921
Tested-by: Jenkins
Reviewed-by: Andreas Heinisch 

diff --git a/editeng/source/misc/svxacorr.cxx b/editeng/source/misc/svxacorr.cxx
index ff2c4518aadd..d278b582e833 100644
--- a/editeng/source/misc/svxacorr.cxx
+++ b/editeng/source/misc/svxacorr.cxx
@@ -1976,6 +1976,8 @@ static void GeneratePackageName ( std::u16string_view 
rShort, OUString& rPackage
 case ':':
 case '.':
 case '\':
+// tdf#156769 - escape the question mark in the storage name
+case '?':
 aBuf[nPos] = '_';
 break;
 default:
diff --git a/sw/source/core/swg/SwXMLTextBlocks.cxx 
b/sw/source/core/swg/SwXMLTextBlocks.cxx
index efc3e530b0f2..f69311dfdb5f 100644
--- a/sw/source/core/swg/SwXMLTextBlocks.cxx
+++ b/sw/source/core/swg/SwXMLTextBlocks.cxx
@@ -527,6 +527,8 @@ OUString SwXMLTextBlocks::GeneratePackageName ( 
std::u16string_view rShort )
 case ':':
 case '.':
 case '\':
+// tdf#156769 - escape the question mark in the storage name for 
auto-texts
+case '?':
 aBuf[nPos] = '_';
 break;
 default:


core.git: Branch 'libreoffice-24-2' - configure.ac

2024-01-11 Thread Christian Lohmaier (via logerrit)
 configure.ac |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 6cc31ef3fe6335d9e997ad6897f4c8f1a23cb07c
Author: Christian Lohmaier 
AuthorDate: Thu Jan 11 19:25:35 2024 +0100
Commit: Christian Lohmaier 
CommitDate: Thu Jan 11 19:25:35 2024 +0100

bump product version to 24.2.1.0.0+

Change-Id: Ia5f3014edabb54205d1b3c4f5f32cb7cfbb70ed5

diff --git a/configure.ac b/configure.ac
index 77781df743ed..665f954adfc0 100644
--- a/configure.ac
+++ b/configure.ac
@@ -9,7 +9,7 @@ dnl in order to create a configure script.
 # several non-alphanumeric characters, those are split off and used only for 
the
 # ABOUTBOXPRODUCTVERSIONSUFFIX in openoffice.lst. Why that is necessary, no 
idea.
 
-AC_INIT([LibreOffice],[24.2.0.1.0+],[],[],[http://documentfoundation.org/])
+AC_INIT([LibreOffice],[24.2.1.0.0+],[],[],[http://documentfoundation.org/])
 
 dnl libnumbertext needs autoconf 2.68, but that can pick up autoconf268 just 
fine if it is installed
 dnl whereas aclocal (as run by autogen.sh) insists on using autoconf and fails 
hard


core.git: Changes to 'libreoffice-24-2-0'

2024-01-11 Thread Christian Lohmaier (via logerrit)
New branch 'libreoffice-24-2-0' available with the following commits:
commit 025e3b4d0cfde00144d984b3949bbf4d3b92560d
Author: Christian Lohmaier 
Date:   Thu Jan 11 19:23:44 2024 +0100

Branch libreoffice-24-2-0

This is 'libreoffice-24-2-0' - the stable branch for the 24.2.0 release.
Only very safe changes, reviewed by three people are allowed.

If you want to commit more complicated fix for the next 24.2.x release,
please use the 'libreoffice-24-2' branch.

If you want to build something cool, unstable, and risky, use master.



translations.git: Changes to 'libreoffice-24-2-0'

2024-01-11 Thread Christian Lohmaier (via logerrit)
New branch 'libreoffice-24-2-0' available with the following commits:
commit ee0d7cbe091ccd9a1ebedd49607e9c0bdef4e804
Author: Christian Lohmaier 
Date:   Thu Jan 11 19:23:24 2024 +0100

Branch libreoffice-24-2-0

This is 'libreoffice-24-2-0' - the stable branch for the 24.2.0 release.
Only very safe changes, reviewed by three people are allowed.

If you want to commit more complicated fix for the next 24.2.x release,
please use the 'libreoffice-24-2' branch.

If you want to build something cool, unstable, and risky, use master.

Change-Id: I1fca609b81751388907a9f8eeef1b4c686eaad5b



help.git: Changes to 'libreoffice-24-2-0'

2024-01-11 Thread Christian Lohmaier (via logerrit)
New branch 'libreoffice-24-2-0' available with the following commits:
commit f8dfcc8740164aad277abb73584b2d103ed3b189
Author: Christian Lohmaier 
Date:   Thu Jan 11 19:23:23 2024 +0100

Branch libreoffice-24-2-0

This is 'libreoffice-24-2-0' - the stable branch for the 24.2.0 release.
Only very safe changes, reviewed by three people are allowed.

If you want to commit more complicated fix for the next 24.2.x release,
please use the 'libreoffice-24-2' branch.

If you want to build something cool, unstable, and risky, use master.

Change-Id: If993e085ce718dd4f58da36d0f4fe7e26fdfbbbd



dictionaries.git: Changes to 'libreoffice-24-2-0'

2024-01-11 Thread Christian Lohmaier (via logerrit)
New branch 'libreoffice-24-2-0' available with the following commits:
commit 3bc852c7bbf9817cff0a1d66287ac810c1f882fd
Author: Christian Lohmaier 
Date:   Thu Jan 11 19:23:23 2024 +0100

Branch libreoffice-24-2-0

This is 'libreoffice-24-2-0' - the stable branch for the 24.2.0 release.
Only very safe changes, reviewed by three people are allowed.

If you want to commit more complicated fix for the next 24.2.x release,
please use the 'libreoffice-24-2' branch.

If you want to build something cool, unstable, and risky, use master.

Change-Id: I0e895aed0c0e216657e65db4f172eafef814cd4e



[Bug 159134] Forms Listeners stop working after a different sheet is activated

2024-01-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159134

--- Comment #1 from elmau  ---
Confirm this bug in my system:

Version: 7.6.4.1 (X86_64) / LibreOffice Community
Build ID: 60(Build:1)
CPU threads: 16; OS: Linux 6.6; UI render: default; VCL: gtk3
Locale: es-MX (en_US.UTF-8); UI: en-US
7.6.4-2
Calc: threaded

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

core.git: Branch 'libreoffice-24-2' - translations

2024-01-11 Thread Christian Lohmaier (via logerrit)
 translations |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 2177c6faacfb50699754b6075c828631d0e7174a
Author: Christian Lohmaier 
AuthorDate: Thu Jan 11 19:18:25 2024 +0100
Commit: Gerrit Code Review 
CommitDate: Thu Jan 11 19:18:25 2024 +0100

Update git submodules

* Update translations from branch 'libreoffice-24-2'
  to ac309ebacc9349aeb060ee31ba399447963522c7
  - update translations for master/24.2.0 rc1

and force-fix errors using pocheck

Change-Id: I79b4bd9325c50387951258905a131141620d32e5
(cherry picked from commit 090a7639cc39ef9f36ed2ac8f58fd156ce755a4a)

diff --git a/translations b/translations
index 0aea9b958bf6..ac309ebacc93 16
--- a/translations
+++ b/translations
@@ -1 +1 @@
-Subproject commit 0aea9b958bf6ee2150619f770e2041ca74bbde00
+Subproject commit ac309ebacc9349aeb060ee31ba399447963522c7


translations.git: Branch 'libreoffice-24-2' - source/ab source/af source/ast source/ca source/cs source/cy source/de source/dsb source/es source/fr source/he source/hsb source/hu source/hy source/it s

2024-01-11 Thread Christian Lohmaier (via logerrit)
 source/ab/desktop/messages.po  |   
98 -
 source/ab/sw/messages.po   |  
100 -
 source/ab/wizards/messages.po  |   
 6 
 source/ab/xmlsecurity/messages.po  |   
12 
 source/af/scp2/source/ooo.po   |   
 8 
 source/ast/dbaccess/messages.po|   
26 
 source/ast/helpcontent2/source/text/shared/autopi.po   |   
 4 
 source/ast/helpcontent2/source/text/shared/guide.po|   
10 
 source/ast/sc/messages.po  |   
 4 
 source/ast/scp2/source/ooo.po  |   
10 
 source/ast/sd/messages.po  |   
 8 
 source/ca/cui/messages.po  |   
11 
 source/ca/helpcontent2/source/text/sbasic/guide.po |  
109 -
 source/ca/helpcontent2/source/text/shared/02.po|   
53 
 source/ca/helpcontent2/source/text/shared/06.po|   
 6 
 source/ca/helpcontent2/source/text/swriter.po  |   
16 
 source/ca/helpcontent2/source/text/swriter/menu.po |   
10 
 source/ca/officecfg/registry/data/org/openoffice/Office/UI.po  |   
 8 
 source/ca/sc/messages.po   |   
13 
 source/ca/scp2/source/ooo.po   |   
 8 
 source/cs/helpcontent2/source/text/shared/00.po|  
670 +-
 source/cs/scp2/source/ooo.po   |   
 8 
 source/cy/scp2/source/ooo.po   |   
10 
 source/de/officecfg/registry/data/org/openoffice/Office/UI.po  |   
 8 
 source/de/scp2/source/ooo.po   |   
10 
 source/dsb/scp2/source/ooo.po  |   
 8 
 source/es/dictionaries/en/dialog/registry/data/org/openoffice/Office.po|   
10 
 source/es/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po |   
10 
 source/es/dictionaries/pt_BR/dialog.po |   
 6 
 source/es/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po |   
10 
 source/es/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po |   
10 
 source/es/sc/messages.po   |   
 4 
 source/es/scp2/source/ooo.po   |   
 8 
 source/es/sd/messages.po   |   
 6 
 source/fr/filter/source/config/fragments/types.po  |   
 8 
 source/fr/sw/messages.po   |   
 8 
 source/he/cui/messages.po  |   
14 
 source/he/fpicker/messages.po  |   
 6 
 source/he/scp2/source/ooo.po   |   
 8 
 source/he/setup_native/source/mac.po   |   
 6 
 source/he/sfx2/messages.po |   
 8 
 source/he/svtools/messages.po  |   
10 
 source/he/uui/messages.po  |   
20 
 source/he/xmlsecurity/messages.po  |   
10 
 source/hsb/helpcontent2/source/text/shared/02.po   |   
 6 
 source/hsb/scp2/source/ooo.po  |   
 8 
 source/hu/extensions/messages.po   |   
 8 
 source/hu/filter/messages.po   |   
10 
 source/hu/filter/source/config/fragments/filters.po|   
 8 
 source/hu/fpicker/messages.po  |   
 8 
 source/hu/readlicense_oo/docs.po   |   
 8 
 source/hu/sc/messages.po   |   
46 
 source/hu/scp2/source/ooo.po   |   
10 
 source/hu/setup_native/source/mac.po   |   
10 
 source/hy/scp2/source/ooo.po   |   
 8 
 source/it/helpcontent2/source/text/shared.po   |   
23 
 source/it/helpcontent2/source/text/shared/00.po|  
127 -
 source/it/officecfg/registry/data/org/openoffice/Office/UI.po  |   
10 
 source/ja/filter/messages.po  

translations.git: source/ab source/af source/ast source/ca source/cs source/cy source/de source/dsb source/es source/fr source/he source/hsb source/hu source/hy source/it source/ja source/lt source/nb

2024-01-11 Thread Christian Lohmaier (via logerrit)
 source/ab/desktop/messages.po  |   
98 -
 source/ab/sw/messages.po   |  
100 -
 source/ab/wizards/messages.po  |   
 6 
 source/ab/xmlsecurity/messages.po  |   
12 
 source/af/scp2/source/ooo.po   |   
 8 
 source/ast/dbaccess/messages.po|   
26 
 source/ast/helpcontent2/source/text/shared/autopi.po   |   
 4 
 source/ast/helpcontent2/source/text/shared/guide.po|   
10 
 source/ast/sc/messages.po  |   
 4 
 source/ast/scp2/source/ooo.po  |   
10 
 source/ast/sd/messages.po  |   
 8 
 source/ca/cui/messages.po  |   
11 
 source/ca/helpcontent2/source/text/sbasic/guide.po |  
109 -
 source/ca/helpcontent2/source/text/shared/02.po|   
53 
 source/ca/helpcontent2/source/text/shared/06.po|   
 6 
 source/ca/helpcontent2/source/text/swriter.po  |   
16 
 source/ca/helpcontent2/source/text/swriter/menu.po |   
10 
 source/ca/officecfg/registry/data/org/openoffice/Office/UI.po  |   
 8 
 source/ca/sc/messages.po   |   
13 
 source/ca/scp2/source/ooo.po   |   
 8 
 source/cs/helpcontent2/source/text/shared/00.po|  
670 +-
 source/cs/scp2/source/ooo.po   |   
 8 
 source/cy/scp2/source/ooo.po   |   
10 
 source/de/officecfg/registry/data/org/openoffice/Office/UI.po  |   
 8 
 source/de/scp2/source/ooo.po   |   
10 
 source/dsb/scp2/source/ooo.po  |   
 8 
 source/es/dictionaries/en/dialog/registry/data/org/openoffice/Office.po|   
10 
 source/es/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po |   
10 
 source/es/dictionaries/pt_BR/dialog.po |   
 6 
 source/es/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po |   
10 
 source/es/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po |   
10 
 source/es/sc/messages.po   |   
 4 
 source/es/scp2/source/ooo.po   |   
 8 
 source/es/sd/messages.po   |   
 6 
 source/fr/filter/source/config/fragments/types.po  |   
 8 
 source/fr/sw/messages.po   |   
 8 
 source/he/cui/messages.po  |   
14 
 source/he/fpicker/messages.po  |   
 6 
 source/he/scp2/source/ooo.po   |   
 8 
 source/he/setup_native/source/mac.po   |   
 6 
 source/he/sfx2/messages.po |   
 8 
 source/he/svtools/messages.po  |   
10 
 source/he/uui/messages.po  |   
20 
 source/he/xmlsecurity/messages.po  |   
10 
 source/hsb/helpcontent2/source/text/shared/02.po   |   
 6 
 source/hsb/scp2/source/ooo.po  |   
 8 
 source/hu/extensions/messages.po   |   
 8 
 source/hu/filter/messages.po   |   
10 
 source/hu/filter/source/config/fragments/filters.po|   
 8 
 source/hu/fpicker/messages.po  |   
 8 
 source/hu/readlicense_oo/docs.po   |   
 8 
 source/hu/sc/messages.po   |   
46 
 source/hu/scp2/source/ooo.po   |   
10 
 source/hu/setup_native/source/mac.po   |   
10 
 source/hy/scp2/source/ooo.po   |   
 8 
 source/it/helpcontent2/source/text/shared.po   |   
23 
 source/it/helpcontent2/source/text/shared/00.po|  
127 -
 source/it/officecfg/registry/data/org/openoffice/Office/UI.po  |   
10 
 source/ja/filter/messages.po  

core.git: translations

2024-01-11 Thread Christian Lohmaier (via logerrit)
 translations |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 773aa743ccb73a8aee027e1e5c8d2b4a0d066019
Author: Christian Lohmaier 
AuthorDate: Thu Jan 11 19:17:26 2024 +0100
Commit: Gerrit Code Review 
CommitDate: Thu Jan 11 19:17:26 2024 +0100

Update git submodules

* Update translations from branch 'master'
  to 090a7639cc39ef9f36ed2ac8f58fd156ce755a4a
  - update translations for master/24.2.0 rc1

and force-fix errors using pocheck

Change-Id: I79b4bd9325c50387951258905a131141620d32e5

diff --git a/translations b/translations
index ed9d06780a19..090a7639cc39 16
--- a/translations
+++ b/translations
@@ -1 +1 @@
-Subproject commit ed9d06780a198a3532adfafadd64557a46f4da3f
+Subproject commit 090a7639cc39ef9f36ed2ac8f58fd156ce755a4a


[Bug 159138] Hyperlink dialog is too large when there is a long text in the clipboard

2024-01-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159138

Xisco Faulí  changed:

   What|Removed |Added

 CC||andreas.heini...@yahoo.de

--- Comment #1 from Xisco Faulí  ---
My take on it https://gerrit.libreoffice.org/c/core/+/161926

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

[Bug 159138] Hyperlink dialog is too large when there is a long text in the clipboard

2024-01-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159138

Xisco Faulí  changed:

   What|Removed |Added

 CC||xiscofa...@libreoffice.org
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=14
   ||6576

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

  1   2   3   4   >