[Libreoffice-commits] help.git: help3xsl/help2.js

2023-07-31 Thread Olivier Hallot (via logerrit)
 help3xsl/help2.js |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 865f97e76885c4f15494dc42fb29265a48a3e654
Author: Olivier Hallot 
AuthorDate: Mon Jul 31 18:36:04 2023 +0200
Commit: Olivier Hallot 
CommitDate: Mon Jul 31 22:56:48 2023 +0200

More fix in product name

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

diff --git a/help3xsl/help2.js b/help3xsl/help2.js
index 81f1795bef..8bf2810293 100644
--- a/help3xsl/help2.js
+++ b/help3xsl/help2.js
@@ -190,7 +190,7 @@ function setupModules(lang) {
 var modulesNav = document.getElementById('modules-nav');
 if (!modulesNav.classList.contains('loaded')) {
 var html =
-'LibreOffice' +
+'%PRODUCTNAME' +
 'Writer' +
 'Calc' +
 'Impress' +


[Libreoffice-commits] help.git: help3xsl/help2.js

2023-07-31 Thread Olivier Hallot (via logerrit)
 help3xsl/help2.js |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 9a42d2d1dc252113f48cd074d7e129adde37b859
Author: Olivier Hallot 
AuthorDate: Mon Jul 31 16:56:20 2023 +0200
Commit: Olivier Hallot 
CommitDate: Mon Jul 31 17:00:32 2023 +0200

Fix mistake in product name

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

diff --git a/help3xsl/help2.js b/help3xsl/help2.js
index 7e938b5404..81f1795bef 100644
--- a/help3xsl/help2.js
+++ b/help3xsl/help2.js
@@ -190,7 +190,7 @@ function setupModules(lang) {
 var modulesNav = document.getElementById('modules-nav');
 if (!modulesNav.classList.contains('loaded')) {
 var html =
-'LibreOfficeDev' +
+'LibreOffice' +
 'Writer' +
 'Calc' +
 'Impress' +


[Libreoffice-commits] help.git: help3xsl/help2.js

2023-07-31 Thread Olivier Hallot (via logerrit)
 help3xsl/help2.js |   35 +++
 1 file changed, 19 insertions(+), 16 deletions(-)

New commits:
commit 886cebba80267127e47de6f5dad57745cfe54752
Author: Olivier Hallot 
AuthorDate: Mon Jul 31 11:14:36 2023 -0300
Commit: Olivier Hallot 
CommitDate: Mon Jul 31 16:23:53 2023 +0200

tdf#144859 - fix switch javascript logic.

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

diff --git a/help3xsl/help2.js b/help3xsl/help2.js
index 728453134b..7e938b5404 100644
--- a/help3xsl/help2.js
+++ b/help3xsl/help2.js
@@ -8,19 +8,19 @@
  */
 // Used to set Application in caseinline=APP
 function setApplSpan(spanZ) {
-var module = getParameterByName("DbPAR");
+let module = getParameterByName("DbPAR");
 if (module === null) {
-module = "WRITER";
+module = "SHARED";
 }
-var y = spanZ.getElementsByTagName("SPAN");
-var n = y.length;
-var foundAppl = false;
+let y = spanZ.getElementsByTagName("SPAN");
+let n = y.length;
+let foundAppl = false;
 for (i = 0; i < n; i++) {
 if (y[i].getAttribute("id") === null){
 continue;
 }
 else if( y[i].getAttribute("id").startsWith(module)){
-y[i].removeAttribute("hidden");
+y[i].hidden = false;
 foundAppl=true;
 }
 }
@@ -29,8 +29,9 @@ function setApplSpan(spanZ) {
 continue;
 }
 else if( y[i].getAttribute("id").startsWith("default")){
+y[i].hidden = true;
 if(!foundAppl){
-y[i].removeAttribute("hidden");
+y[i].hidden = false;
 }
 }
 }
@@ -38,29 +39,31 @@ function setApplSpan(spanZ) {
 // Used to set system in case, caseinline=SYSTEM
 function setSystemSpan(spanZ) {
 // if no System in URL, get browser system
-var system = getParameterByName("System");
+let system = getParameterByName("System");
 if (system === null) {
 system = getSystem();
 }
-var y = spanZ.getElementsByTagName("SPAN");
-var n = y.length;
-var foundSystem = false;
-for (i = 0; i < n; i++) {
+let y = spanZ.getElementsByTagName("SPAN");
+let n = y.length;
+let foundSystem = false;
+
+for (let i = 0; i < n; i++) {
 if (y[i].getAttribute("id") === null){
 continue;
 }
 else if( y[i].getAttribute("id").startsWith(system)){
-y[i].removeAttribute("hidden");
+y[i].hidden = false;
 foundSystem=true;
 }
 }
-for (i = 0; i < n; i++) {
+for (let i = 0; i < n; i++) {
 if (y[i].getAttribute("id") === null){
 continue;
 }
 else if( y[i].getAttribute("id").startsWith("default")){
+y[i].hidden = true;
 if(!foundSystem){
-y[i].removeAttribute("hidden");
+y[i].hidden = false;
 }
 }
 }
@@ -187,7 +190,7 @@ function setupModules(lang) {
 var modulesNav = document.getElementById('modules-nav');
 if (!modulesNav.classList.contains('loaded')) {
 var html =
-'%PRODUCTNAME' +
+'LibreOfficeDev' +
 'Writer' +
 'Calc' +
 'Impress' +


[Libreoffice-commits] help.git: help3xsl/help2.js help3xsl/index2.html

2022-02-18 Thread Ilmari Lauhakangas (via logerrit)
 help3xsl/help2.js|2 +-
 help3xsl/index2.html |4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

New commits:
commit 3e86799f1b1e957e442a23022bc12cc25bb0c8a6
Author: Ilmari Lauhakangas 
AuthorDate: Thu Feb 17 17:53:49 2022 +0200
Commit: Olivier Hallot 
CommitDate: Fri Feb 18 11:51:23 2022 +0100

tdf#123318 Use SHARED as the default module instead of WRITER

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

diff --git a/help3xsl/help2.js b/help3xsl/help2.js
index a0cd88447..5b9b2a970 100644
--- a/help3xsl/help2.js
+++ b/help3xsl/help2.js
@@ -115,7 +115,7 @@ function fixURL(module, system) {
 if ((DisplayArea = document.getElementById("DisplayArea")) === null) 
return;
 var itemlink = DisplayArea.getElementsByTagName("a");
 var pSystem = (system === null) ? getSystem() : system;
-var pAppl = (module === null) ? "WRITER" : module;
+var pAppl = (module === null) ? "SHARED" : module;
 var n = itemlink.length;
 for (var i = 0; i < n; i++) {
 if (itemlink[i].getAttribute("class") != "objectfiles") {
diff --git a/help3xsl/index2.html b/help3xsl/index2.html
index f0585c8b8..c08335e08 100644
--- a/help3xsl/index2.html
+++ b/help3xsl/index2.html
@@ -38,7 +38,7 @@
 case "smath": 
{defaultFile='text/smath/main.html';module="MATH";break;}
 case "sdatabase": 
{defaultFile='text/sdatabase/main.html';module="BASE";break;}
 case "sbasic":
{defaultFile='text/sbasic/shared/main0601.html';module="BASIC";break;}
-default:  
{defaultFile='text/shared/05/new_help.html';module="WRITER";break;}
+default:  
{defaultFile='text/shared/05/new_help.html';module="SHARED";break;}
 }
 //Special case of application F1 or menu  Help -> LibreOffice Help
 if (target.indexOf('.uno:HelpIndex') != -1) {
@@ -66,7 +66,7 @@
 var system = 'WIN';
 if (navigator.userAgent.indexOf("Mac") != -1) system = 'MAC';
 if (navigator.userAgent.indexOf("Linux") != -1) system = 'UNIX';
-window.location.replace(existingLang(navigator.language) + 
'/text/shared/05/new_help.html?=WRITER=' + system);
+window.location.replace(existingLang(navigator.language) + 
'/text/shared/05/new_help.html?=SHARED=' + system);
 }
 });
 


[Libreoffice-commits] help.git: help3xsl/help2.js help3xsl/index2.html help3xsl/online_transform.xsl source/text

2020-06-16 Thread Olivier Hallot (via logerrit)
 help3xsl/help2.js  |5 -
 help3xsl/index2.html   |2 +-
 help3xsl/online_transform.xsl  |4 +++-
 source/text/shared/05/err_html.xhp |   17 +
 4 files changed, 21 insertions(+), 7 deletions(-)

New commits:
commit 456d9b054d29362667b0f3acc391c46293312751
Author: Olivier Hallot 
AuthorDate: Mon Jun 15 16:51:34 2020 -0300
Commit: Olivier Hallot 
CommitDate: Wed Jun 17 01:32:48 2020 +0200

Add better 404 error

Missing help pages or links with bad HID were redirected
to module entry page, masking the real issue in Help.

This patch activated the 404 page and add HID information
for debug and fix.

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

diff --git a/help3xsl/help2.js b/help3xsl/help2.js
index 95635c846..f40492afb 100644
--- a/help3xsl/help2.js
+++ b/help3xsl/help2.js
@@ -232,9 +232,12 @@ if (document.body.getElementsByTagName('meta')) {
 }
 
 var module = getParameterByName("DbPAR");
-var helpID = getParameterByName("HID");
 fixURL(module,system);
 moduleColor(module);
+var helpID = getParameterByName("HID");
+// only used in xhp pages with  tags
+var missingElement = document.getElementById("bm_HID2");
+if(missingElement != null){missingElement.innerHTML = helpID;}
 
 function debugInfo(dbg) {
 if (dbg == null) return;
diff --git a/help3xsl/index2.html b/help3xsl/index2.html
index b42007dd5..5e937f3e2 100644
--- a/help3xsl/index2.html
+++ b/help3xsl/index2.html
@@ -53,7 +53,7 @@
 }
 // rebuild URL
 if (file === undefined) {
-var newURL = lang + '/' + defaultFile + '?System=' + system + 
'=' + module;
+var newURL = lang + '/text/shared/05/err_html.html?System=' + 
system + '=' + module + '=' + bookmark ;
 } else {
 var indx = file.indexOf('#');
 var bm = file.substr(indx,file.length);
diff --git a/help3xsl/online_transform.xsl b/help3xsl/online_transform.xsl
index 6df80b540..21d37d1b4 100644
--- a/help3xsl/online_transform.xsl
+++ b/help3xsl/online_transform.xsl
@@ -812,7 +812,9 @@
 
 
 
-
+
+
+
 
 

[Libreoffice-commits] help.git: help3xsl/help2.js

2020-06-11 Thread Olivier Hallot (via logerrit)
 help3xsl/help2.js |9 ++---
 1 file changed, 6 insertions(+), 3 deletions(-)

New commits:
commit 7c55241a443bdbfaa46613ddd456edfeb9f5e1b3
Author: Olivier Hallot 
AuthorDate: Thu Jun 11 15:31:59 2020 -0300
Commit: Olivier Hallot 
CommitDate: Thu Jun 11 20:34:27 2020 +0200

Fix applicaiton color and h1 underline CSS

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

diff --git a/help3xsl/help2.js b/help3xsl/help2.js
index 382627d83..95635c846 100644
--- a/help3xsl/help2.js
+++ b/help3xsl/help2.js
@@ -73,8 +73,8 @@ function moduleColor (module) {
 case "WRITER" : {color="#0369A3"; break;}
 case "CALC"   : {color="#43C330"; break;}
 case "CHART"  : {color="darkcyan"; break;}
-case "DRAW"   : {color="#A33E03"; break;}
-case "IMPRESS": {color="#C99C00"; break;}
+case "IMPRESS": {color="#A33E03"; break;}
+case "DRAW"   : {color="#C99C00"; break;}
 case "BASE"   : {color="#8E03A3"; break;}
 case "BASIC"  : {color="black"; break;}
 case "MATH"   : {color="darkslategray"; break;}
@@ -88,7 +88,10 @@ function moduleColor (module) {
 for(i = 0; i < cols.length; i++) {cols[i].style.backgroundColor = color;};
 for (j of [1,2,3,4,5,6]) {
 var hh = document.getElementsByTagName("H" + j);
-for(i = 0; i < hh.length; i++) {hh[i].style.color = color;}
+for(i = 0; i < hh.length; i++) {
+hh[i].style.color = color;
+hh[i].style.borderBottomColor = color;
+}
 }
 }
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] help.git: help3xsl/help2.js

2019-11-08 Thread Olivier Hallot (via logerrit)
 help3xsl/help2.js |   21 +++--
 1 file changed, 11 insertions(+), 10 deletions(-)

New commits:
commit d034a998ce691d67778bc5f499c04de7544e0af9
Author: Olivier Hallot 
AuthorDate: Fri Nov 8 07:28:03 2019 -0300
Commit: Olivier Hallot 
CommitDate: Fri Nov 8 19:42:27 2019 +0100

Fix switch selection when embedded in other pages

Emebed exerpts with switch tags were unable to perform
the correct switch because of the use of the same id= in
several places in the page. The new logic fixes that.

Change-Id: I1e1084170e023c89f3c695c3d1c5a6c7deee7374
Reviewed-on: https://gerrit.libreoffice.org/82277
Tested-by: Jenkins
Reviewed-by: Olivier Hallot 

diff --git a/help3xsl/help2.js b/help3xsl/help2.js
index 54dd195ab..a1739eeaf 100644
--- a/help3xsl/help2.js
+++ b/help3xsl/help2.js
@@ -7,21 +7,21 @@
  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
  */
 // Used to set Application in caseinline=APP
-function setApplSpan(SpanID) {
+function setApplSpan(spanZ) {
 var module = getParameterByName("DbPAR");
 if (module === null) {
 module = "WRITER";
 }
-var y = document.getElementById(SpanID).getElementsByTagName("SPAN");
+var y = spanZ.getElementsByTagName("SPAN");
 var n = y.length;
-var foundSystem = false;
+var foundAppl = false;
 for (i = 0; i < n; i++) {
 if (y[i].getAttribute("id") === null){
 continue;
 }
 else if( y[i].getAttribute("id").startsWith(module)){
 y[i].removeAttribute("hidden");
-foundSystem=true;
+foundAppl=true;
 }
 }
 for (i = 0; i < n; i++) {
@@ -29,20 +29,20 @@ function setApplSpan(SpanID) {
 continue;
 }
 else if( y[i].getAttribute("id").startsWith("default")){
-if(!foundSystem){
+if(!foundAppl){
 y[i].removeAttribute("hidden");
 }
 }
 }
 }
 // Used to set system in case, caseinline=SYSTEM
-function setSystemSpan(spanID) {
-var system = getParameterByName("System");
+function setSystemSpan(spanZ) {
 // if no System in URL, get browser system
+var system = getParameterByName("System");
 if (system === null) {
 system = getSystem();
 }
-var y = document.getElementById(spanID).getElementsByTagName("SPAN");
+var y = spanZ.getElementsByTagName("SPAN");
 var n = y.length;
 var foundSystem = false;
 for (i = 0; i < n; i++) {
@@ -65,6 +65,7 @@ function setSystemSpan(spanID) {
 }
 }
 }
+
 // Find spans that need the switch treatment and give it to them
 var spans = document.querySelectorAll("[class^=switch]");
 var n = spans.length;
@@ -74,9 +75,9 @@ for (z = 0; z < n; z++) {
 continue;
 }
 else if (id.startsWith("swlnsys")) {
-setSystemSpan(id);
+setSystemSpan(spans[z]);
 } else {
-setApplSpan(id);
+setApplSpan(spans[z]);
 }
 }
 /* add = and = to the links in DisplayArea div */
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-commits] help.git: help3xsl/help2.js help3xsl/online_transform.xsl

2019-03-13 Thread Libreoffice Gerrit user
 help3xsl/help2.js |   16 
 help3xsl/online_transform.xsl |  145 +++---
 2 files changed, 82 insertions(+), 79 deletions(-)

New commits:
commit 3d0fcf7a37859e0e8b61d4a560042dfef6b3c99b
Author: Ilmari Lauhakangas 
AuthorDate: Tue Mar 12 23:36:46 2019 +0200
Commit: Olivier Hallot 
CommitDate: Wed Mar 13 20:11:32 2019 +0100

New approach to switch cases

My previous JS patch broke the sys and appl switch behaviour.

This patch removes the inline function calls from
online_transform.xsl. Instead, help2.js now finds the relevant spans
and calls the functions for them.

Change-Id: I45d5b75bdb70a7c18eaa0b215beb57e3e1b6719a
Reviewed-on: https://gerrit.libreoffice.org/69137
Tested-by: Jenkins
Reviewed-by: Olivier Hallot 

diff --git a/help3xsl/help2.js b/help3xsl/help2.js
index 5a48c394f..0003b72d8 100644
--- a/help3xsl/help2.js
+++ b/help3xsl/help2.js
@@ -65,6 +65,20 @@ function setSystemSpan(spanID) {
 }
 }
 }
+// Find spans that need the switch treatment and give it to them
+var spans = document.querySelectorAll("[class^=switch]");
+var n = spans.length;
+for (z = 0; z < n; z++) {
+var id = spans[z].getAttribute("id");
+if (id === null) {
+continue;
+}
+else if (id.startsWith("swlnsys")) {
+setSystemSpan(id);
+} else {
+setApplSpan(id);
+}
+}
 /* add = and = to the links in DisplayArea div */
 /* skip for object files */
 function fixURL(module, system) {
@@ -168,7 +182,7 @@ function setupLanguages(target, page) {
 }
 
 // Test, if we are online
-if (document.body.getElementsByTagName('meta')[0].getAttribute('itemprop') === 
'version') {
+if (document.body.getElementsByTagName('meta')) {
 var _paq = _paq || [];
 /* tracker methods like "setCustomDimension" should be called before 
"trackPageView" */
 _paq.push(['disableCookies']);
diff --git a/help3xsl/online_transform.xsl b/help3xsl/online_transform.xsl
index 33a9537d3..f3b71bac9 100644
--- a/help3xsl/online_transform.xsl
+++ b/help3xsl/online_transform.xsl
@@ -162,7 +162,8 @@
 
 http://schema.org/TechArticle;>
 
-
+
+
 
 
 
@@ -615,94 +616,82 @@
 
 
 
-
-
-
-
-
-
-
-
-
-
+
+
+
+
 
-
-
-
-
-
+
+
+
+
+
 
-
-
-
+
+
+
+Unsupported switch condition.
+
+
 
 
-
-
-
-
+
+
+
+
 
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+Unsupported switch condition.
+
+
 
 
 
 
-
-
-
-
+
+
+
+
 
-
-
-
-
-
+
+
+
+
+
 
-
-
-
-
-
-   
-
-
-
+
+
+
+Unsupported switch condition.
+
+
 
 
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+Unsupported switch condition.
+
+
 
 
 
@@ -1017,10 +1006,10 @@
 
 
 
-
+
 
 
-
+ 

[Libreoffice-commits] help.git: help3xsl/help2.js help3xsl/online_transform.xsl

2018-08-16 Thread Libreoffice Gerrit user
 help3xsl/help2.js |   17 +
 help3xsl/online_transform.xsl |   13 ++---
 2 files changed, 19 insertions(+), 11 deletions(-)

New commits:
commit f0e9b27d338a12bb5c7631f3c935ba9969bd7db3
Author: Jan Holesovsky 
AuthorDate: Thu Aug 16 09:31:10 2018 +0200
Commit: Olivier Hallot 
CommitDate: Thu Aug 16 14:42:52 2018 +0200

Generate the modules dropdown content on demand too.

Change-Id: Ibcbd8faac4f31d41398d8ae98314d83690136ab6
Reviewed-on: https://gerrit.libreoffice.org/59152
Reviewed-by: Miklos Vajna 
Tested-by: Miklos Vajna 
Reviewed-on: https://gerrit.libreoffice.org/59153
Tested-by: Jenkins
Reviewed-by: Olivier Hallot 

diff --git a/help3xsl/help2.js b/help3xsl/help2.js
index 501a754a9..505dcaf8e 100644
--- a/help3xsl/help2.js
+++ b/help3xsl/help2.js
@@ -138,6 +138,23 @@ function existingLang(lang) {
 return 'en-US';
 }
 
+function setupModules(target, lang) {
+var modulesNav = document.getElementById('modules-nav');
+if (!modulesNav.classList.contains('loaded')) {
+var html =
+'Writer' +
+'Calc' +
+'Impress' +
+'Draw' +
+'Base' +
+'Math' +
+'Chart' +
+'Basic';
+modulesNav.innerHTML = html;
+modulesNav.classList.add('loaded');
+}
+}
+
 function setupLanguages(target, page) {
 var langNav = document.getElementById('langs-nav');
 if (!langNav.classList.contains('loaded')) {
diff --git a/help3xsl/online_transform.xsl b/help3xsl/online_transform.xsl
index c98dff418..b3b5ce140 100644
--- a/help3xsl/online_transform.xsl
+++ b/help3xsl/online_transform.xsl
@@ -174,18 +174,9 @@
 
 
 
-
+
 
-
-Writer
-Calc
-Impress
-Draw
-Base
-Math
-Chart
-Basic
-
+   
 
 
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] help.git: help3xsl/help2.js help3xsl/online_transform.xsl

2018-08-16 Thread Libreoffice Gerrit user
 help3xsl/help2.js |   12 
 help3xsl/online_transform.xsl |   11 ++-
 2 files changed, 18 insertions(+), 5 deletions(-)

New commits:
commit 7f21cd8b7c0296b13472b42a73239691c98c92b6
Author: Jan Holesovsky 
AuthorDate: Wed Aug 15 10:27:02 2018 +0200
Commit: Olivier Hallot 
CommitDate: Thu Aug 16 13:51:41 2018 +0200

Don't embed links to all the languages into every page.

Change-Id: I31f140919a18db55ef5afab9f229afa7eed3e36c
Reviewed-on: https://gerrit.libreoffice.org/59149
Tested-by: Jenkins
Reviewed-by: Olivier Hallot 

diff --git a/help3xsl/help2.js b/help3xsl/help2.js
index aed610371..15a744ddb 100644
--- a/help3xsl/help2.js
+++ b/help3xsl/help2.js
@@ -137,4 +137,16 @@ function existingLang(lang) {
 
 return 'en-US';
 }
+
+function setupLanguages(target, page) {
+var langNav = document.getElementById('langs-nav');
+if (!langNav.classList.contains('loaded')) {
+var html = '';
+languagesSet.forEach(lang => {
+html += '' + lang + '';
+});
+langNav.innerHTML = html;
+langNav.classList.add('loaded');
+}
+}
 /* vim:set shiftwidth=4 softtabstop=4 expandtab cinoptions=b1,g0,N-s 
cinkeys+=0=break: */
diff --git a/help3xsl/online_transform.xsl b/help3xsl/online_transform.xsl
index ec1d30c31..f9541ec72 100644
--- a/help3xsl/online_transform.xsl
+++ b/help3xsl/online_transform.xsl
@@ -150,7 +150,8 @@
 
 
 
-   
+
+
 
 
 
@@ -187,14 +188,14 @@
 
 
 
-
+
 
-
-
+
+
 
 
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits