help3xsl/default.css | 2 source/text/shared/guide/pdf_params.xhp | 53 +++- source/text/shared/guide/start_parameters.xhp | 280 +++++++++++++------------- 3 files changed, 176 insertions(+), 159 deletions(-)
New commits: commit aac8d60b47589c8ba6d5eda78dc6d901c80eaa79 Author: Olivier Hallot <[email protected]> AuthorDate: Thu Oct 23 18:55:40 2025 -0300 Commit: Olivier Hallot <[email protected]> CommitDate: Fri Oct 24 12:14:47 2025 +0200 tdf#167830 CLI examples for several shells. Change-Id: I0955f662d513c68056a2fe6c2e9926ee127db27b Reviewed-on: https://gerrit.libreoffice.org/c/help/+/192928 Reviewed-by: Olivier Hallot <[email protected]> Tested-by: Jenkins diff --git a/help3xsl/default.css b/help3xsl/default.css index 43c9478562..d0c167e8f5 100644 --- a/help3xsl/default.css +++ b/help3xsl/default.css @@ -150,6 +150,8 @@ img[src$=".svg"] { } .literal { white-space: normal; + word-break: keep-all; + overflow-wrap: break-word; } .smathcode { border-radius: 2px; diff --git a/source/text/shared/guide/pdf_params.xhp b/source/text/shared/guide/pdf_params.xhp index 04d51074dd..63b83fce88 100644 --- a/source/text/shared/guide/pdf_params.xhp +++ b/source/text/shared/guide/pdf_params.xhp @@ -21,25 +21,40 @@ <bookmark_value>convert to PDF;command line parameters</bookmark_value> </bookmark> <section id="pdfcliparams"> - <h1 id="hd_id121682091245245"><variable id="h1"><link href="text/shared/guide/pdf_params.xhp">PDF Export Command Line Parameters</link></variable></h1> - <paragraph id="par_id671682091245248" role="paragraph">The PDF filter accepts a string of options containing PDF properties for export.</paragraph> +<h1 id="hd_id121682091245245"><variable id="h1"><link href="text/shared/guide/pdf_params.xhp">PDF Export Command Line Parameters</link></variable></h1> +<description id="par_id671682091245248">The PDF filter accepts a string of options containing PDF properties for export.</description> </section> +<h2 id="hd_id971682091492801">Examples:</h2> +<h4 id="hd_id551761222979028">Windows Command Prompt CMD</h4> +<paragraph role="paragraph" id="par_id11761223631766">The double quotes in the parameter string must be escaped (\").</paragraph> +<paragraph role="paragraph" id="par_id681761231624163"><variable id="pages">To export pages 2 to 5 of a Writer document:</variable></paragraph> +<paragraph role="code" localize="false" id="par_id431682091883909"><input>"C:\Program Files\LibreOffice\program\soffice" --convert-to pdf:writer_pdf_Export:{\"PageRange\":{\"type\":\"string\",\"value\":\"2-5\"}} --outdir C:\Users\myuser\Documents C:\Users\myuser\Documents\myfile.odt</input></paragraph> +<paragraph role="paragraph" id="par_id271761232432778"><variable id="watermark">To add a tiled watermark:</variable></paragraph> +<paragraph role="code" id="par_id351761232400211" localize="false"><input>"C:\Program Files\LibreOffice\program\soffice" --convert-to pdf:draw_pdf_Export:{\"TiledWatermark\":{\"type\":\"string\",\"value\":\"draft\"}} C:\Users\myuser\Documents est.odg</input> </paragraph> +<paragraph role="paragraph" id="par_id611761251699726"><variable id="encrypt">To encrypt a file:</variable></paragraph> +<paragraph role="code" id="par_id731761252498237"><input>"C:\Program Files\LibreOffice\program\soffice" --convert-to pdf:draw_pdf_Export:{\"EncryptFile\":{\"type\":\"boolean\",\"value\":\"true\"},\"DocumentOpenPassword\":{\"type\":\"string\",\"value\":\"secret\"}} test.odg</input></paragraph> +<paragraph role="paragraph" id="par_id231761251733348"><variable id="version">To set version 1.5 (instead of the default 1.7):</variable></paragraph> +<paragraph role="code" id="par_id141761252469484"><input>"C:\Program Files\LibreOffice\program\soffice" --convert-to pdf:draw_pdf_Export:{\"SelectPdfVersion\":{\"type\":\"long\",\"value\":\"15\"}} test.odg</input></paragraph> +<h4 id="hd_id621761222972654">Windows PowerShell</h4> +<paragraph role="paragraph" id="par_id911761223855152">The parameter string must be wrapped in single quotes to allow parsing of the double quotes. The ampersand (&) character is known as the call operator. It is used to execute a command, script block, or function stored in a variable or string.</paragraph> +<paragraph role="paragraph" localize="false" id="par_id271761231629269"><embedvar href="text/shared/guide/pdf_params.xhp#pages" markup="ignore"/></paragraph> +<paragraph role="code" id="par_id891761222948429" localize="false"><input>& 'C:\Program Files\LibreOffice\program\soffice' --convert-to 'pdf:writer_pdf_Export:{"PageRange":{"type":"string","value":"2-5"}}' --outdir C:\Users\myuser\Documents C:\Users\myuser\Documents\myfile.odt</input></paragraph> +<paragraph role="paragraph" localize="false" id="par_id391761231553885"><embedvar href="text/shared/guide/pdf_params.xhp#watermark" markup="ignore"/></paragraph> +<paragraph role="code" id="par_id761761231534584" localize="false"><input>& 'C:\Program Files\LibreOffice\program\soffice' --convert-to 'pdf:draw_pdf_Export:{"TiledWatermark":{"type":"string","value":"draft"}}' test.odg</input></paragraph> +<paragraph role="paragraph" localize="false" id="par_id481761251029677"><embedvar href="text/shared/guide/pdf_params.xhp#encrypt" markup="ignore"/></paragraph> +<paragraph role="code" localize="false" id="par_id111761251008883"><input>& 'C:\Program Files\LibreOffice\program\soffice' --convert-to 'pdf:draw_pdf_Export:{"EncryptFile":{"type":"boolean","value":"true"},"DocumentOpenPassword":{"type":"string","value":"secret"}}' test.odg</input></paragraph> +<paragraph role="paragraph" localize="false" id="par_id571761251024629"><embedvar href="text/shared/guide/pdf_params.xhp#version" markup="ignore"/></paragraph> +<paragraph role="code" localize="false" id="par_id41761251006248"><input>& 'C:\Program Files\LibreOffice\program\soffice' --convert-to 'pdf:draw_pdf_Export:{"SelectPdfVersion":{"type":"long","value":"15"}}' test.odg</input></paragraph> +<h4 id="hd_id101761223249501">Linux (BASH) and MacOS (ZSH)</h4> +<paragraph role="paragraph" localize="false" id="par_id951761233158520"><embedvar href="text/shared/guide/pdf_params.xhp#pages" markup="ignore"/></paragraph> +<paragraph role="code" id="par_id871761226406796"><input>soffice --convert-to 'pdf:writer_pdf_Export:{"PageRange":{"type":"string","value":"2-5"}}' --outdir /home/myuser myfile.odt</input></paragraph> +<paragraph role="paragraph" localize="false" id="par_id351761233105889"><embedvar href="text/shared/guide/pdf_params.xhp#watermark" markup="ignore"/></paragraph> +<paragraph role="code" localize="false" id="par_id271682091918895"><input>soffice --convert-to 'pdf:draw_pdf_Export:{"TiledWatermark":{"type":"string","value":"draft"}}' test.odg</input></paragraph> +<paragraph role="paragraph" localize="false" id="par_id661682091944531"><embedvar href="text/shared/guide/pdf_params.xhp#encrypt" markup="ignore"/></paragraph> +<paragraph role="code" localize="false" id="par_id671682092011327"><input>soffice --convert-to 'pdf:draw_pdf_Export:{"EncryptFile":{"type":"boolean","value":"true"},"DocumentOpenPassword":{"type":"string","value":"secret"}}' test.odg</input></paragraph> +<paragraph role="paragraph" localize="false" id="par_id601682091972478"><embedvar href="text/shared/guide/pdf_params.xhp#version" markup="ignore"/></paragraph> +<paragraph role="code" localize="false" id="par_id61682091986689"><input>soffice --convert-to 'pdf:draw_pdf_Export:{"SelectPdfVersion":{"type":"long","value":"15"}}' test.odg</input></paragraph> -<h3 id="hd_id971682091492801">Examples:</h3> -<paragraph role="paragraph" id="par_id841682091860427">To skip the first page of a Draw document:</paragraph> -<paragraph role="paragraph" localize="false" id="par_id431682091883909"><input>soffice --convert-to 'pdf:draw_pdf_Export:{"PageRange":{"type":"string","value":"2-"}}' test.odg</input></paragraph> - -<paragraph role="paragraph" id="par_id681682091902912">To add a tiled watermark:</paragraph> - -<paragraph role="paragraph" localize="false" id="par_id271682091918895"><input>soffice --convert-to 'pdf:draw_pdf_Export:{"TiledWatermark":{"type":"string","value":"draft"}}' test.odg</input></paragraph> - -<paragraph role="paragraph" id="par_id661682091944531">To encrypt a file:</paragraph> - -<paragraph role="paragraph" localize="false" id="par_id671682092011327"><input>soffice --convert-to 'pdf:draw_pdf_Export:{"EncryptFile":{"type":"boolean","value":"true"},"DocumentOpenPassword":{"type":"string","value":"secret"}}' test.odg</input></paragraph> - -<paragraph role="paragraph" id="par_id601682091972478">To set version 1.5 (instead of the default 1.7):</paragraph> - -<paragraph role="paragraph" localize="false" id="par_id61682091986689"><input>soffice --convert-to 'pdf:draw_pdf_Export:{"SelectPdfVersion":{"type":"long","value":"15"}}' test.odg</input></paragraph> <h2 id="hd_id791693493415853">Index</h2> <paragraph role="paragraph" id="par_id881693493458276" localize="false"><embedvar href="text/shared/guide/pdf_params.xhp#general_properties" markup="ignore"/></paragraph> <paragraph role="paragraph" id="par_id331693493646090" localize="false"><embedvar href="text/shared/guide/pdf_params.xhp#initial_view" markup="ignore"/></paragraph> @@ -48,7 +63,7 @@ <paragraph role="paragraph" id="par_id801693493791591" localize="false"><embedvar href="text/shared/guide/pdf_params.xhp#security" markup="ignore"/></paragraph> <paragraph role="paragraph" id="par_id941693493872432" localize="false"><embedvar href="text/shared/guide/pdf_params.xhp#digital_signature" markup="ignore"/></paragraph> -<h2 id="hd_id161682092535475"><variable id="general_properties"><link href="text/shared/guide/pdf_params.xhp#generaltext/shared/guide/pdf_params.xhp">General Properties</link></variable></h2> +<h2 id="hd_id161682092535475"><variable id="general_properties"><link href="text/shared/guide/pdf_params.xhp#general_properties">General Properties</link></variable></h2> <paragraph role="paragraph" id="par_id431693518528694" localize="false"><embedvar href="text/shared/01/ref_pdf_export_general.xhp#pdfexportgeneralh1" markup="ignore"/></paragraph> <table id="tab_id871682092689083"> <tablerow> @@ -627,7 +642,7 @@ </tablecell> </tablerow> </table> -<h2 id="hd_id781682103094811"><variable id="user_interface"><link href="text/shared/guide/pdf_params.xhp#user interface">User Interface</link></variable></h2> +<h2 id="hd_id781682103094811"><variable id="user_interface"><link href="text/shared/guide/pdf_params.xhp#user_interface">User Interface</link></variable></h2> <paragraph role="paragraph" id="par_id811693518223533" localize="false"><embedvar href="text/shared/01/ref_pdf_export_user_interface.xhp#pdfexportuserinterfaceh1" markup="ignore"/></paragraph> <table id="tab_id41682101522614"> <tablerow> diff --git a/source/text/shared/guide/start_parameters.xhp b/source/text/shared/guide/start_parameters.xhp index e8a17d9a4b..a3853ceb10 100644 --- a/source/text/shared/guide/start_parameters.xhp +++ b/source/text/shared/guide/start_parameters.xhp @@ -19,69 +19,69 @@ <helpdocument version="1.0"> <meta> <topic id="textsharedguidestart_parametersxml" indexer="include" status="PUBLISH"> - <title id="tit" xml-lang="en-US">Starting $[officename] Software With Parameters</title> + <title id="tit">Starting $[officename] Software With Parameters</title> <filename>/text/shared/guide/start_parameters.xhp</filename> </topic> </meta> <body> <section id="start_parameters"> - <bookmark xml-lang="en-US" branch="index" id="bm_id3156410"> + <bookmark branch="index" id="bm_id3156410"> <bookmark_value>start parameters</bookmark_value> <bookmark_value>command line parameters</bookmark_value> <bookmark_value>parameters;command line</bookmark_value> <bookmark_value>arguments in command line</bookmark_value> </bookmark> <h1 id="hd_id3156410"><variable id="Title_h1"><link href="text/shared/guide/start_parameters.xhp">Starting $[officename] Software With Parameters</link></variable></h1> - <paragraph role="paragraph" id="par_id3147009" xml-lang="en-US">By starting $[officename] software from the command line you can assign various parameters, with which you can influence the performance. The use of command line parameters is only recommended for experienced users.</paragraph> + <paragraph role="paragraph" id="par_id3147009">By starting $[officename] software from the command line you can assign various parameters, with which you can influence the performance. The use of command line parameters is only recommended for experienced users.</paragraph> <note id="par_id3147618">For normal handling, the use of command line parameters is not necessary. A few of the parameters require a deeper knowledge of the technical background of $[officename] software technology.</note> <h2 id="hd_id3154898">Starting $[officename] Software From the Command Line</h2> <switch select="sys"> <case select="WIN"> <list type="ordered"> <listitem> - <paragraph role="listitem" id="par_id3156152" xml-lang="en-US">Search for <emph>Run</emph> in the Windows Start menu.</paragraph> + <paragraph role="listitem" id="par_id3156152">Search for <emph>Run</emph> in the Windows Start menu.</paragraph> </listitem> <listitem> - <paragraph role="listitem" id="par_id3152472" xml-lang="en-US">Type the following text in the <emph>Open</emph> text field and click <emph>OK</emph>. </paragraph> + <paragraph role="listitem" id="par_id3152472">Type the following text in the <emph>Open</emph> text field and click <emph>OK</emph>. </paragraph> </listitem> <listitem> - <paragraph role="listitem" id="par_id3147561" xml-lang="en-US">"{install}\program\soffice.com" {parameter}</paragraph> - <paragraph role="listitem" id="par_id3153360" xml-lang="en-US">Replace <emph>{install}</emph> with the path to your installation of %PRODUCTNAME software (for example, <emph>C:\Program Files\%PRODUCTNAME</emph>). Use <emph>soffice.exe</emph> instead of <emph>soffice.com</emph>, when you do not need console (e.g., you do not use command-line interface for headless operations).</paragraph> + <paragraph role="code" id="par_id3147561">"{install}\program\soffice.com" {parameter}</paragraph> + <paragraph role="listitem" id="par_id3153360">Replace <emph>{install}</emph> with the path to your installation of %PRODUCTNAME software (for example, <emph>C:\Program Files\%PRODUCTNAME</emph>). Use <emph>soffice.exe</emph> instead of <emph>soffice.com</emph>, when you do not need console (e.g., you do not use command-line interface for headless operations).</paragraph> </listitem> </list> </case> <default> <list type="ordered"> <listitem> - <paragraph role="listitem" id="par_id3157152" xml-lang="en-US">Open a shell under Linux, *BSD, or macOS platforms.</paragraph> + <paragraph role="listitem" id="par_id3157152">Open a shell under Linux, *BSD, or macOS platforms.</paragraph> </listitem> <listitem> - <paragraph role="listitem" id="par_id3147669" xml-lang="en-US">Type the following line of text, then press <emph>Return</emph>:</paragraph> - <paragraph role="listitem" id="par_id3143561" xml-lang="en-US">{install}/program/soffice {parameter}</paragraph> - <paragraph role="listitem" id="par_id3157360" xml-lang="en-US">Replace <emph>{install}</emph> with the path to your installation of %PRODUCTNAME software (for example, <emph>/opt/%PRODUCTNAME</emph> in UNIX)</paragraph> + <paragraph role="listitem" id="par_id3147669">Type the following line of text, then press <emph>Return</emph>:</paragraph> + <paragraph role="code" id="par_id3143561">{install}/program/soffice {parameter}</paragraph> + <paragraph role="listitem" id="par_id3157360">Replace <emph>{install}</emph> with the path to your installation of %PRODUCTNAME software (for example, <emph>/opt/%PRODUCTNAME</emph> in UNIX)</paragraph> </listitem> </list> </default> </switch> - <paragraph role="paragraph" id="par_id3147010" xml-lang="en-US">$[officename] requires write access to its user profile directory.</paragraph> + <paragraph role="paragraph" id="par_id3147010">$[officename] requires write access to its user profile directory.</paragraph> <h2 id="hd_id3145171">Valid Command Line Parameters</h2> <h3 id="hd_id1016120408556191">Using without special arguments</h3> - <paragraph role="paragraph" id="par_id215247284938" xml-lang="en-US">Using without any arguments opens the start center.</paragraph> + <paragraph role="paragraph" id="par_id215247284938">Using without any arguments opens the start center.</paragraph> <table id="tbl_id2016120408556132"> <tablerow> <tablecell> - <paragraph id="par_id4016121206183262" role="tablecontent" xml-lang="en-US"><emph>{file}</emph></paragraph> + <paragraph id="par_id4016121206183262" role="tablecontent"><emph>{file}</emph></paragraph> </tablecell> <tablecell> - <paragraph id="par_id40161212062813818" role="tablecontent" xml-lang="en-US">Tries to open the file (files) in the components suitable for them.</paragraph> + <paragraph id="par_id40161212062813818" role="tablecontent">Tries to open the file (files) in the components suitable for them.</paragraph> </tablecell> </tablerow> <tablerow> <tablecell> - <paragraph id="par_id40161212063110720" role="tablecontent" xml-lang="en-US"><emph>{file} macro://./[Library.Module.MacroName]</emph></paragraph> + <paragraph id="par_id40161212063110720" role="tablecontent"><emph>{file} macro://./[Library.Module.MacroName]</emph></paragraph> </tablecell> <tablecell> - <paragraph id="par_id40161212063330252" role="tablecontent" xml-lang="en-US">Opens the file and applies specified macros from the file.</paragraph> + <paragraph id="par_id40161212063330252" role="tablecontent">Opens the file and applies specified macros from the file.</paragraph> </tablecell> </tablerow> </table> @@ -89,90 +89,90 @@ <table id="tbl_id20161204085561"> <tablerow> <tablecell> - <paragraph role="tablehead" id="par_id3148451" xml-lang="en-US"><variable id="parameter">Parameter</variable></paragraph> + <paragraph role="tablehead" id="par_id3148451"><variable id="parameter">Parameter</variable></paragraph> </tablecell> <tablecell> - <paragraph role="tablehead" id="par_id3149167" xml-lang="en-US"><variable id="meaning">Meaning</variable></paragraph> + <paragraph role="tablehead" id="par_id3149167"><variable id="meaning">Meaning</variable></paragraph> </tablecell> </tablerow> <tablerow> <tablecell> - <paragraph role="tablecontent" id="par_id3149983" localize="false" xml-lang="en-US"><emph>--help / -h / -?</emph></paragraph> + <paragraph role="tablecontent" id="par_id3149983" localize="false"><emph>--help / -h / -?</emph></paragraph> </tablecell> <tablecell> - <paragraph role="tablecontent" id="par_id3147349" xml-lang="en-US">Lists the available command line parameters to the console.</paragraph> + <paragraph role="tablecontent" id="par_id3147349">Lists the available command line parameters to the console.</paragraph> </tablecell> </tablerow> <tablerow> <tablecell> - <paragraph id="par_id2016120408595932" role="tablecontent" localize="false" xml-lang="en-US"><emph>--helpwriter</emph></paragraph> + <paragraph id="par_id2016120408595932" role="tablecontent" localize="false"><emph>--helpwriter</emph></paragraph> </tablecell> <tablecell> - <paragraph id="par_id20161204091221764" role="tablecontent" xml-lang="en-US">Opens $[officename] built-in or online Help on Writer.</paragraph> + <paragraph id="par_id20161204091221764" role="tablecontent">Opens $[officename] built-in or online Help on Writer.</paragraph> </tablecell> </tablerow> <tablerow> <tablecell> - <paragraph id="par_id20161204091430073" role="tablecontent" localize="false" xml-lang="en-US"><emph>--helpcalc</emph></paragraph> + <paragraph id="par_id20161204091430073" role="tablecontent" localize="false"><emph>--helpcalc</emph></paragraph> </tablecell> <tablecell> - <paragraph id="par_id20161204091520522" role="tablecontent" xml-lang="en-US">Opens $[officename] built-in or online Help on Calc.</paragraph> + <paragraph id="par_id20161204091520522" role="tablecontent">Opens $[officename] built-in or online Help on Calc.</paragraph> </tablecell> </tablerow> <tablerow> <tablecell> - <paragraph id="par_id20161204091613165" role="tablecontent" localize="false" xml-lang="en-US"><emph>--helpdraw</emph></paragraph> + <paragraph id="par_id20161204091613165" role="tablecontent" localize="false"><emph>--helpdraw</emph></paragraph> </tablecell> <tablecell> - <paragraph id="par_id20161204091727059" role="tablecontent" xml-lang="en-US">Opens $[officename] built-in or online Help on Draw.</paragraph> + <paragraph id="par_id20161204091727059" role="tablecontent">Opens $[officename] built-in or online Help on Draw.</paragraph> </tablecell> </tablerow> <tablerow> <tablecell> - <paragraph id="par_id2016120409175485" role="tablecontent" localize="false" xml-lang="en-US"><emph>--helpimpress</emph></paragraph> + <paragraph id="par_id2016120409175485" role="tablecontent" localize="false"><emph>--helpimpress</emph></paragraph> </tablecell> <tablecell> - <paragraph id="par_id20161204091812159" role="tablecontent" xml-lang="en-US">Opens $[officename] built-in or online Help on Impress.</paragraph> + <paragraph id="par_id20161204091812159" role="tablecontent">Opens $[officename] built-in or online Help on Impress.</paragraph> </tablecell> </tablerow> <tablerow> <tablecell> - <paragraph id="par_id2016120409189173" role="tablecontent" localize="false" xml-lang="en-US"><emph>--helpbase</emph></paragraph> + <paragraph id="par_id2016120409189173" role="tablecontent" localize="false"><emph>--helpbase</emph></paragraph> </tablecell> <tablecell> - <paragraph id="par_id20161204091919599" role="tablecontent" xml-lang="en-US">Opens $[officename] built-in or online Help on Base.</paragraph> + <paragraph id="par_id20161204091919599" role="tablecontent">Opens $[officename] built-in or online Help on Base.</paragraph> </tablecell> </tablerow> <tablerow> <tablecell> - <paragraph id="par_id20161204092016613" role="tablecontent" localize="false" xml-lang="en-US"><emph>--helpbasic</emph></paragraph> + <paragraph id="par_id20161204092016613" role="tablecontent" localize="false"><emph>--helpbasic</emph></paragraph> </tablecell> <tablecell> - <paragraph id="par_id20161204092029619" role="tablecontent" xml-lang="en-US">Opens $[officename] built-in or online Help on Basic scripting language.</paragraph> + <paragraph id="par_id20161204092029619" role="tablecontent">Opens $[officename] built-in or online Help on Basic scripting language.</paragraph> </tablecell> </tablerow> <tablerow> <tablecell> - <paragraph id="par_id20161204092113738" role="tablecontent" localize="false" xml-lang="en-US"><emph>--helpmath</emph></paragraph> + <paragraph id="par_id20161204092113738" role="tablecontent" localize="false"><emph>--helpmath</emph></paragraph> </tablecell> <tablecell> - <paragraph id="par_id2016120409214276" role="tablecontent" xml-lang="en-US">Opens $[officename] built-in or online Help on Math.</paragraph> + <paragraph id="par_id2016120409214276" role="tablecontent">Opens $[officename] built-in or online Help on Math.</paragraph> </tablecell> </tablerow> <tablerow> <tablecell> - <paragraph role="tablecontent" id="par_id31499et" localize="false" xml-lang="en-US"><emph>--version</emph></paragraph> + <paragraph role="tablecontent" id="par_id31499et" localize="false"><emph>--version</emph></paragraph> </tablecell> <tablecell> - <paragraph role="tablecontent" id="par_id31473et" xml-lang="en-US">Shows $[officename] version and quits.</paragraph> + <paragraph role="tablecontent" id="par_id31473et">Shows $[officename] version and quits.</paragraph> </tablecell> </tablerow> <tablerow> <tablecell> - <paragraph id="par_id2016120409226160" role="tablecontent" localize="false" xml-lang="en-US"><emph>--nstemporarydirectory</emph></paragraph> + <paragraph id="par_id2016120409226160" role="tablecontent" localize="false"><emph>--nstemporarydirectory</emph></paragraph> </tablecell> <tablecell> - <paragraph id="par_id2016120409236546" role="tablecontent" xml-lang="en-US">(macOS sandbox only) Returns path of the temporary directory for the current user and exits. Overrides all other arguments.</paragraph> + <paragraph id="par_id2016120409236546" role="tablecontent">(macOS sandbox only) Returns path of the temporary directory for the current user and exits. Overrides all other arguments.</paragraph> </tablecell> </tablerow> </table> @@ -181,34 +181,34 @@ <table id="tbl_id201612040855"> <tablerow> <tablecell> - <paragraph id="par_id20161204095215085" role="tablehead" localize="false" xml-lang="en-US"><embedvar href="text/shared/guide/start_parameters.xhp#parameter"/></paragraph> + <paragraph id="par_id20161204095215085" role="tablehead" localize="false"><embedvar href="text/shared/guide/start_parameters.xhp#parameter"/></paragraph> </tablecell> <tablecell> - <paragraph id="par_id201612040953917" role="tablehead" localize="false" xml-lang="en-US"><embedvar href="text/shared/guide/start_parameters.xhp#meaning"/></paragraph> + <paragraph id="par_id201612040953917" role="tablehead" localize="false"><embedvar href="text/shared/guide/start_parameters.xhp#meaning"/></paragraph> </tablecell> </tablerow> <tablerow> <tablecell> - <paragraph role="tablecontent" id="par_id3148477" localize="false" xml-lang="en-US"><emph>--quickstart[=no]</emph></paragraph> + <paragraph role="tablecontent" id="par_id3148477" localize="false"><emph>--quickstart[=no]</emph></paragraph> </tablecell> <tablecell> - <paragraph role="tablecontent" id="par_id3153919" xml-lang="en-US">Activates[Deactivates] the Quickstarter service. It can take only one parameter <emph>no</emph> which deactivates the Quickstarter service. Without parameters this service is activated.</paragraph> + <paragraph role="tablecontent" id="par_id3153919">Activates[Deactivates] the Quickstarter service. It can take only one parameter <emph>no</emph> which deactivates the Quickstarter service. Without parameters this service is activated.</paragraph> </tablecell> </tablerow> <tablerow> <tablecell> - <paragraph role="tablecontent" id="par_id315917t" localize="false" xml-lang="en-US"><emph>--nolockcheck</emph></paragraph> + <paragraph role="tablecontent" id="par_id315917t" localize="false"><emph>--nolockcheck</emph></paragraph> </tablecell> <tablecell> - <paragraph role="tablecontent" id="par_id315330t" xml-lang="en-US">Disables check for remote instances using the installation.</paragraph> + <paragraph role="tablecontent" id="par_id315330t">Disables check for remote instances using the installation.</paragraph> </tablecell> </tablerow> <tablerow> <tablecell> - <paragraph role="tablecontent" id="par_id314959o" localize="false" xml-lang="en-US"><emph>--infilter=InputFilterName</emph><br/><emph>[:InputFilterParam[,param]]</emph></paragraph> + <paragraph role="tablecontent" id="par_id314959o" localize="false"><emph>--infilter=InputFilterName</emph><br/><emph>[:InputFilterParam[,param]]</emph></paragraph> </tablecell> <tablecell> - <paragraph role="tablecontent" id="par_id315053o" xml-lang="en-US">Forces an input filter type, if possible. For example:</paragraph> + <paragraph role="tablecontent" id="par_id315053o">Forces an input filter type, if possible. For example:</paragraph> <paragraph role="tablecontent" id="par_id411550934641187" localize="false"><input>--infilter="Calc Office Open XML"</input></paragraph> <paragraph role="tablecontent" id="par_id501550934647297" localize="false"><input>--infilter="Text (encoded):UTF8,LF,Liberation Mono,en-US"</input>.</paragraph> <embed href="text/shared/guide/start_parameters.xhp#seefilters"/> @@ -217,18 +217,18 @@ </tablerow> <tablerow> <tablecell> - <paragraph id="par_id2016120409546167" role="tablecontent" localize="false" xml-lang="en-US"><emph>--pidfile={file}</emph></paragraph> + <paragraph id="par_id2016120409546167" role="tablecontent" localize="false"><emph>--pidfile={file}</emph></paragraph> </tablecell> <tablecell> - <paragraph id="par_id20161204101917197" role="tablecontent" xml-lang="en-US">Store soffice.bin pid to <emph>{file}</emph>.</paragraph> + <paragraph id="par_id20161204101917197" role="tablecontent">Store soffice.bin pid to <emph>{file}</emph>.</paragraph> </tablecell> </tablerow> <tablerow> <tablecell> - <paragraph role="tablecontent" id="par_id3153915" localize="false" xml-lang="en-US"><emph>--display {display}</emph></paragraph> + <paragraph role="tablecontent" id="par_id3153915" localize="false"><emph>--display {display}</emph></paragraph> </tablecell> <tablecell> - <paragraph role="tablecontent" id="par_id3146786" xml-lang="en-US">Sets the <emph>DISPLAY</emph> environment variable on UNIX-like platforms to the value <emph>{display}</emph>. This parameter is only supported by the start script for $[officename] software on UNIX-like platforms.</paragraph> + <paragraph role="tablecontent" id="par_id3146786">Sets the <emph>DISPLAY</emph> environment variable on UNIX-like platforms to the value <emph>{display}</emph>. This parameter is only supported by the start script for $[officename] software on UNIX-like platforms.</paragraph> </tablecell> </tablerow> </table> @@ -237,97 +237,97 @@ <table id="tbl_id20170517001"> <tablerow> <tablecell> - <paragraph id="par_id20161204095214085" role="tablehead" localize="false" xml-lang="en-US"><embedvar href="text/shared/guide/start_parameters.xhp#parameter"/></paragraph> + <paragraph id="par_id20161204095214085" role="tablehead" localize="false"><embedvar href="text/shared/guide/start_parameters.xhp#parameter"/></paragraph> </tablecell> <tablecell> - <paragraph id="par_id201612040943917" role="tablehead" localize="false" xml-lang="en-US"><embedvar href="text/shared/guide/start_parameters.xhp#meaning"/></paragraph> + <paragraph id="par_id201612040943917" role="tablehead" localize="false"><embedvar href="text/shared/guide/start_parameters.xhp#meaning"/></paragraph> </tablecell> </tablerow> <tablerow> <tablecell> - <paragraph role="tablecontent" id="par_id3155126" localize="false" xml-lang="en-US"><emph>--nologo</emph></paragraph> + <paragraph role="tablecontent" id="par_id3155126" localize="false"><emph>--nologo</emph></paragraph> </tablecell> <tablecell> - <paragraph role="tablecontent" id="par_id3151334" xml-lang="en-US">Disables the splash screen at program start.</paragraph> + <paragraph role="tablecontent" id="par_id3151334">Disables the splash screen at program start.</paragraph> </tablecell> </tablerow> <tablerow> <tablecell> - <paragraph role="tablecontent" id="par_id3156276" localize="false" xml-lang="en-US"><emph>--minimized</emph></paragraph> + <paragraph role="tablecontent" id="par_id3156276" localize="false"><emph>--minimized</emph></paragraph> </tablecell> <tablecell> - <paragraph role="tablecontent" id="par_id3146080" xml-lang="en-US">Starts minimized. The splash screen is not displayed.</paragraph> + <paragraph role="tablecontent" id="par_id3146080">Starts minimized. The splash screen is not displayed.</paragraph> </tablecell> </tablerow> <tablerow> <tablecell> - <paragraph role="tablecontent" id="par_id3159171" localize="false" xml-lang="en-US"><emph>--nodefault</emph></paragraph> + <paragraph role="tablecontent" id="par_id3159171" localize="false"><emph>--nodefault</emph></paragraph> </tablecell> <tablecell> - <paragraph role="tablecontent" id="par_id3153306" xml-lang="en-US">Starts without displaying anything except the splash screen.</paragraph> + <paragraph role="tablecontent" id="par_id3153306">Starts without displaying anything except the splash screen.</paragraph> </tablecell> </tablerow> <tablerow> <tablecell> - <paragraph role="tablecontent" id="par_id3145641" localize="false" xml-lang="en-US"><emph>--invisible</emph></paragraph> + <paragraph role="tablecontent" id="par_id3145641" localize="false"><emph>--invisible</emph></paragraph> </tablecell> <tablecell> - <paragraph role="tablecontent" id="par_id3154756" xml-lang="en-US">Starts in invisible mode.</paragraph> - <paragraph role="tablecontent" id="par_id3148914" xml-lang="en-US">Neither the start-up logo nor the initial program window will be visible. $[officename] software can be controlled, and documents and dialogs can be controlled and opened via the <link href="https://api.libreoffice.org">API</link>.</paragraph> - <paragraph role="tablecontent" id="par_id3147341" xml-lang="en-US">Using the parameter, $[officename] can only be ended using the taskmanager (Windows) or the <emph>kill </emph>command (UNIX-like systems).</paragraph> - <paragraph role="tablecontent" id="par_id3150388" xml-lang="en-US">It cannot be used in conjunction with <emph>--quickstart</emph>.</paragraph> - <paragraph role="tablecontent" id="par_id3145147" xml-lang="en-US">More information is found in <emph>$[officename] Developer's Guide</emph>.</paragraph> + <paragraph role="tablecontent" id="par_id3154756">Starts in invisible mode.</paragraph> + <paragraph role="tablecontent" id="par_id3148914">Neither the start-up logo nor the initial program window will be visible. $[officename] software can be controlled, and documents and dialogs can be controlled and opened via the <link href="https://api.libreoffice.org">API</link>.</paragraph> + <paragraph role="tablecontent" id="par_id3147341">Using the parameter, $[officename] can only be ended using the taskmanager (Windows) or the <emph>kill </emph>command (UNIX-like systems).</paragraph> + <paragraph role="tablecontent" id="par_id3150388">It cannot be used in conjunction with <emph>--quickstart</emph>.</paragraph> + <paragraph role="tablecontent" id="par_id3145147">More information is found in <emph>$[officename] Developer's Guide</emph>.</paragraph> </tablecell> </tablerow> <tablerow> <tablecell> - <paragraph role="tablecontent" id="par_id3149595" localize="false" xml-lang="en-US"><emph>--headless</emph></paragraph> + <paragraph role="tablecontent" id="par_id3149595" localize="false"><emph>--headless</emph></paragraph> </tablecell> <tablecell> - <paragraph role="tablecontent" id="par_id3150530" xml-lang="en-US">Starts in "headless mode" which allows using the application without user interface.</paragraph> - <paragraph role="tablecontent" id="par_id3156353" xml-lang="en-US">This special mode can be used when the application is controlled by external clients via the <link href="https://api.libreoffice.org">API</link>.</paragraph> + <paragraph role="tablecontent" id="par_id3150530">Starts in "headless mode" which allows using the application without user interface.</paragraph> + <paragraph role="tablecontent" id="par_id3156353">This special mode can be used when the application is controlled by external clients via the <link href="https://api.libreoffice.org">API</link>.</paragraph> </tablecell> </tablerow> <tablerow> <tablecell> - <paragraph role="tablecontent" id="par_id3155903" localize="false" xml-lang="en-US"><emph>--norestore</emph></paragraph> + <paragraph role="tablecontent" id="par_id3155903" localize="false"><emph>--norestore</emph></paragraph> </tablecell> <tablecell> - <paragraph role="tablecontent" id="par_id3156374" xml-lang="en-US">Disables restart and file recovery after a system crash.</paragraph> + <paragraph role="tablecontent" id="par_id3156374">Disables restart and file recovery after a system crash.</paragraph> </tablecell> </tablerow> <tablerow> <tablecell> - <paragraph id="par_id20161204120031515" role="tablecontent" localize="false" xml-lang="en-US"><emph>--safe-mode</emph></paragraph> + <paragraph id="par_id20161204120031515" role="tablecontent" localize="false"><emph>--safe-mode</emph></paragraph> </tablecell> <tablecell> - <paragraph id="par_id20161204120122917" role="tablecontent" xml-lang="en-US">Starts in a safe mode, i.e. starts temporarily with a fresh user profile and helps to restore a broken configuration.</paragraph> + <paragraph id="par_id20161204120122917" role="tablecontent">Starts in a safe mode, i.e. starts temporarily with a fresh user profile and helps to restore a broken configuration.</paragraph> </tablecell> </tablerow> <tablerow> <tablecell> - <paragraph role="tablecontent" id="par_id3152479" localize="false" xml-lang="en-US"><emph>--accept={UNO}</emph></paragraph> + <paragraph role="tablecontent" id="par_id3152479" localize="false"><emph>--accept={UNO}</emph></paragraph> </tablecell> <tablecell> - <paragraph role="tablecontent" id="par_id3147130" xml-lang="en-US">Notifies $[officename] software that upon the creation of "UNO Acceptor Threads", a "UNO Accept String" will be used.</paragraph> - <paragraph id="par_id20161204120828147" role="tablecontent" xml-lang="en-US">UNO-URL is string the such kind <emph>uno:connection-type,params;protocol-name,params;ObjectName</emph>.</paragraph> - <paragraph role="tablecontent" id="par_id3148874" xml-lang="en-US">More information is found in <emph>$[officename] Developer's Guide</emph>.</paragraph> + <paragraph role="tablecontent" id="par_id3147130">Notifies $[officename] software that upon the creation of "UNO Acceptor Threads", a "UNO Accept String" will be used.</paragraph> + <paragraph id="par_id20161204120828147" role="tablecontent">UNO-URL is string the such kind <emph>uno:connection-type,params;protocol-name,params;ObjectName</emph>.</paragraph> + <paragraph role="tablecontent" id="par_id3148874">More information is found in <emph>$[officename] Developer's Guide</emph>.</paragraph> </tablecell> </tablerow> <tablerow> <tablecell> - <paragraph role="tablecontent" id="par_id315247a" localize="false" xml-lang="en-US"><emph>--unaccept={UNO-URL}</emph></paragraph> + <paragraph role="tablecontent" id="par_id315247a" localize="false"><emph>--unaccept={UNO-URL}</emph></paragraph> </tablecell> <tablecell> - <paragraph role="tablecontent" id="par_id314713a" xml-lang="en-US">Closes an acceptor that was created with <emph>--accept={UNO-URL}</emph>. Use <emph>--unaccept=all</emph> to close all open acceptors.</paragraph> + <paragraph role="tablecontent" id="par_id314713a">Closes an acceptor that was created with <emph>--accept={UNO-URL}</emph>. Use <emph>--unaccept=all</emph> to close all open acceptors.</paragraph> </tablecell> </tablerow> <tablerow> <tablecell> - <paragraph id="par_id20161204121324766" role="tablecontent" localize="false" xml-lang="en-US"><emph>--language={lang}</emph></paragraph> + <paragraph id="par_id20161204121324766" role="tablecontent" localize="false"><emph>--language={lang}</emph></paragraph> </tablecell> <tablecell> - <paragraph id="par_id20161204121422689" role="tablecontent" xml-lang="en-US">Uses specified language, if language is not selected yet for UI. The lang is a tag of the language in IETF language tag.</paragraph> + <paragraph id="par_id20161204121422689" role="tablecontent">Uses specified language, if language is not selected yet for UI. The lang is a tag of the language in IETF language tag.</paragraph> </tablecell> </tablerow> </table> @@ -336,18 +336,18 @@ <table id="tbl_id20170517002"> <tablerow> <tablecell> - <paragraph id="par_id20161304095215085" role="tablehead" localize="false" xml-lang="en-US"><embedvar href="text/shared/guide/start_parameters.xhp#parameter"/></paragraph> + <paragraph id="par_id20161304095215085" role="tablehead" localize="false"><embedvar href="text/shared/guide/start_parameters.xhp#parameter"/></paragraph> </tablecell> <tablecell> - <paragraph id="par_id201612030953917" role="tablehead" localize="false" xml-lang="en-US"><embedvar href="text/shared/guide/start_parameters.xhp#meaning"/></paragraph> + <paragraph id="par_id201612030953917" role="tablehead" localize="false"><embedvar href="text/shared/guide/start_parameters.xhp#meaning"/></paragraph> </tablecell> </tablerow> <tablerow> <tablecell> - <paragraph id="par_id2016120412214434" role="tablecontent" localize="false" xml-lang="en-US"><emph>--terminate_after_init</emph></paragraph> + <paragraph id="par_id2016120412214434" role="tablecontent" localize="false"><emph>--terminate_after_init</emph></paragraph> </tablecell> <tablecell> - <paragraph id="par_id20161204122216505" role="tablecontent" xml-lang="en-US">Exit after initialization complete (no documents loaded).</paragraph> + <paragraph id="par_id20161204122216505" role="tablecontent">Exit after initialization complete (no documents loaded).</paragraph> </tablecell> </tablerow> </table> @@ -405,66 +405,66 @@ <table id="tbl_id20170517003"> <tablerow> <tablecell> - <paragraph id="par_id20101204095215085" role="tablehead" localize="false" xml-lang="en-US"><embedvar href="text/shared/guide/start_parameters.xhp#parameter"/></paragraph> + <paragraph id="par_id20101204095215085" role="tablehead" localize="false"><embedvar href="text/shared/guide/start_parameters.xhp#parameter"/></paragraph> </tablecell> <tablecell> - <paragraph id="par_id201612040953987" role="tablehead" localize="false" xml-lang="en-US"><embedvar href="text/shared/guide/start_parameters.xhp#meaning"/></paragraph> + <paragraph id="par_id201612040953987" role="tablehead" localize="false"><embedvar href="text/shared/guide/start_parameters.xhp#meaning"/></paragraph> </tablecell> </tablerow> <tablerow> <tablecell> - <paragraph role="tablecontent" id="par_id3150010" localize="false" xml-lang="en-US"><emph>--writer</emph></paragraph> + <paragraph role="tablecontent" id="par_id3150010" localize="false"><emph>--writer</emph></paragraph> </tablecell> <tablecell> - <paragraph role="tablecontent" id="par_id3147213" xml-lang="en-US">Starts with an empty Writer document.</paragraph> + <paragraph role="tablecontent" id="par_id3147213">Starts with an empty Writer document.</paragraph> </tablecell> </tablerow> <tablerow> <tablecell> - <paragraph role="tablecontent" id="par_id3148616" localize="false" xml-lang="en-US"><emph>--calc</emph></paragraph> + <paragraph role="tablecontent" id="par_id3148616" localize="false"><emph>--calc</emph></paragraph> </tablecell> <tablecell> - <paragraph role="tablecontent" id="par_id3145261" xml-lang="en-US">Starts with an empty Calc document.</paragraph> + <paragraph role="tablecontent" id="par_id3145261">Starts with an empty Calc document.</paragraph> </tablecell> </tablerow> <tablerow> <tablecell> - <paragraph role="tablecontent" id="par_id3156443" localize="false" xml-lang="en-US"><emph>--draw</emph></paragraph> + <paragraph role="tablecontent" id="par_id3156443" localize="false"><emph>--draw</emph></paragraph> </tablecell> <tablecell> - <paragraph role="tablecontent" id="par_id3154011" xml-lang="en-US">Starts with an empty Draw document.</paragraph> + <paragraph role="tablecontent" id="par_id3154011">Starts with an empty Draw document.</paragraph> </tablecell> </tablerow> <tablerow> <tablecell> - <paragraph role="tablecontent" id="par_id3153142" localize="false" xml-lang="en-US"><emph>--impress</emph></paragraph> + <paragraph role="tablecontent" id="par_id3153142" localize="false"><emph>--impress</emph></paragraph> </tablecell> <tablecell> - <paragraph role="tablecontent" id="par_id3153222" xml-lang="en-US">Starts with an empty Impress document.</paragraph> + <paragraph role="tablecontent" id="par_id3153222">Starts with an empty Impress document.</paragraph> </tablecell> </tablerow> <tablerow> <tablecell> - <paragraph role="tablecontent" id="par_id3155853" localize="false" xml-lang="en-US"><emph>--math</emph></paragraph> + <paragraph role="tablecontent" id="par_id3155853" localize="false"><emph>--math</emph></paragraph> </tablecell> <tablecell> - <paragraph role="tablecontent" id="par_id3146928" xml-lang="en-US">Starts with an empty Math document.</paragraph> + <paragraph role="tablecontent" id="par_id3146928">Starts with an empty Math document.</paragraph> </tablecell> </tablerow> <tablerow> <tablecell> - <paragraph role="tablecontent" id="par_id3149960" localize="false" xml-lang="en-US"><emph>--global</emph></paragraph> + <paragraph role="tablecontent" id="par_id3149960" localize="false"><emph>--global</emph></paragraph> </tablecell> <tablecell> - <paragraph role="tablecontent" id="par_id3151075" xml-lang="en-US">Starts with an empty Writer master document.</paragraph> + <paragraph role="tablecontent" id="par_id3151075">Starts with an empty Writer master document.</paragraph> </tablecell> </tablerow> <tablerow> <tablecell> - <paragraph role="tablecontent" id="par_id3154510" localize="false" xml-lang="en-US"><emph>--web</emph></paragraph> + <paragraph role="tablecontent" id="par_id3154510" localize="false"><emph>--web</emph></paragraph> </tablecell> <tablecell> - <paragraph role="tablecontent" id="par_id3148836" xml-lang="en-US">Starts with an empty HTML document.</paragraph> + <paragraph role="tablecontent" id="par_id3148836">Starts with an empty HTML document.</paragraph> </tablecell> </tablerow> </table> @@ -473,72 +473,72 @@ <table id="tbl_id20170517004"> <tablerow> <tablecell> - <paragraph id="par_id20161204795215085" role="tablehead" localize="false" xml-lang="en-US"><embedvar href="text/shared/guide/start_parameters.xhp#parameter"/></paragraph> + <paragraph id="par_id20161204795215085" role="tablehead" localize="false"><embedvar href="text/shared/guide/start_parameters.xhp#parameter"/></paragraph> </tablecell> <tablecell> - <paragraph id="par_id201612040955917" role="tablehead" localize="false" xml-lang="en-US"><embedvar href="text/shared/guide/start_parameters.xhp#meaning"/></paragraph> + <paragraph id="par_id201612040955917" role="tablehead" localize="false"><embedvar href="text/shared/guide/start_parameters.xhp#meaning"/></paragraph> </tablecell> </tablerow> <tablerow> <tablecell> - <paragraph role="tablecontent" id="par_id3166421" localize="false" xml-lang="en-US"><emph>-n</emph></paragraph> + <paragraph role="tablecontent" id="par_id3166421" localize="false"><emph>-n</emph></paragraph> </tablecell> <tablecell> - <paragraph role="tablecontent" id="par_id3154259" xml-lang="en-US">Treats following files as templates for creation of new documents.</paragraph> + <paragraph role="tablecontent" id="par_id3154259">Treats following files as templates for creation of new documents.</paragraph> </tablecell> </tablerow> <tablerow> <tablecell> - <paragraph role="tablecontent" id="par_id3154372" localize="false" xml-lang="en-US"><emph>-o</emph></paragraph> + <paragraph role="tablecontent" id="par_id3154372" localize="false"><emph>-o</emph></paragraph> </tablecell> <tablecell> - <paragraph role="tablecontent" id="par_id3150309" xml-lang="en-US">Opens following files for editing, regardless whether they are templates or not.</paragraph> + <paragraph role="tablecontent" id="par_id3150309">Opens following files for editing, regardless whether they are templates or not.</paragraph> </tablecell> </tablerow> <tablerow> <tablecell> - <paragraph role="tablecontent" id="par_id3150883" localize="false" xml-lang="en-US"><emph>--pt {Printername}</emph></paragraph> + <paragraph role="tablecontent" id="par_id3150883" localize="false"><emph>--pt {Printername}</emph></paragraph> </tablecell> <tablecell> - <paragraph role="tablecontent" id="par_id3155081" xml-lang="en-US">Prints the following files to the printer <emph>{Printername}</emph> and ends. The splash screen does not appear.</paragraph> - <paragraph role="tablecontent" id="par_id3153655" xml-lang="en-US">If the file name contains spaces, then it must be enclosed in quotation marks.</paragraph> - <paragraph id="par_id20161204010513716" role="tablecontent" xml-lang="en-US">If used multiple times, only last <emph>{Printername}</emph> is effective for all documents of all <emph>--pt</emph> runs.</paragraph> - <paragraph id="par_id2016120401061890" role="tablecontent" xml-lang="en-US">Also, <emph>--printer-name</emph> argument of <emph>--print-to-file</emph> switch interferes with <emph>{Printername}</emph>.</paragraph> + <paragraph role="tablecontent" id="par_id3155081">Prints the following files to the printer <emph>{Printername}</emph> and ends. The splash screen does not appear.</paragraph> + <paragraph role="tablecontent" id="par_id3153655">If the file name contains spaces, then it must be enclosed in quotation marks.</paragraph> + <paragraph id="par_id20161204010513716" role="tablecontent">If used multiple times, only last <emph>{Printername}</emph> is effective for all documents of all <emph>--pt</emph> runs.</paragraph> + <paragraph id="par_id2016120401061890" role="tablecontent">Also, <emph>--printer-name</emph> argument of <emph>--print-to-file</emph> switch interferes with <emph>{Printername}</emph>.</paragraph> </tablecell> </tablerow> <tablerow> <tablecell> - <paragraph role="tablecontent" id="par_id3159238" localize="false" xml-lang="en-US"><emph>-p</emph></paragraph> + <paragraph role="tablecontent" id="par_id3159238" localize="false"><emph>-p</emph></paragraph> </tablecell> <tablecell> - <paragraph role="tablecontent" id="par_id3163666" xml-lang="en-US">Prints following files to the default printer, after which those files are closed. The splash screen does not appear.</paragraph> - <paragraph role="tablecontent" id="par_id3150828" xml-lang="en-US">If the file name contains spaces, then it must be enclosed in quotation marks.</paragraph> + <paragraph role="tablecontent" id="par_id3163666">Prints following files to the default printer, after which those files are closed. The splash screen does not appear.</paragraph> + <paragraph role="tablecontent" id="par_id3150828">If the file name contains spaces, then it must be enclosed in quotation marks.</paragraph> </tablecell> </tablerow> <tablerow> <tablecell> - <paragraph role="tablecontent" id="par_id3151182" localize="false" xml-lang="en-US"><emph>--view</emph></paragraph> + <paragraph role="tablecontent" id="par_id3151182" localize="false"><emph>--view</emph></paragraph> </tablecell> <tablecell> - <paragraph role="tablecontent" id="par_id3145268" xml-lang="en-US">Opens following files in viewer mode (read-only).</paragraph> + <paragraph role="tablecontent" id="par_id3145268">Opens following files in viewer mode (read-only).</paragraph> </tablecell> </tablerow> <tablerow> <tablecell> - <paragraph role="tablecontent" id="par_id3149403" xml-lang="en-US"><emph>--show[=N]</emph></paragraph> + <paragraph role="tablecontent" id="par_id3149403"><emph>--show[=N]</emph></paragraph> </tablecell> <tablecell> - <paragraph role="tablecontent" id="par_id3153838" xml-lang="en-US">Opens and starts the slideshow of the following presentation documents immediately. Files are closed after the showing. <literal>N</literal> in the example refers to the slide number and, when it is provided, they start at that slide.</paragraph> + <paragraph role="tablecontent" id="par_id3153838">Opens and starts the slideshow of the following presentation documents immediately. Files are closed after the showing. <literal>N</literal> in the example refers to the slide number and, when it is provided, they start at that slide.</paragraph> </tablecell> </tablerow> <tablerow> <tablecell> - <paragraph role="tablecontent" id="par_id314959p" localize="false" xml-lang="en-US"><emph>--convert-to OutputFileExtension</emph><br/><emph>[:OutputFilterName</emph><br/><emph>[:OutputFilterParams[,param]]]</emph><br/><emph> [--outdir output_dir]</emph></paragraph> + <paragraph role="tablecontent" id="par_id314959p" localize="false"><emph>--convert-to OutputFileExtension</emph><br/><emph>[:OutputFilterName</emph><br/><emph>[:OutputFilterParams[,param]]]</emph><br/><emph> [--outdir output_dir]</emph></paragraph> </tablecell> <tablecell> <section id="convertto"> - <paragraph id="par_id2016120401222926" role="tablecontent" xml-lang="en-US">If <emph>--convert-to</emph> is used more than once, last value of <emph>OutputFileExtension[:OutputFilterName[:OutputFilterParams]]</emph> is effective. If <emph>--outdir</emph> is used more than once, only its last value is effective. In absence of <emph>--outdir</emph>, current working directory is used for the result. For example:</paragraph> - <paragraph id="par_id20161204012319752" role="tablecontent" localize="false" xml-lang="en-US"><input>--convert-to pdf *.doc</input></paragraph> + <paragraph id="par_id2016120401222926" role="tablecontent">If <emph>--convert-to</emph> is used more than once, last value of <emph>OutputFileExtension[:OutputFilterName[:OutputFilterParams]]</emph> is effective. If <emph>--outdir</emph> is used more than once, only its last value is effective. In absence of <emph>--outdir</emph>, current working directory is used for the result. For example:</paragraph> + <paragraph id="par_id20161204012319752" role="tablecontent" localize="false"><input>--convert-to pdf *.doc</input></paragraph> <paragraph role="tablecontent" id="par_id311550932952863" localize="false"><input>--convert-to pdf:writer_pdf_Export --outdir /home/user *.doc</input></paragraph> <paragraph role="tablecontent" id="par_id231550932985601" localize="false"><input>--convert-to "html:XHTML Writer File:UTF8" *.doc</input></paragraph> <paragraph role="tablecontent" id="par_id211550932999288" localize="false"><input>--convert-to "txt:Text (encoded):UTF8" *.doc</input></paragraph> @@ -553,30 +553,30 @@ </tablerow> <tablerow> <tablecell> - <paragraph role="tablecontent" id="par_id314959q" localize="false" xml-lang="en-US"><emph>--print-to-file [--printer-name printer_name] [--outdir output_dir]</emph></paragraph> + <paragraph role="tablecontent" id="par_id314959q" localize="false"><emph>--print-to-file [--printer-name printer_name] [--outdir output_dir]</emph></paragraph> </tablecell> <tablecell> - <paragraph role="tablecontent" id="par_id315053q" xml-lang="en-US">Batch print files to file. If <emph>--outdir</emph> is not specified, then current working directory is used as output_dir.</paragraph> - <paragraph id="par_id20161204012928262" role="tablecontent" xml-lang="en-US">If <emph>--printer-name</emph> or <emph>--outdir</emph> used multiple times, only last value of each is effective. Also, <emph>{Printername}</emph> of <emph>--pt</emph> switch interferes with <emph>--printer-name</emph>. For example:</paragraph> - <paragraph id="par_id201612040131763" role="tablecontent" localize="false" xml-lang="en-US"><input>--print-to-file *.doc</input></paragraph> + <paragraph role="tablecontent" id="par_id315053q">Batch print files to file. If <emph>--outdir</emph> is not specified, then current working directory is used as output_dir.</paragraph> + <paragraph id="par_id20161204012928262" role="tablecontent">If <emph>--printer-name</emph> or <emph>--outdir</emph> used multiple times, only last value of each is effective. Also, <emph>{Printername}</emph> of <emph>--pt</emph> switch interferes with <emph>--printer-name</emph>. For example:</paragraph> + <paragraph id="par_id201612040131763" role="tablecontent" localize="false"><input>--print-to-file *.doc</input></paragraph> <paragraph role="tablecontent" id="par_id421550933601790" localize="false"><input>--print-to-file --printer-name nasty_lowres_printer --outdir /home/user *.doc</input></paragraph> </tablecell> </tablerow> <tablerow> <tablecell> - <paragraph id="par_id20161204013415783" role="tablecontent" localize="false" xml-lang="en-US"><emph>--cat</emph></paragraph> + <paragraph id="par_id20161204013415783" role="tablecontent" localize="false"><emph>--cat</emph></paragraph> </tablecell> <tablecell> - <paragraph id="par_id2016120401348732" role="tablecontent" xml-lang="en-US">Applies filter "txt:Text" to the following text documents and dump text content to console (implies <emph>--headless</emph>). Cannot be used with <emph>--convert-to</emph>.</paragraph> + <paragraph id="par_id2016120401348732" role="tablecontent">Applies filter "txt:Text" to the following text documents and dump text content to console (implies <emph>--headless</emph>). Cannot be used with <emph>--convert-to</emph>.</paragraph> </tablecell> </tablerow> <tablerow> <tablecell> - <paragraph id="par_id201612040137850" role="tablecontent" localize="false" xml-lang="en-US"><emph>-env:VAR[=VALUE]</emph></paragraph> + <paragraph id="par_id201612040137850" role="tablecontent" localize="false"><emph>-env:VAR[=VALUE]</emph></paragraph> </tablecell> <tablecell> - <paragraph id="par_id2016120401398657" role="tablecontent" xml-lang="en-US">Set a bootstrap variable. For example, to set a non-default user profile path:</paragraph> - <paragraph id="par_id20161204013922181" role="tablecontent" localize="false" xml-lang="en-US"> + <paragraph id="par_id2016120401398657" role="tablecontent">Set a bootstrap variable. For example, to set a non-default user profile path:</paragraph> + <paragraph id="par_id20161204013922181" role="tablecontent" localize="false"> <switchinline select="sys"> <caseinline select="WIN"><input>soffice.com -env:UserInstallation=file:///c:/my-test-profile</input> </caseinline> <caseinline select="MAC"><input>open LibreOffice.app -env:UserInstallation=file:///tmp/test</input> </caseinline> @@ -590,42 +590,42 @@ <table id="tbl_id20170517005"> <tablerow> <tablecell> - <paragraph id="par_id20161200095215085" role="tablehead" localize="false" xml-lang="en-US"><embedvar href="text/shared/guide/start_parameters.xhp#parameter"/></paragraph> + <paragraph id="par_id20161200095215085" role="tablehead" localize="false"><embedvar href="text/shared/guide/start_parameters.xhp#parameter"/></paragraph> </tablecell> <tablecell> - <paragraph id="par_id201312040953917" role="tablehead" localize="false" xml-lang="en-US"><embedvar href="text/shared/guide/start_parameters.xhp#meaning"/></paragraph> + <paragraph id="par_id201312040953917" role="tablehead" localize="false"><embedvar href="text/shared/guide/start_parameters.xhp#meaning"/></paragraph> </tablecell> </tablerow> <tablerow> <tablecell> - <paragraph id="par_id2016120401411383" role="tablecontent" localize="false" xml-lang="en-US"><emph>-psn</emph></paragraph> + <paragraph id="par_id2016120401411383" role="tablecontent" localize="false"><emph>-psn</emph></paragraph> </tablecell> <tablecell> - <paragraph id="par_id2016120401435616" role="tablecontent" xml-lang="en-US">Ignored (macOS only)</paragraph> + <paragraph id="par_id2016120401435616" role="tablecontent">Ignored (macOS only)</paragraph> </tablecell> </tablerow> <tablerow> <tablecell> - <paragraph id="par_id20161204014316430" role="tablecontent" localize="false" xml-lang="en-US"><emph>-Embedding </emph></paragraph> + <paragraph id="par_id20161204014316430" role="tablecontent" localize="false"><emph>-Embedding </emph></paragraph> </tablecell> <tablecell> - <paragraph id="par_id20161204014423695" role="tablecontent" xml-lang="en-US">Ignored (COM+ related; Windows only)</paragraph> + <paragraph id="par_id20161204014423695" role="tablecontent">Ignored (COM+ related; Windows only)</paragraph> </tablecell> </tablerow> <tablerow> <tablecell> - <paragraph id="par_id20161204014422700" role="tablecontent" localize="false" xml-lang="en-US"><emph>--nofirststartwizard</emph></paragraph> + <paragraph id="par_id20161204014422700" role="tablecontent" localize="false"><emph>--nofirststartwizard</emph></paragraph> </tablecell> <tablecell> - <paragraph id="par_id20161204014529900" role="tablecontent" xml-lang="en-US">Does nothing, accepted only for backward compatibility.</paragraph> + <paragraph id="par_id20161204014529900" role="tablecontent">Does nothing, accepted only for backward compatibility.</paragraph> </tablecell> </tablerow> <tablerow> <tablecell> - <paragraph id="par_id20161204014532015" role="tablecontent" localize="false" xml-lang="en-US"><emph>--protector {arg1} {arg2}</emph></paragraph> + <paragraph id="par_id20161204014532015" role="tablecontent" localize="false"><emph>--protector {arg1} {arg2}</emph></paragraph> </tablecell> <tablecell> - <paragraph id="par_id2016120401463584" role="tablecontent" xml-lang="en-US">Used only in unit tests and should have two arguments.</paragraph> + <paragraph id="par_id2016120401463584" role="tablecontent">Used only in unit tests and should have two arguments.</paragraph> </tablecell> </tablerow> </table>
