[Libreoffice-commits] help.git: CustomTarget_html.mk help3xsl/default.css help3xsl/online_transform.xsl
Ilmari Lauhakangas
ilmari.lauhakangas at libreoffice.org
Thu Jan 25 11:54:15 UTC 2018
CustomTarget_html.mk | 2 +-
help3xsl/default.css | 18 +++++++++---------
help3xsl/online_transform.xsl | 2 +-
3 files changed, 11 insertions(+), 11 deletions(-)
New commits:
commit 67a993c05d19976f5ed347b16584d29d6866a870
Author: Ilmari Lauhakangas <ilmari.lauhakangas at libreoffice.org>
Date: Wed Jan 24 15:27:16 2018 +0200
Module names must stay uppercase due to DbPAR=MODULE
Change-Id: I10cea1b204b20d482abec6a8f66d5cfee6cf6dfe
Reviewed-on: https://gerrit.libreoffice.org/48509
Reviewed-by: Olivier Hallot <olivier.hallot at libreoffice.org>
Tested-by: Olivier Hallot <olivier.hallot at libreoffice.org>
diff --git a/CustomTarget_html.mk b/CustomTarget_html.mk
index 0c71db255..479eab889 100644
--- a/CustomTarget_html.mk
+++ b/CustomTarget_html.mk
@@ -12,7 +12,7 @@ $(eval $(call gb_CustomTarget_CustomTarget,helpcontent2/help3xsl))
# HACK!!
html_TREE_MODULES := sbasic scalc schart shared simpress smath swriter
html_TEXT_MODULES := $(html_TREE_MODULES) sdatabase sdraw
-html_BMARK_MODULES := swriter:writer scalc:calc simpress:impress sdraw:draw shared/explorer/database:base smath:math schart:chart sbasic:basic shared:shared
+html_BMARK_MODULES := swriter:WRITER scalc:CALC simpress:IMPRESS sdraw:DRAW shared/explorer/database:BASE smath:MATH schart:CHART sbasic:BASIC shared:SHARED
$(eval $(call gb_CustomTarget_register_targets,helpcontent2/help3xsl,\
hid2file.js \
diff --git a/help3xsl/default.css b/help3xsl/default.css
index 70af31efb..9ddb07c36 100644
--- a/help3xsl/default.css
+++ b/help3xsl/default.css
@@ -369,63 +369,63 @@ aside input[type=checkbox]:checked ~ .contents-treeview {
font-weight: bold;
color: #18A303;
}
-#writer::before {
+#WRITER::before {
content: "WRITER";
display: block;
font-size: 22px;
font-weight: bold;
color: #18A303;
}
-#calc::before {
+#CALC::before {
content: "CALC";
display: block;
font-size: 22px;
font-weight: bold;
color: #18A303;
}
-#impress::before {
+#IMPRESS::before {
content: "IMPRESS";
display: block;
font-size: 22px;
font-weight: bold;
color: #18A303;
}
-#draw::before {
+#DRAW::before {
content: "DRAW";
display: block;
font-size: 22px;
font-weight: bold;
color: #18A303;
}
-#base::before {
+#BASE::before {
content: "BASE";
display: block;
font-size: 22px;
font-weight: bold;
color: #18A303;
}
-#math::before {
+#MATH::before {
content: "MATH";
display: block;
font-size: 22px;
font-weight: bold;
color: #18A303;
}
-#chart::before {
+#CHART::before {
content: "CHART";
display: block;
font-size: 22px;
font-weight: bold;
color: #18A303;
}
-#basic::before {
+#BASIC::before {
content: "BASIC";
display: block;
font-size: 22px;
font-weight: bold;
color: #18A303;
}
-#shared::before {
+#SHARED::before {
content: "GLOBAL";
display: block;
font-size: 22px;
diff --git a/help3xsl/online_transform.xsl b/help3xsl/online_transform.xsl
index c1764e573..acdc6febb 100644
--- a/help3xsl/online_transform.xsl
+++ b/help3xsl/online_transform.xsl
@@ -332,7 +332,7 @@
}
});
}
- var modules = [ 'calc', 'writer', 'impress', 'draw', 'base', 'math', 'chart', 'basic', 'shared' ];
+ var modules = [ 'CALC', 'WRITER', 'IMPRESS', 'DRAW', 'BASE', 'MATH', 'CHART', 'BASIC', 'SHARED' ];
// options for List.js http://listjs.com/
var options = {
valueNames: modules,
More information about the Libreoffice-commits
mailing list