mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-04-18 15:09:39 +02:00
2020-12-09 Fred Gleason <fredg@paravelsystems.com>
* Added a deprecation warning for the 'Allow Duplicate Cart Titles' and 'Auto-Correct Duplicate Cart Titles' checkboxes on the 'System-Wide Settings' dialog in rdadmin(1) as well as the Operations Guide. Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
This commit is contained in:
parent
c89feb5ad1
commit
414f2e2267
@ -20673,3 +20673,8 @@
|
|||||||
in rdadmin(1) was unchecked.
|
in rdadmin(1) was unchecked.
|
||||||
2020-12-09 Fred Gleason <fredg@paravelsystems.com>
|
2020-12-09 Fred Gleason <fredg@paravelsystems.com>
|
||||||
* Fixed a typo in 'lib/rdcart.h' that broke the build.
|
* Fixed a typo in 'lib/rdcart.h' that broke the build.
|
||||||
|
2020-12-09 Fred Gleason <fredg@paravelsystems.com>
|
||||||
|
* Added a deprecation warning for the 'Allow Duplicate Cart Titles'
|
||||||
|
and 'Auto-Correct Duplicate Cart Titles' checkboxes on the
|
||||||
|
'System-Wide Settings' dialog in rdadmin(1) as well as the
|
||||||
|
Operations Guide.
|
||||||
|
@ -2518,10 +2518,8 @@
|
|||||||
system and not altered thereafter.
|
system and not altered thereafter.
|
||||||
</para>
|
</para>
|
||||||
<warning>
|
<warning>
|
||||||
<para>
|
Changing this setting on a system with existing audio in the
|
||||||
Changing this setting on a system with existing audio in the
|
audio store may result in incorrect play-out of that audio!
|
||||||
audio store may result in incorrect play-out of that audio!
|
|
||||||
</para>
|
|
||||||
</warning>
|
</warning>
|
||||||
<para>
|
<para>
|
||||||
The <computeroutput>Allow Duplicate Cart Titles</computeroutput> box,
|
The <computeroutput>Allow Duplicate Cart Titles</computeroutput> box,
|
||||||
@ -2533,6 +2531,14 @@
|
|||||||
"<userinput>[n]</userinput>", (where <userinput>n</userinput>
|
"<userinput>[n]</userinput>", (where <userinput>n</userinput>
|
||||||
is an integer) to the end of the title string.
|
is an integer) to the end of the title string.
|
||||||
</para>
|
</para>
|
||||||
|
<warning>
|
||||||
|
The ability to disallow duplicate cart titles in Rivendell
|
||||||
|
<emphasis role="bold">has been deprecated</emphasis>
|
||||||
|
and may be removed from future versions; it is included
|
||||||
|
strictly to keep existing setups working. Use of it can cause other
|
||||||
|
features within Rivendell to operate unreliably. It should never be
|
||||||
|
used in new Rivendell setups!
|
||||||
|
</warning>
|
||||||
<para>
|
<para>
|
||||||
If the <computeroutput>Show User List in RDLogin</computeroutput> box
|
If the <computeroutput>Show User List in RDLogin</computeroutput> box
|
||||||
is ticked, rdlogin(1) will require users to enter their user name as
|
is ticked, rdlogin(1) will require users to enter their user name as
|
||||||
@ -2706,9 +2712,14 @@
|
|||||||
<sect1 xml:id="sect.rdadmin.configuring_webget">
|
<sect1 xml:id="sect.rdadmin.configuring_webget">
|
||||||
<title>Configuring Webget</title>
|
<title>Configuring Webget</title>
|
||||||
<para>
|
<para>
|
||||||
Configuration of the Webget service consists of two tasks:
|
Configuration of the Webget service consists of three tasks:
|
||||||
</para>
|
</para>
|
||||||
<itemizedlist>
|
<itemizedlist>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
Configure Rivendell to disallow duplicate cart titles.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>
|
<para>
|
||||||
Configure a set of Encoder Formats
|
Configure a set of Encoder Formats
|
||||||
@ -2720,6 +2731,13 @@
|
|||||||
</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
</itemizedlist>
|
</itemizedlist>
|
||||||
|
<sect2 xml:id="sect.rdadmin.disallowing_duplicate_cart_titles">
|
||||||
|
<title>Disallowing Duplicate Cart Titles</title>
|
||||||
|
<para>
|
||||||
|
See "Allow Duplicate Cart Titles" checkbox in
|
||||||
|
<xref linkend="sect.rdadmin.manage_system_settings" />.
|
||||||
|
</para>
|
||||||
|
</sect2>
|
||||||
<sect2 xml:id="sect.rdadmin.configuring_encoder_formats">
|
<sect2 xml:id="sect.rdadmin.configuring_encoder_formats">
|
||||||
<title>Configuring Encoder Formats</title>
|
<title>Configuring Encoder Formats</title>
|
||||||
<para>
|
<para>
|
||||||
|
@ -283,6 +283,16 @@ QSizePolicy EditSystem::sizePolicy() const
|
|||||||
|
|
||||||
void EditSystem::duplicatesCheckedData(bool state)
|
void EditSystem::duplicatesCheckedData(bool state)
|
||||||
{
|
{
|
||||||
|
if((!state)&&edit_system->allowDuplicateCartTitles()) {
|
||||||
|
if(QMessageBox::warning(this,"RDAdmin - "+tr("Deprecation Warning"),
|
||||||
|
tr("The ability to disallow duplicate cart titles in Rivendell <strong>has been deprecated</strong> and may be removed from future versions; it is included strictly to keep existing setups working. Use of it can cause other features within Rivendell to operate unreliably. It should never be used in new Rivendell setups!")+"<p>"+
|
||||||
|
tr("Attempt to disallow duplicate cart titles anyway?"),
|
||||||
|
QMessageBox::No,QMessageBox::Yes)!=QMessageBox::Yes) {
|
||||||
|
edit_duplicate_carts_box->setChecked(true);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
edit_fix_duplicate_carts_box->setDisabled(state);
|
edit_fix_duplicate_carts_box->setDisabled(state);
|
||||||
edit_fix_duplicate_carts_label->setDisabled(state);
|
edit_fix_duplicate_carts_label->setDisabled(state);
|
||||||
}
|
}
|
||||||
|
@ -4488,6 +4488,18 @@ List</source>
|
|||||||
<source>Origin E-Mail Address</source>
|
<source>Origin E-Mail Address</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>Deprecation Warning</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The ability to disallow duplicate cart titles in Rivendell <strong>has been deprecated</strong> and may be removed from future versions; it is included strictly to keep existing setups working. Use of it can cause other features within Rivendell to operate unreliably. It should never be used in new Rivendell setups!</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>Attempt to disallow duplicate cart titles anyway?</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
</context>
|
</context>
|
||||||
<context>
|
<context>
|
||||||
<name>EditTtys</name>
|
<name>EditTtys</name>
|
||||||
|
@ -4233,6 +4233,18 @@ List</source>
|
|||||||
<source>Origin E-Mail Address</source>
|
<source>Origin E-Mail Address</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>Deprecation Warning</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The ability to disallow duplicate cart titles in Rivendell <strong>has been deprecated</strong> and may be removed from future versions; it is included strictly to keep existing setups working. Use of it can cause other features within Rivendell to operate unreliably. It should never be used in new Rivendell setups!</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>Attempt to disallow duplicate cart titles anyway?</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
</context>
|
</context>
|
||||||
<context>
|
<context>
|
||||||
<name>EditTtys</name>
|
<name>EditTtys</name>
|
||||||
|
@ -4429,6 +4429,18 @@ List</source>
|
|||||||
<source>Origin E-Mail Address</source>
|
<source>Origin E-Mail Address</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>Deprecation Warning</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The ability to disallow duplicate cart titles in Rivendell <strong>has been deprecated</strong> and may be removed from future versions; it is included strictly to keep existing setups working. Use of it can cause other features within Rivendell to operate unreliably. It should never be used in new Rivendell setups!</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>Attempt to disallow duplicate cart titles anyway?</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
</context>
|
</context>
|
||||||
<context>
|
<context>
|
||||||
<name>EditTtys</name>
|
<name>EditTtys</name>
|
||||||
|
@ -3492,6 +3492,18 @@ List</source>
|
|||||||
<source>Origin E-Mail Address</source>
|
<source>Origin E-Mail Address</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>Deprecation Warning</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The ability to disallow duplicate cart titles in Rivendell <strong>has been deprecated</strong> and may be removed from future versions; it is included strictly to keep existing setups working. Use of it can cause other features within Rivendell to operate unreliably. It should never be used in new Rivendell setups!</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>Attempt to disallow duplicate cart titles anyway?</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
</context>
|
</context>
|
||||||
<context>
|
<context>
|
||||||
<name>EditTtys</name>
|
<name>EditTtys</name>
|
||||||
|
@ -4138,6 +4138,18 @@ List</source>
|
|||||||
<source>Origin E-Mail Address</source>
|
<source>Origin E-Mail Address</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>Deprecation Warning</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The ability to disallow duplicate cart titles in Rivendell <strong>has been deprecated</strong> and may be removed from future versions; it is included strictly to keep existing setups working. Use of it can cause other features within Rivendell to operate unreliably. It should never be used in new Rivendell setups!</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>Attempt to disallow duplicate cart titles anyway?</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
</context>
|
</context>
|
||||||
<context>
|
<context>
|
||||||
<name>EditTtys</name>
|
<name>EditTtys</name>
|
||||||
|
@ -4138,6 +4138,18 @@ List</source>
|
|||||||
<source>Origin E-Mail Address</source>
|
<source>Origin E-Mail Address</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>Deprecation Warning</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The ability to disallow duplicate cart titles in Rivendell <strong>has been deprecated</strong> and may be removed from future versions; it is included strictly to keep existing setups working. Use of it can cause other features within Rivendell to operate unreliably. It should never be used in new Rivendell setups!</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>Attempt to disallow duplicate cart titles anyway?</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
</context>
|
</context>
|
||||||
<context>
|
<context>
|
||||||
<name>EditTtys</name>
|
<name>EditTtys</name>
|
||||||
|
@ -4213,6 +4213,18 @@ List</source>
|
|||||||
<source>Origin E-Mail Address</source>
|
<source>Origin E-Mail Address</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>Deprecation Warning</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The ability to disallow duplicate cart titles in Rivendell <strong>has been deprecated</strong> and may be removed from future versions; it is included strictly to keep existing setups working. Use of it can cause other features within Rivendell to operate unreliably. It should never be used in new Rivendell setups!</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>Attempt to disallow duplicate cart titles anyway?</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
</context>
|
</context>
|
||||||
<context>
|
<context>
|
||||||
<name>EditTtys</name>
|
<name>EditTtys</name>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user