1 | # $Id: Config.kmk 87079 2020-12-09 20:40:03Z vboxsync $
|
---|
2 | ## @file
|
---|
3 | # kBuild Configuration file for the manual.
|
---|
4 | #
|
---|
5 |
|
---|
6 | #
|
---|
7 | # Copyright (C) 2010-2020 Oracle Corporation
|
---|
8 | #
|
---|
9 | # This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
10 | # available from http://www.virtualbox.org. This file is free software;
|
---|
11 | # you can redistribute it and/or modify it under the terms of the GNU
|
---|
12 | # General Public License (GPL) as published by the Free Software
|
---|
13 | # Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
14 | # VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
15 | # hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 | #
|
---|
17 |
|
---|
18 | ifndef VBOX_DOC_MANUAL_CONFIG_KMK_INCLUDED
|
---|
19 | VBOX_DOC_MANUAL_CONFIG_KMK_INCLUDED = 1
|
---|
20 |
|
---|
21 | # Include the top-level configure file.
|
---|
22 | ifndef VBOX_ROOT_CONFIG_KMK_INCLUDED
|
---|
23 | include $(PATH_ROOT)/Config.kmk
|
---|
24 | endif
|
---|
25 |
|
---|
26 |
|
---|
27 | #
|
---|
28 | # Globals.
|
---|
29 | #
|
---|
30 |
|
---|
31 | # Source location.
|
---|
32 | VBOX_PATH_MANUAL_SRC := $(PATH_ROOT)/doc/manual
|
---|
33 | # Output location.
|
---|
34 | VBOX_PATH_MANUAL_OUTBASE := $(PATH_OBJ)/manual
|
---|
35 |
|
---|
36 | ## List of refentry files (manpages).
|
---|
37 | VBOX_MANUAL_XML_REFENTRY_FILES := \
|
---|
38 | man_VBoxManage-snapshot.xml \
|
---|
39 | man_VBoxManage-clonevm.xml \
|
---|
40 | man_VBoxManage-mediumio.xml \
|
---|
41 | man_VBoxManage-sharedfolder.xml \
|
---|
42 | man_VBoxManage-dhcpserver.xml \
|
---|
43 | man_VBoxManage-debugvm.xml \
|
---|
44 | man_VBoxManage-extpack.xml \
|
---|
45 | man_VBoxManage-unattended.xml \
|
---|
46 | man_VBoxManage-cloud.xml \
|
---|
47 | man_VBoxManage-cloudprofile.xml \
|
---|
48 | man_VBoxManage-signova.xml \
|
---|
49 | man_VBoxManage-updatecheck.xml
|
---|
50 |
|
---|
51 | ## List of user manual XML files.
|
---|
52 | VBOX_MANUAL_XML_FILES = \
|
---|
53 | UserManual.xml \
|
---|
54 | user_Preface.xml \
|
---|
55 | user_Introduction.xml \
|
---|
56 | user_Installation.xml \
|
---|
57 | user_BasicConcepts.xml \
|
---|
58 | user_GuestAdditions.xml \
|
---|
59 | user_Storage.xml \
|
---|
60 | user_Networking.xml \
|
---|
61 | user_Frontends.xml \
|
---|
62 | user_VBoxManage.xml \
|
---|
63 | user_AdvancedTopics.xml \
|
---|
64 | user_Technical.xml \
|
---|
65 | user_VirtualBoxAPI.xml \
|
---|
66 | user_Troubleshooting.xml \
|
---|
67 | user_Security.xml \
|
---|
68 | user_KnownIssues.xml \
|
---|
69 | user_ChangeLog.xml \
|
---|
70 | user_ThirdParty.xml \
|
---|
71 | user_PrivacyPolicy.xml \
|
---|
72 | user_Glossary.xml \
|
---|
73 | oracle-accessibility-en.xml \
|
---|
74 | oracle-diversity.xml \
|
---|
75 | oracle-support-en.xml
|
---|
76 |
|
---|
77 | ## List of user manual XML files common for all languages.
|
---|
78 | VBOX_MANUAL_XML_FILES_COMMON = \
|
---|
79 | $(VBOX_PATH_MANUAL_SRC)/user_ChangeLogImpl.xml
|
---|
80 |
|
---|
81 |
|
---|
82 | # Tool locations.
|
---|
83 | ifndef VBOX_OSE
|
---|
84 | # use docbook from our tools directory
|
---|
85 | VBOX_PATH_DOCBOOK ?= $(KBUILD_DEVTOOLS)/common/DocBook/v1.69.1
|
---|
86 | VBOX_PATH_DOCBOOK_DTD ?= $(KBUILD_DEVTOOLS)/common/docbook-xml/v4.5
|
---|
87 | else
|
---|
88 | # use docbook of the build host
|
---|
89 | VBOX_PATH_DOCBOOK ?= /usr/share/xml/docbook/stylesheet/docbook-xsl
|
---|
90 | VBOX_PATH_DOCBOOK_DTD ?= /usr/share/xml/docbook/schema/dtd/4.5
|
---|
91 | endif
|
---|
92 | VBOX_XML_CATALOG ?= $(VBOX_PATH_MANUAL_OUTBASE)/catalog
|
---|
93 | VBOX_XML_CATALOG_DOCBOOK ?= $(VBOX_PATH_MANUAL_OUTBASE)/docbook
|
---|
94 | VBOX_XML_CATALOG_MANUAL ?= $(VBOX_PATH_MANUAL_OUTBASE)/manual
|
---|
95 | VBOX_XML_ENTITIES ?= $(VBOX_PATH_MANUAL_OUTBASE)/all-entities.ent
|
---|
96 |
|
---|
97 | # xsltproc with the catalog trick if applicable (set XML_DEBUG_CATALOG to
|
---|
98 | # non-zero value to debug file/uri resolution through the catalogs, using
|
---|
99 | # one of them is enough, they show the same information).
|
---|
100 | ifdef VBOX_XML_CATALOG
|
---|
101 | VBOX_XSLTPROC_WITH_CAT = $(REDIRECT) -E "XML_CATALOG_FILES=$(VBOX_XML_CATALOG)" -E "XML_DEBUG_CATALOG=" $1 -- \
|
---|
102 | $(VBOX_XSLTPROC) --nonet --xinclude $(VBOX_XSLTPROC_OPTS) --path "$(VBOX_PATH_MANUAL_OUTBASE)"
|
---|
103 | VBOX_XMLLINT_WITH_CAT = $(REDIRECT) -E "XML_CATALOG_FILES=$(VBOX_XML_CATALOG)" -E "XML_DEBUG_CATALOG=" -- \
|
---|
104 | $(VBOX_XMLLINT) --nonet --xinclude --noout $(VBOX_XMLLINT_OPTS) --path "$(VBOX_PATH_MANUAL_OUTBASE)"
|
---|
105 | else
|
---|
106 | VBOX_XSLTPROC_WITH_CAT = $(if $(1), $(REDIRECT) $1 --,) $(VBOX_XSLTPROC) --nonet --xinclude $(VBOX_XSLTPROC_OPTS) \
|
---|
107 | --path "$(VBOX_PATH_MANUAL_OUTBASE)"
|
---|
108 | VBOX_XMLLINT_WITH_CAT = $(VBOX_XMLLINT) --nonet --xinclude --noout $(VBOX_XMLLINT_OPTS) --path "$(VBOX_PATH_MANUAL_OUTBASE)"
|
---|
109 | endif
|
---|
110 |
|
---|
111 |
|
---|
112 | # Location of the generate stylesheet for transformating xref elements into
|
---|
113 | # name user manual sections.
|
---|
114 | VBOX_XML_XREF_TO_TEXT = $(VBOX_PATH_MANUAL_OUTBASE)/xref-to-text.xsl
|
---|
115 |
|
---|
116 | ##
|
---|
117 | # Emits rules for preprocessing refentry sources (applying remarks element),
|
---|
118 | # and for producing the actual man pages.
|
---|
119 | #
|
---|
120 | # $(evalcall2 def_vbox_refentry_to_manpage)
|
---|
121 | # @param 1 The output directory.
|
---|
122 | # @param 2 The XML file name (no path).
|
---|
123 | # @param 3 The XML file with full path.
|
---|
124 | # @param 4 Non-empty if xrefs to replace.
|
---|
125 | define def_vbox_refentry_preprocess_for_manpage
|
---|
126 | $(1)/$(2): \
|
---|
127 | $(3) \
|
---|
128 | $$(VBOX_PATH_MANUAL_SRC)/docbook-refentry-to-manpage-preprocessing.xsl \
|
---|
129 | $(if $(4),$$(VBOX_XML_XREF_TO_TEXT),) \
|
---|
130 | $$(VBOX_XML_CATALOG) $$(VBOX_XML_CATALOG_DOCBOOK) $$(VBOX_XML_CATALOG_MANUAL) \
|
---|
131 | $$(VBOX_VERSION_STAMP) | $$$$(dir $$$$@)
|
---|
132 | $$(call MSG_TOOL,xsltproc $$(notdir $$(firstword $$(filter %.xsl,$$^))),,$$(firstword $$(filter %.xml,$$^)),$$@)
|
---|
133 | $$(QUIET)$$(RM) -f "$$@"
|
---|
134 | $$(QUIET)$$(call VBOX_XSLTPROC_WITH_CAT) --output $$@ \
|
---|
135 | "$$(VBOX_PATH_MANUAL_SRC)/docbook-refentry-to-manpage-preprocessing.xsl" $$<
|
---|
136 | ifneq ($(4),)
|
---|
137 | $$(QUIET)$$(call VBOX_XSLTPROC_WITH_CAT) --output $$@.tmp $$(VBOX_XML_XREF_TO_TEXT) $$@
|
---|
138 | $$(QUIET)$$(MV) -f -- "$$@.tmp" "$$@"
|
---|
139 | endif
|
---|
140 | if defined(VBOX_HAVE_XMLLINT) && "$(USER)" == "bird" # Effing stuff happends on build servers, probably kmk related...
|
---|
141 | $$(VBOX_XMLLINT_WITH_CAT) --dtdvalid $$(VBOX_PATH_DOCBOOK_DTD)/docbookx.dtd $$@
|
---|
142 | endif
|
---|
143 | endef
|
---|
144 |
|
---|
145 | ##
|
---|
146 | # Generate a single header file containing everything (no C file).
|
---|
147 | #
|
---|
148 | # @param 1 Destination file.
|
---|
149 | # @param 2 Full source file path.
|
---|
150 | # @param 3 Help infix.
|
---|
151 | define def_vbox_single_refentry_to_h
|
---|
152 | $(1).ts +| $(1): \
|
---|
153 | $$(VBOX_DOCBOOK_REFENTRY_TO_C_HELP) \
|
---|
154 | $$(VBOX_DOCBOOK_REFENTRY_TO_H_HELP) \
|
---|
155 | $(2) \
|
---|
156 | $$(VBOX_XML_CATALOG) $$(VBOX_XML_CATALOG_DOCBOOK) $$(VBOX_XML_CATALOG_MANUAL) $(MAKEFILE) | $$$$(dir $$$$@)
|
---|
157 | $$(call MSG_TOOL,xsltproc $$(notdir $$(firstword $$(filter %.xsl,$$^))),,$$(filter %.xml,$$^),$$(patsubst %.ts,%,$$@))
|
---|
158 | $$(QUIET)$$(APPEND) -tn "$$@" \
|
---|
159 | '/* Autogenerated by $$(notdir $$(filter %.xsl,$$^)), do not edit! */' \
|
---|
160 | '' \
|
---|
161 | '#include <iprt/message.h>' \
|
---|
162 | '' \
|
---|
163 | 'typedef enum HELP_CMD_$(3)' \
|
---|
164 | '{' \
|
---|
165 | ' HELP_CMD_INVALID = 0,'
|
---|
166 | $$(QUIET)$$(call VBOX_XSLTPROC_WITH_CAT, -a+to "$$@") \
|
---|
167 | --stringparam 'g_sMode' 'cmd' $$(VBOX_DOCBOOK_REFENTRY_TO_H_HELP) $(2)
|
---|
168 | $$(QUIET)$$(APPEND) -n "$$@" \
|
---|
169 | ' HELP_CMD_END' \
|
---|
170 | '} HELP_CMD_VBOXMANAGE;' \
|
---|
171 | ''
|
---|
172 | $$(NLTAB)$$(QUIET)$$(call VBOX_XSLTPROC_WITH_CAT, -a+to "$$@") \
|
---|
173 | --stringparam 'g_sMode' 'subcmd' $$(VBOX_DOCBOOK_REFENTRY_TO_H_HELP) $(2)
|
---|
174 | $$(QUIET)$$(APPEND) -n "$$@" \
|
---|
175 | ''
|
---|
176 | $$(NLTAB)$$(QUIET)$$(call VBOX_XSLTPROC_WITH_CAT, -a+to "$$@") $$(VBOX_DOCBOOK_REFENTRY_TO_C_HELP) $(2)
|
---|
177 | $$(QUIET)$$(APPEND) -n "$$@" \
|
---|
178 | '' \
|
---|
179 | '/* end of file */'
|
---|
180 | $$(QUIET)$$(CP) --changed -- "$$@" "$$(patsubst %.ts,%,$$@)"
|
---|
181 | endef
|
---|
182 |
|
---|
183 |
|
---|
184 | #
|
---|
185 | # Make sure we've got a rule to make the output directory.
|
---|
186 | #
|
---|
187 | BLDDIRS += $(VBOX_PATH_MANUAL_OUTBASE)
|
---|
188 |
|
---|
189 |
|
---|
190 | ifdef VBOX_XML_CATALOG
|
---|
191 | # Trickery for making sure that the file:/// URLs end up with exactly 3
|
---|
192 | # slashes, both on Unixy OSes (where the absolute path contributes one more,
|
---|
193 | # and some very picky xsltproc variants are floating around which do not work
|
---|
194 | # quite correctly with file:////, doing incorrect filename transformations)
|
---|
195 | # and on Windows (where the absolute path starts with a drive letter).
|
---|
196 | VBOX_FILE_URL_MAYBE_SLASH = $(if $(eq $(KBUILD_HOST),win),/,)
|
---|
197 | #
|
---|
198 | # To avoid network I/O for fetching DTDs, we generate catalogs mapping the public
|
---|
199 | # entity IDs to local files. (Obviously, only done when we have local files.)
|
---|
200 | #
|
---|
201 | # Create a catalog file for xsltproc that points to docbook catalog.
|
---|
202 | $(VBOX_XML_CATALOG): $(VBOX_PATH_MANUAL_SRC)/Config.kmk | $$(dir $$@)
|
---|
203 | $(call MSG_L1,Creating catalog $@)
|
---|
204 | $(QUIET)$(APPEND) -tn "$@" \
|
---|
205 | '<?xml version="1.0"?>' \
|
---|
206 | '<!DOCTYPE catalog PUBLIC "-//OASIS//DTD Entity Resolution XML Catalog V1.0//EN" "http://www.oasis-open.org/committees/entity/release/1.0/catalog.dtd">' \
|
---|
207 | '<catalog xmlns="urn:oasis:names:tc:entity:xmlns:xml:catalog">' \
|
---|
208 | ' <delegatePublic publicIdStartString="-//OASIS/ENTITIES DocBook XML" catalog="file://$(VBOX_FILE_URL_MAYBE_SLASH)$(VBOX_XML_CATALOG_DOCBOOK)"/>' \
|
---|
209 | ' <delegatePublic publicIdStartString="-//OASIS/DTD DocBook XML" catalog="file://$(VBOX_FILE_URL_MAYBE_SLASH)$(VBOX_XML_CATALOG_DOCBOOK)"/>' \
|
---|
210 | ' <delegateSystem systemIdStartString="http://www.oasis-open.org/docbook/" catalog="file://$(VBOX_FILE_URL_MAYBE_SLASH)$(VBOX_XML_CATALOG_DOCBOOK)"/>' \
|
---|
211 | ' <delegateSystem systemIdStartString="http://docbook.org/" catalog="file://$(VBOX_FILE_URL_MAYBE_SLASH)$(VBOX_XML_CATALOG_DOCBOOK)"/>' \
|
---|
212 | ' <delegateURI uriStartString="http://www.oasis-open.org/docbook/" catalog="file://$(VBOX_FILE_URL_MAYBE_SLASH)$(VBOX_XML_CATALOG_DOCBOOK)"/>' \
|
---|
213 | ' <delegateURI uriStartString="http://docbook.org/" catalog="file://$(VBOX_FILE_URL_MAYBE_SLASH)$(VBOX_XML_CATALOG_DOCBOOK)"/>' \
|
---|
214 | ' <delegateSystem systemIdStartString="$(VBOX_PATH_MANUAL_SRC)" catalog="file://$(VBOX_FILE_URL_MAYBE_SLASH)$(VBOX_XML_CATALOG_MANUAL)"/>' \
|
---|
215 | ' <delegateSystem systemIdStartString="$(VBOX_PATH_MANUAL_OUTBASE)" catalog="file://$(VBOX_FILE_URL_MAYBE_SLASH)$(VBOX_XML_CATALOG_MANUAL)"/>' \
|
---|
216 | ' <delegateURI uriStartString="$(VBOX_PATH_MANUAL_SRC)" catalog="file://$(VBOX_FILE_URL_MAYBE_SLASH)$(VBOX_XML_CATALOG_MANUAL)"/>' \
|
---|
217 | ' <delegateURI uriStartString="$(VBOX_PATH_MANUAL_OUTBASE)" catalog="file://$(VBOX_FILE_URL_MAYBE_SLASH)$(VBOX_XML_CATALOG_MANUAL)"/>' \
|
---|
218 | ' <delegateURI uriStartString="file://$(VBOX_FILE_URL_MAYBE_SLASH)$(VBOX_PATH_MANUAL_SRC)" catalog="file://$(VBOX_FILE_URL_MAYBE_SLASH)$(VBOX_XML_CATALOG_MANUAL)"/>' \
|
---|
219 | ' <delegateURI uriStartString="file://$(VBOX_FILE_URL_MAYBE_SLASH)$(VBOX_PATH_MANUAL_OUTBASE)" catalog="file://$(VBOX_FILE_URL_MAYBE_SLASH)$(VBOX_XML_CATALOG_MANUAL)"/>' \
|
---|
220 | '</catalog>'
|
---|
221 |
|
---|
222 | # Create a docbook catalog file for xsltproc that points to the local docbook files.
|
---|
223 | $(VBOX_XML_CATALOG_DOCBOOK): $(VBOX_PATH_MANUAL_SRC)/Config.kmk | $$(dir $$@)
|
---|
224 | $(call MSG_L1,Creating catalog $@)
|
---|
225 | $(QUIET)$(APPEND) -tn "$@" \
|
---|
226 | '<?xml version="1.0"?>' \
|
---|
227 | '<!DOCTYPE catalog PUBLIC "-//OASIS//DTD Entity Resolution XML Catalog V1.0//EN" "http://www.oasis-open.org/committees/entity/release/1.0/catalog.dtd">' \
|
---|
228 | '<catalog xmlns="urn:oasis:names:tc:entity:xmlns:xml:catalog">' \
|
---|
229 | ' <public publicId="-//OASIS//ELEMENTS DocBook XML Information Pool V4.5//EN" uri="file://$(VBOX_FILE_URL_MAYBE_SLASH)$(VBOX_PATH_DOCBOOK_DTD)/dbpoolx.mod"/>' \
|
---|
230 | ' <public publicId="-//OASIS//DTD DocBook XML V4.5//EN" uri="file://$(VBOX_FILE_URL_MAYBE_SLASH)$(VBOX_PATH_DOCBOOK_DTD)/docbookx.dtd"/>' \
|
---|
231 | ' <public publicId="-//OASIS//ENTITIES DocBook XML Character Entities V4.5//EN" uri="file://$(VBOX_FILE_URL_MAYBE_SLASH)$(VBOX_PATH_DOCBOOK_DTD)/dbcentx.mod"/>' \
|
---|
232 | ' <public publicId="-//OASIS//ENTITIES DocBook XML Notations V4.5//EN" uri="file://$(VBOX_FILE_URL_MAYBE_SLASH)$(VBOX_PATH_DOCBOOK_DTD)/dbnotnx.mod"/>' \
|
---|
233 | ' <public publicId="-//OASIS//ENTITIES DocBook XML Additional General Entities V4.5//EN" uri="file://$(VBOX_FILE_URL_MAYBE_SLASH)$(VBOX_PATH_DOCBOOK_DTD)/dbgenent.mod"/>' \
|
---|
234 | ' <public publicId="-//OASIS//ELEMENTS DocBook XML Document Hierarchy V4.5//EN" uri="file://$(VBOX_FILE_URL_MAYBE_SLASH)$(VBOX_PATH_DOCBOOK_DTD)/dbhierx.mod"/>' \
|
---|
235 | ' <public publicId="-//OASIS//DTD XML Exchange Table Model 19990315//EN" uri="file://$(VBOX_FILE_URL_MAYBE_SLASH)$(VBOX_PATH_DOCBOOK_DTD)/soextblx.dtd"/>' \
|
---|
236 | ' <public publicId="-//OASIS//DTD DocBook XML CALS Table Model V4.5//EN" uri="file://$(VBOX_FILE_URL_MAYBE_SLASH)$(VBOX_PATH_DOCBOOK_DTD)/calstblx.dtd"/>' \
|
---|
237 | ' <rewriteSystem systemIdStartString="http://www.oasis-open.org/docbook/xml/4.5" rewritePrefix="file://$(VBOX_FILE_URL_MAYBE_SLASH)$(VBOX_PATH_DOCBOOK_DTD)"/>' \
|
---|
238 | ' <rewriteSystem systemIdStartString="http://docbook.org/xml/4.5" rewritePrefix="file://$(VBOX_FILE_URL_MAYBE_SLASH)$(VBOX_PATH_DOCBOOK_DTD)"/>' \
|
---|
239 | ' <rewriteURI uriStartString="http://www.oasis-open.org/docbook/xml/4.5" rewritePrefix="file://$(VBOX_FILE_URL_MAYBE_SLASH)$(VBOX_PATH_DOCBOOK_DTD)"/>' \
|
---|
240 | ' <rewriteURI uriStartString="http://docbook.org/xml/4.5" rewritePrefix="file://$(VBOX_FILE_URL_MAYBE_SLASH)$(VBOX_PATH_DOCBOOK_DTD)"/>' \
|
---|
241 | ' <public publicId="ISO 8879:1986//ENTITIES Added Math Symbols: Arrow Relations//EN" uri="file://$(VBOX_FILE_URL_MAYBE_SLASH)$(VBOX_PATH_DOCBOOK_DTD)/ent/iso-amsa.ent"/>' \
|
---|
242 | ' <public publicId="ISO 8879:1986//ENTITIES Added Math Symbols: Binary Operators//EN" uri="file://$(VBOX_FILE_URL_MAYBE_SLASH)$(VBOX_PATH_DOCBOOK_DTD)/ent/iso-amsb.ent"/>' \
|
---|
243 | ' <public publicId="ISO 8879:1986//ENTITIES Added Math Symbols: Delimiters//EN" uri="file://$(VBOX_FILE_URL_MAYBE_SLASH)$(VBOX_PATH_DOCBOOK_DTD)/ent/iso-amsc.ent"/>' \
|
---|
244 | ' <public publicId="ISO 8879:1986//ENTITIES Added Math Symbols: Negated Relations//EN" uri="file://$(VBOX_FILE_URL_MAYBE_SLASH)$(VBOX_PATH_DOCBOOK_DTD)/ent/iso-amsn.ent"/>' \
|
---|
245 | ' <public publicId="ISO 8879:1986//ENTITIES Added Math Symbols: Ordinary//EN" uri="file://$(VBOX_FILE_URL_MAYBE_SLASH)$(VBOX_PATH_DOCBOOK_DTD)/ent/iso-amso.ent"/>' \
|
---|
246 | ' <public publicId="ISO 8879:1986//ENTITIES Added Math Symbols: Relations//EN" uri="file://$(VBOX_FILE_URL_MAYBE_SLASH)$(VBOX_PATH_DOCBOOK_DTD)/ent/iso-amsr.ent"/>' \
|
---|
247 | ' <public publicId="ISO 8879:1986//ENTITIES Box and Line Drawing//EN" uri="file://$(VBOX_FILE_URL_MAYBE_SLASH)$(VBOX_PATH_DOCBOOK_DTD)/ent/iso-box.ent"/>' \
|
---|
248 | ' <public publicId="ISO 8879:1986//ENTITIES Russian Cyrillic//EN" uri="file://$(VBOX_FILE_URL_MAYBE_SLASH)$(VBOX_PATH_DOCBOOK_DTD)/ent/iso-cyr1.ent"/>' \
|
---|
249 | ' <public publicId="ISO 8879:1986//ENTITIES Non-Russian Cyrillic//EN" uri="file://$(VBOX_FILE_URL_MAYBE_SLASH)$(VBOX_PATH_DOCBOOK_DTD)/ent/iso-cyr2.ent"/>' \
|
---|
250 | ' <public publicId="ISO 8879:1986//ENTITIES Diacritical Marks//EN" uri="file://$(VBOX_FILE_URL_MAYBE_SLASH)$(VBOX_PATH_DOCBOOK_DTD)/ent/iso-dia.ent"/>' \
|
---|
251 | ' <public publicId="ISO 8879:1986//ENTITIES Greek Letters//EN" uri="file://$(VBOX_FILE_URL_MAYBE_SLASH)$(VBOX_PATH_DOCBOOK_DTD)/ent/iso-grk1.ent"/>' \
|
---|
252 | ' <public publicId="ISO 8879:1986//ENTITIES Monotoniko Greek//EN" uri="file://$(VBOX_FILE_URL_MAYBE_SLASH)$(VBOX_PATH_DOCBOOK_DTD)/ent/iso-grk2.ent"/>' \
|
---|
253 | ' <public publicId="ISO 8879:1986//ENTITIES Greek Symbols//EN" uri="file://$(VBOX_FILE_URL_MAYBE_SLASH)$(VBOX_PATH_DOCBOOK_DTD)/ent/iso-grk3.ent"/>' \
|
---|
254 | ' <public publicId="ISO 8879:1986//ENTITIES Alternative Greek Symbols//EN" uri="file://$(VBOX_FILE_URL_MAYBE_SLASH)$(VBOX_PATH_DOCBOOK_DTD)/ent/iso-grk4.ent"/>' \
|
---|
255 | ' <public publicId="ISO 8879:1986//ENTITIES Added Latin 1//EN" uri="file://$(VBOX_FILE_URL_MAYBE_SLASH)$(VBOX_PATH_DOCBOOK_DTD)/ent/iso-lat1.ent"/>' \
|
---|
256 | ' <public publicId="ISO 8879:1986//ENTITIES Added Latin 2//EN" uri="file://$(VBOX_FILE_URL_MAYBE_SLASH)$(VBOX_PATH_DOCBOOK_DTD)/ent/iso-lat2.ent"/>' \
|
---|
257 | ' <public publicId="ISO 8879:1986//ENTITIES Numeric and Special Graphic//EN" uri="file://$(VBOX_FILE_URL_MAYBE_SLASH)$(VBOX_PATH_DOCBOOK_DTD)/ent/iso-num.ent"/>' \
|
---|
258 | ' <public publicId="ISO 8879:1986//ENTITIES Publishing//EN" uri="file://$(VBOX_FILE_URL_MAYBE_SLASH)$(VBOX_PATH_DOCBOOK_DTD)/ent/iso-pub.ent"/>' \
|
---|
259 | ' <public publicId="ISO 8879:1986//ENTITIES General Technical//EN" uri="file://$(VBOX_FILE_URL_MAYBE_SLASH)$(VBOX_PATH_DOCBOOK_DTD)/ent/iso-tech.ent"/>' \
|
---|
260 | '</catalog>'
|
---|
261 |
|
---|
262 | # Create a docbook catalog file for xsltproc that points to the local manual files in non-default locations
|
---|
263 | $(VBOX_XML_CATALOG_MANUAL): $(VBOX_PATH_MANUAL_SRC)/Config.kmk | $$(dir $$@)
|
---|
264 | $(call MSG_L1,Creating catalog $@)
|
---|
265 | $(QUIET)$(APPEND) -tn "$@" \
|
---|
266 | '<?xml version="1.0"?>' \
|
---|
267 | '<!DOCTYPE catalog PUBLIC "-//OASIS//DTD Entity Resolution XML Catalog V1.0//EN" "http://www.oasis-open.org/committees/entity/release/1.0/catalog.dtd">' \
|
---|
268 | '<catalog xmlns="urn:oasis:names:tc:entity:xmlns:xml:catalog">' \
|
---|
269 | ' <system systemId="$(VBOX_PATH_MANUAL_SRC)/common/oracle-accessibility-en.xml" uri="file://$(VBOX_FILE_URL_MAYBE_SLASH)$(VBOX_PATH_MANUAL_SRC)/en_US/oracle-accessibility-en.xml"/>' \
|
---|
270 | ' <system systemId="$(VBOX_PATH_MANUAL_SRC)/common/oracle-diversity.xml" uri="file://$(VBOX_FILE_URL_MAYBE_SLASH)$(VBOX_PATH_MANUAL_SRC)/en_US/oracle-diversity.xml"/>' \
|
---|
271 | ' <system systemId="$(VBOX_PATH_MANUAL_SRC)/common/oracle-support-en.xml" uri="file://$(VBOX_FILE_URL_MAYBE_SLASH)$(VBOX_PATH_MANUAL_SRC)/en_US/oracle-support-en.xml"/>' \
|
---|
272 | ' <system systemId="$(VBOX_PATH_MANUAL_SRC)/en_US/user_ChangeLogImpl.xml" uri="file://$(VBOX_FILE_URL_MAYBE_SLASH)$(VBOX_PATH_MANUAL_SRC)/user_ChangeLogImpl.xml"/>' \
|
---|
273 | ' <system systemId="$(VBOX_PATH_MANUAL_SRC)/titlepage-htmlhelp.xsl" uri="file://$(VBOX_FILE_URL_MAYBE_SLASH)$(VBOX_PATH_MANUAL_OUTBASE)/titlepage-htmlhelp.xsl"/>' \
|
---|
274 | $(foreach x,user_VBoxManage_CommandsOverview.xml user_isomakercmd-man.xml $(addprefix user_,$(VBOX_MANUAL_XML_REFENTRY_FILES) man_VBoxHeadless.xml man_vboximg-mount.xml)\
|
---|
275 | ,' <system systemId="$(VBOX_PATH_MANUAL_SRC)/en_US/$(x)" uri="file://$(VBOX_FILE_URL_MAYBE_SLASH)$(VBOX_PATH_MANUAL_OUTBASE)/en_US/$(x)"/>') \
|
---|
276 | ' <system systemId="$(VBOX_PATH_MANUAL_SRC)/en_US/SDKRef_apiref.xml" uri="file://$(VBOX_FILE_URL_MAYBE_SLASH)$(VBOX_PATH_MANUAL_OUTBASE)/en_US/SDKRef_apiref.xml"/>' \
|
---|
277 | ' <system systemId="$(VBOX_PATH_MANUAL_SRC)/en_US/all-entities.ent" uri="file://$(VBOX_FILE_URL_MAYBE_SLASH)$(VBOX_PATH_MANUAL_OUTBASE)/all-entities.ent"/>' \
|
---|
278 | ' <system systemId="$(VBOX_PATH_MANUAL_SRC)/html/docbook.xsl" uri="file://$(VBOX_FILE_URL_MAYBE_SLASH)$(VBOX_PATH_DOCBOOK)/html/docbook.xsl"/>' \
|
---|
279 | ' <system systemId="$(VBOX_PATH_MANUAL_SRC)/html/chunk.xsl" uri="file://$(VBOX_FILE_URL_MAYBE_SLASH)$(VBOX_PATH_DOCBOOK)/html/chunk.xsl"/>' \
|
---|
280 | ' <system systemId="$(VBOX_PATH_MANUAL_SRC)/htmlhelp/htmlhelp.xsl" uri="file://$(VBOX_FILE_URL_MAYBE_SLASH)$(VBOX_PATH_DOCBOOK)/htmlhelp/htmlhelp.xsl"/>' \
|
---|
281 | ' <system systemId="$(VBOX_PATH_MANUAL_SRC)/manpages/docbook.xsl" uri="file://$(VBOX_FILE_URL_MAYBE_SLASH)$(VBOX_PATH_DOCBOOK)/manpages/docbook.xsl"/>' \
|
---|
282 | '</catalog>'
|
---|
283 |
|
---|
284 | endif # VBOX_XML_CATALOG
|
---|
285 |
|
---|
286 |
|
---|
287 | ifdef VBOX_XML_ENTITIES
|
---|
288 |
|
---|
289 | $(VBOX_XML_ENTITIES): $(VBOX_PATH_MANUAL_SRC)/Config.kmk $(VBOX_VERSION_STAMP) | $$(dir $$@)
|
---|
290 | $(call MSG_L1,Creating entities $@)
|
---|
291 | $(QUIET)$(APPEND) -tn "$@" \
|
---|
292 | '<!-- Entities for product names -->' \
|
---|
293 | '<!ENTITY product-version "$(VBOX_VERSION_STRING)">' \
|
---|
294 | '<!ENTITY product-name "Oracle VM VirtualBox">' \
|
---|
295 | '<!ENTITY oci "Oracle Cloud Infrastructure">' \
|
---|
296 | '' \
|
---|
297 | '<!-- VBox placeholder entities -->' \
|
---|
298 | '<!ENTITY VBOX_VERSION_MAJOR "$(VBOX_VERSION_MAJOR)" >' \
|
---|
299 | '<!ENTITY VBOX_VERSION_MINOR "$(VBOX_VERSION_MINOR)" >' \
|
---|
300 | '<!ENTITY VBOX_VERSION_BUILD "$(VBOX_VERSION_MINOR)" >' \
|
---|
301 | '<!ENTITY VBOX_VERSION_STRING "$(VBOX_VERSION_STRING)" >' \
|
---|
302 | '<!ENTITY VBOX_VENDOR "$(VBOX_VENDOR)" >' \
|
---|
303 | '<!ENTITY VBOX_C_YEAR "$(VBOX_C_YEAR)" >' \
|
---|
304 | '<!ENTITY VBOX_PRODUCT '\''<trademark class="registered">Oracle</trademark> VM <trademark class="registered">VirtualBox</trademark>'\'' >' \
|
---|
305 | '' \
|
---|
306 | '<!-- Entities for Oracle Help Center -->' \
|
---|
307 | '<!ENTITY ohc-base-url "https://docs.oracle.com/en">' \
|
---|
308 | '<!ENTITY ohc-doc-page "&ohc-base-url;/virtualization/virtualbox/index.html">'
|
---|
309 |
|
---|
310 | endif # VBOX_XML_ENTITIES
|
---|
311 |
|
---|
312 |
|
---|
313 | ## Produce stylesheet for translating cross references (xref) to user manual
|
---|
314 | # chapters and sections in the man pages and --help output.
|
---|
315 | #
|
---|
316 | # Note! This requires processing UserManual.xml as a single document in order
|
---|
317 | # to get the correct chapter and section numbering, so we use a catalog
|
---|
318 | # file to replace the generated XML documents it includes with a dummy
|
---|
319 | # one. This reduces the dependencies and recipies we require to build
|
---|
320 | # VBoxManage and the RTIsoMaker (w/ derivatives).
|
---|
321 | $(VBOX_XML_XREF_TO_TEXT) + $(VBOX_XML_XREF_TO_TEXT).cat: \
|
---|
322 | $(VBOX_PATH_MANUAL_SRC)/docbook-refentry-link-replacement-xsl-gen.xsl \
|
---|
323 | $(addprefix $(VBOX_PATH_MANUAL_SRC)/en_US/,$(VBOX_MANUAL_XML_FILES)) \
|
---|
324 | $(VBOX_MANUAL_XML_FILES_COMMON) \
|
---|
325 | $(VBOX_XML_CATALOG) $(VBOX_XML_CATALOG_DOCBOOK) $(VBOX_XML_CATALOG_MANUAL) $(VBOX_XML_ENTITIES) \
|
---|
326 | | $$(dir $$@)
|
---|
327 | $(call MSG_L1,Creating stylesheet $@)
|
---|
328 | $(QUIET)$(APPEND) -nt "$(VBOX_XML_XREF_TO_TEXT).cat" \
|
---|
329 | '<?xml version="1.0"?>' \
|
---|
330 | '<!DOCTYPE catalog PUBLIC "-//OASIS//DTD Entity Resolution XML Catalog V1.0//EN" "http://www.oasis-open.org/committees/entity/release/1.0/catalog.dtd">' \
|
---|
331 | '<catalog xmlns="urn:oasis:names:tc:entity:xmlns:xml:catalog">' \
|
---|
332 | $(foreach x,user_VBoxManage_CommandsOverview.xml user_isomakercmd-man.xml $(addprefix user_,$(VBOX_MANUAL_XML_REFENTRY_FILES))\
|
---|
333 | ,' <system systemId="$(VBOX_PATH_MANUAL_SRC)/en_US/$(x)" uri="file://$(VBOX_FILE_URL_MAYBE_SLASH)$(VBOX_PATH_MANUAL_SRC)/dummy-sect1.xml"/>') \
|
---|
334 | ' <nextCatalog catalog="file://$(VBOX_FILE_URL_MAYBE_SLASH)$(VBOX_XML_CATALOG)"/>' \
|
---|
335 | '</catalog>'
|
---|
336 | $(QUIET)$(call VBOX_XSLTPROC_WITH_CAT, -E "XML_CATALOG_FILES=$(VBOX_XML_XREF_TO_TEXT).cat") \
|
---|
337 | --output "$@" "$<" $(filter %UserManual.xml,$^)
|
---|
338 |
|
---|
339 | #
|
---|
340 | # Generate rules for editing the refentry to C/H style sheets.
|
---|
341 | #
|
---|
342 | VBOX_DOCBOOK_REFENTRY_TO_C_HELP = $(VBOX_PATH_MANUAL_SRC)/docbook-refentry-to-C-help.xsl
|
---|
343 |
|
---|
344 | VBOX_DOCBOOK_REFENTRY_TO_H_HELP = $(VBOX_PATH_MANUAL_SRC)/docbook-refentry-to-H-help.xsl
|
---|
345 |
|
---|
346 | #
|
---|
347 | # Manual dependency.
|
---|
348 | #
|
---|
349 | $(VBOX_PATH_MANUAL_OUTBASE)/docbook-refentry-to-C-help.xsl: $(VBOX_PATH_MANUAL_SRC)/common-formatcfg.xsl
|
---|
350 |
|
---|
351 |
|
---|
352 | endif # !defined(VBOX_DOC_MANUAL_CONFIG_KMK_INCLUDED)
|
---|
353 |
|
---|