fix(legacy): update or remove broken links
This commit is contained in:
parent
4bb5f58a7c
commit
6b16df8966
33 changed files with 3210 additions and 3216 deletions
|
@ -59,7 +59,7 @@
|
|||
"js/airtime/dashboard/versiontooltip.js": "f267c6ec0205e98f1ffba5f636928f7a",
|
||||
"js/airtime/library/events/library_playlistbuilder.js": "1e0aa11953c7ff243cd2df241cc8a296",
|
||||
"js/airtime/library/events/library_showbuilder.js": "996a5c3008eb17552ee8f891d88c9341",
|
||||
"js/airtime/library/library.js": "54b969bd06ddc919a7fba9cadc693567",
|
||||
"js/airtime/library/library.js": "d47ed07f83c68271b2e3bb50d4eb2b8f",
|
||||
"js/airtime/library/plupload.js": "7f754a28ac2d4060aec918c688a74a22",
|
||||
"js/airtime/library/podcast.js": "f4fd354d739e7121ba00162496c295df",
|
||||
"js/airtime/library/publish.js": "851ef4c4caa9e9220acf945c21760189",
|
||||
|
@ -80,7 +80,7 @@
|
|||
"js/airtime/preferences/musicdirs.js": "72312faa4081949d5c17ce2d3428dbdc",
|
||||
"js/airtime/preferences/preferences.js": "73aec5c4969eef8f6b02f044b00425c3",
|
||||
"js/airtime/preferences/streamsetting.js": "b45e7ad91d0b3f5e582fd3bd4c697a05",
|
||||
"js/airtime/schedule/add-show.js": "22ce11f5ffd513be4f3492af1001ebdf",
|
||||
"js/airtime/schedule/add-show.js": "4984c9bdac1e541eecab2541e21450a7",
|
||||
"js/airtime/schedule/full-calendar-functions.js": "09ac64ebbe48666dcc3c4669b12509b7",
|
||||
"js/airtime/schedule/schedule.js": "d835a1c6110c033edf5c8d0abb701d7c",
|
||||
"js/airtime/showbuilder/builder.js": "08338d5f8e957bda2bac397e958f5610",
|
||||
|
|
|
@ -15,9 +15,7 @@ class Application_Common_LocaleHelper
|
|||
* From: https://www.binarytides.com/php-array-of-iso-639-1-language-codes-and-names/
|
||||
*
|
||||
* ISO 639-1 Language Codes
|
||||
* References :
|
||||
* 1. https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes
|
||||
* 2. https://blog.xoundboy.com/?p=235
|
||||
* https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes
|
||||
*/
|
||||
return [
|
||||
'en' => _('English'),
|
||||
|
|
|
@ -459,7 +459,7 @@ final class LocaleController extends Zend_Controller_Action
|
|||
'Disabled' => _('Disabled'),
|
||||
'Cancel upload' => _('Cancel upload'),
|
||||
'Type' => _('Type'),
|
||||
"Autoloading playlists' contents are added to shows one hour before the show airs. <a target='_blank' href='https://libretime.org/docs/playlists'>More information</a>" => _("Autoloading playlists' contents are added to shows one hour before the show airs. <a target='_blank' href='https://libretime.org/docs/playlists'>More information</a>"),
|
||||
"Autoloading playlists' contents are added to shows one hour before the show airs. <a target='_blank' href='https://libretime.org/docs/user-manual/playlists/'>More information</a>" => _("Autoloading playlists' contents are added to shows one hour before the show airs. <a target='_blank' href='https://libretime.org/docs/user-manual/playlists/'>More information</a>"),
|
||||
'Podcast settings saved' => _('Podcast settings saved'),
|
||||
'Are you sure you want to delete this user?' => _('Are you sure you want to delete this user?'),
|
||||
"Can't delete yourself!" => _("Can't delete yourself!"),
|
||||
|
|
|
@ -29,7 +29,6 @@ class Application_Model_ServiceRegister
|
|||
// Need to convert ipv6 to ipv4 since Monit server does not appear
|
||||
// to allow access via an ipv6 address.
|
||||
// http://[::1]:2812 does not respond.
|
||||
// Bug: https://savannah.nongnu.org/bugs/?27608
|
||||
if ($p_ipAddress == '::1') {
|
||||
$p_ipAddress = '127.0.0.1';
|
||||
}
|
||||
|
|
|
@ -108,7 +108,7 @@ class Application_Model_StoredFile
|
|||
* Set multiple metadata values using defined metadata constants.
|
||||
*
|
||||
* @param array $p_md
|
||||
* example: $p_md['MDATA_KEY_URL'] = 'http://www.fake.com'
|
||||
* example: $p_md['MDATA_KEY_URL'] = 'https://example.org'
|
||||
*/
|
||||
public function setMetadata($p_md = null)
|
||||
{
|
||||
|
@ -163,7 +163,7 @@ class Application_Model_StoredFile
|
|||
* Set multiple metadata values using database columns as indexes.
|
||||
*
|
||||
* @param array $p_md
|
||||
* example: $p_md['url'] = 'http://www.fake.com'
|
||||
* example: $p_md['url'] = 'https://www.example.com'
|
||||
*/
|
||||
public function setDbColMetadata($p_md = null)
|
||||
{
|
||||
|
|
|
@ -179,7 +179,7 @@ class Application_Model_Webstream implements Application_Model_LibraryEditable
|
|||
$mediaUrl = null;
|
||||
if ($result == 0) {
|
||||
$valid['url'][0] = false;
|
||||
$valid['url'][1] = _('URL should be of form "http://domain"');
|
||||
$valid['url'][1] = _('URL should be of form "https://example.org"');
|
||||
} elseif (strlen($url) > 512) {
|
||||
$valid['url'][0] = false;
|
||||
$valid['url'][1] = _('URL should be 512 characters or less');
|
||||
|
@ -344,7 +344,7 @@ class Application_Model_Webstream implements Application_Model_LibraryEditable
|
|||
* 0 => "HTTP/1.1 302 Moved Temporarily",
|
||||
* 1 => "X-Powered-By: Servlet/3.0 JSP/2.2 (GlassFish Server Open Source Edition 3.1.1 Java/Sun Microsystems Inc./1.6)",
|
||||
* 2 => "Server: GlassFish Server Open Source Edition 3.1.1",
|
||||
* 3 => "Location: https://3043.live.streamtheworld.com:80/SAM04AAC89_SC",
|
||||
* 3 => "Location: https://example.org/SAM04AAC89_SC",
|
||||
* 4 => "Content-Type: text/html;charset=ISO-8859-1",
|
||||
* 5 => "Content-Language: en-US",
|
||||
* 6 => "Content-Length: 202",
|
||||
|
|
|
@ -2,9 +2,6 @@
|
|||
|
||||
/**
|
||||
* Class Rest_RouteController.
|
||||
*
|
||||
* Taken from https://github.com/aporat/Application_Rest_Controller_Route
|
||||
* to enable hierarchy routing
|
||||
*/
|
||||
class Rest_RouteController extends Zend_Controller_Router_Route
|
||||
{
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
</dd>
|
||||
|
||||
<div id="add_show_playlist_dropdown">
|
||||
<p><?php echo _("Autoloading playlists' contents are added to shows one hour before the show airs. <a target='_blank' href='http://libretime.org/docs/playlists'>More information</a>"); ?></p>
|
||||
<p><?php echo _("Autoloading playlists' contents are added to shows one hour before the show airs. <a target='_blank' href='https://libretime.org/docs/user-manual/playlists/'>More information</a>"); ?></p>
|
||||
<dt id="add_show_autoplaylist_id">
|
||||
<label for="add_show_autoplaylist_id" class="required">
|
||||
<?php echo $this->element->getElement('add_show_autoplaylist_id')->getLabel() ?>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue