mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-07-24 00:18:13 +02:00
2016-05-26 Fred Gleason <fredg@paravelsystems.com>
* Documented the '--escape-string' switch in 'docs/docbook/rdexport.xml'.
This commit is contained in:
parent
81a60f85d6
commit
f2d831f86c
@ -15178,3 +15178,6 @@
|
||||
'docs/docbook/rdexport.xml'.
|
||||
* Documented the '--continue-after-error' switch in
|
||||
'docs/docbook/rdexport.xml'.
|
||||
2016-05-26 Fred Gleason <fredg@paravelsystems.com>
|
||||
* Documented the '--escape-string' switch in
|
||||
'docs/docbook/rdexport.xml'.
|
||||
|
@ -85,6 +85,27 @@
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
|
||||
<varlistentry>
|
||||
<term>
|
||||
<option>--escape-string=</option><replaceable>string</replaceable>
|
||||
</term>
|
||||
<listitem>
|
||||
<para>
|
||||
Specify the string to use to replace illegal characters in output
|
||||
filenames. Illegal characters that will be so replaced are:
|
||||
<userinput>*</userinput>,
|
||||
<userinput>/</userinput>,
|
||||
<userinput><</userinput>,
|
||||
<userinput>></userinput>,
|
||||
<userinput>"</userinput>,
|
||||
<userinput>\</userinput>,
|
||||
<userinput>|</userinput> and
|
||||
<userinput>?</userinput>.
|
||||
Default value is <userinput>_</userinput>.
|
||||
</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
|
||||
<varlistentry>
|
||||
<term>
|
||||
<option>--group=</option><replaceable>group-name</replaceable>
|
||||
|
@ -381,7 +381,6 @@ QString MainObject::SanitizePath(const QString &pathname) const
|
||||
ret.replace(":",export_escape_string);
|
||||
ret.replace("<",export_escape_string);
|
||||
ret.replace(">",export_escape_string);
|
||||
ret.replace(":",export_escape_string);
|
||||
ret.replace("\"",export_escape_string);
|
||||
ret.replace("\\",export_escape_string);
|
||||
ret.replace("|",export_escape_string);
|
||||
|
Loading…
x
Reference in New Issue
Block a user