diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2019-05-14 21:23:39 +0000 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2019-06-03 09:55:55 +0200 |
commit | ed02a72816659bc4dbedace36aba33a16280aa45 (patch) | |
tree | ee8245b91dc7c3892828d06ef123eea16423f9d1 | |
parent | 09c657ebe69fe1c2516a10a4452996870f4237d2 (diff) |
Fix typo
Change-Id: I5598ed9aca8c985b1783928f74a143ef08e2c369
Reviewed-on: https://gerrit.libreoffice.org/73357
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Tested-by: Julien Nabet <serval2412@yahoo.fr>
-rw-r--r-- | filter/source/xslt/odf2xhtml/export/xhtml/opendoc2xhtml.xsl | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/filter/source/xslt/odf2xhtml/export/xhtml/opendoc2xhtml.xsl b/filter/source/xslt/odf2xhtml/export/xhtml/opendoc2xhtml.xsl index dc93115eab5d..d59ea006a9be 100644 --- a/filter/source/xslt/odf2xhtml/export/xhtml/opendoc2xhtml.xsl +++ b/filter/source/xslt/odf2xhtml/export/xhtml/opendoc2xhtml.xsl @@ -81,16 +81,16 @@ <!-- OPTIONAL: if the document content is provided in a directory structure. Opposite to a single flat XML stream --> <xsl:param name="isPackageFormat" /> - <!-- OPTIONAL: (MANDATORY: for all input document with relative external links): parameter is a absolute file URL to the target directory. + <!-- OPTIONAL: (MANDATORY: for all input document with relative external links): parameter is an absolute file URL to the target directory. Relative links from the office document (e.g. to external graphics) will get this parameter as a prefix --> <xsl:param name="targetBaseURL" select="'./'" /> - <!-- OPTIONAL: (MANDATORY: for all input document with content table) : parameter is a absolute file URL to the target document. + <!-- OPTIONAL: (MANDATORY: for all input document with content table) : parameter is an absolute file URL to the target document. Relative links to this office document (e.g. to internal anchor) will get this parameter as a prefix --> <xsl:param name="targetURL" select="'./'" /> <!-- OPTIONAL: (MANDATORY: for input document with relative internal links) - To access contents of a office file (content like the meta.xml, styles.xml file or graphics) a URL could be chosen. + To access contents of an office file (content like the meta.xml, styles.xml file or graphics) a URL could be chosen. This could be even a JAR URL. The sourceBase of the content URL "jar:file:/C:/temp/Test.sxw!/content.xml" would be "jar:file:/C:/temp/Test.sxw!/" for example. When working with OpenOffice API a Package-URL encoded over HTTP can be used to access the jared contents of the jared document. --> @@ -98,7 +98,7 @@ <!-- OPTIONAL: (MANDATORY: for session management by URL rewriting) Useful for WebApplications: if a HTTP session is not cookie based, URL rewriting is being used (the session is appended to the URL). - This URL session is used for example when links to graphics are created by XSLT. Otherwise the user havt to log again in for every graphic he liks to see. --> + This URL session is used for example when links to graphics are created by XSLT. Otherwise the user have to log again in for every graphic he likes to see. --> <xsl:param name="optionalURLSuffix" /> <!-- OPTIONAL: URL to office meta file (flat xml use the URL to the input file) --> |