Switch various user facing URLs to HTTPS

Fixes #26687.
This commit is contained in:
Lyndon Brown 2022-03-08 21:35:56 +00:00 committed by Rémi Denis-Courmont
parent 80cded3b6a
commit e1194a5f29
11 changed files with 16 additions and 16 deletions

View File

@ -96,7 +96,7 @@ streaming and conversion of multimedia files and streams.
Some useful links that might help you:
- [VLC web site](http://www.videolan.org/vlc/)
- [VLC web site](https://www.videolan.org/vlc/)
- [Support](https://www.videolan.org/support/)
- [Forums](https://forum.videolan.org/)
- [Wiki](https://wiki.videolan.org/)

View File

@ -6,7 +6,7 @@
name="VideoLAN.VLC"
type="win32"
/>
<description>see http://www.videolan.org/</description>
<description>see https://www.videolan.org/</description>
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v3">
<security>
<requestedPrivileges>

View File

@ -120,7 +120,7 @@ vlc_module_begin ()
MP3_TEXT, MP3_LONGTEXT )
add_string( SOUT_CFG_PREFIX "genre", "Alternative",
GENRE_TEXT, GENRE_LONGTEXT )
add_string( SOUT_CFG_PREFIX "url", "http://www.videolan.org/vlc",
add_string( SOUT_CFG_PREFIX "url", "https://www.videolan.org/vlc",
URL_TEXT, URL_LONGTEXT )
add_string( SOUT_CFG_PREFIX "bitrate", "",
BITRATE_TEXT, BITRATE_LONGTEXT )

View File

@ -97,7 +97,7 @@ void FingerprintDialog::handleResults()
QLabel *label = new QLabel(
QString( "<h3 style=\"margin: 0\"><a style=\"text-decoration:none\" href=\"%1\">%2</a></h3>"
"<span style=\"padding-left:20px\">%3</span>" )
.arg( QString( "http://mb.videolan.org/recording/%1" ).arg( mb_id ) )
.arg( QString( "https://mb.videolan.org/recording/%1" ).arg( mb_id ) )
.arg( qfu( vlc_meta_Get( p_meta, vlc_meta_Title ) ) )
.arg( qfu( vlc_meta_Get( p_meta, vlc_meta_Artist ) ) )
);

View File

@ -88,7 +88,7 @@ AboutDialog::AboutDialog( qt_intf_t *_p_intf)
ui.title->setText("<html><head/><body><p><span style=\" font-size:26pt; color:#353535;\"> " + qtr( "VLC media player" ) + " </span></p></body></html>");
ui.MainBlabla->setText("<html><head/><body>" +
qtr( "<p>VLC media player is a free and open source media player, encoder, and streamer made by the volunteers of the <a href=\"http://www.videolan.org/\"><span style=\" text-decoration: underline; color:#0057ae;\">VideoLAN</span></a> community.</p><p>VLC uses its internal codecs, works on essentially every popular platform, and can read almost all files, CDs, DVDs, network streams, capture cards and other media formats!</p><p><a href=\"http://www.videolan.org/contribute/\"><span style=\" text-decoration: underline; color:#0057ae;\">Help and join us!</span></a>" ) +
qtr( "<p>VLC media player is a free and open source media player, encoder, and streamer made by the volunteers of the <a href=\"https://www.videolan.org/\"><span style=\" text-decoration: underline; color:#0057ae;\">VideoLAN</span></a> community.</p><p>VLC uses its internal codecs, works on essentially every popular platform, and can read almost all files, CDs, DVDs, network streams, capture cards and other media formats!</p><p><a href=\"https://www.videolan.org/contribute/\"><span style=\" text-decoration: underline; color:#0057ae;\">Help and join us!</span></a>" ) +
"</p></body> </html>");
#if 0

View File

@ -764,7 +764,7 @@ SPrefsPanel::SPrefsPanel( qt_intf_t *_p_intf, QWidget *_parent,
// ui.defaultLabel->setFont( italicFont );
ui.skinsLabel->setText(
qtr( "This is VLC's skinnable interface. You can download other skins at" )
+ QString( " <a href=\"http://www.videolan.org/vlc/skins.php\">" )
+ QString( " <a href=\"https://www.videolan.org/vlc/skins.php\">" )
+ qtr( "VLC skins website" ) + QString( "</a>." ) );
ui.skinsLabel->setFont( italicFont );

View File

@ -718,7 +718,7 @@ static void *Run(void *data)
_("Last.fm username not set"),
"%s", _("Please set a username or disable the "
"audioscrobbler plugin, and restart VLC.\n"
"Visit http://www.last.fm/join/ to get an account."));
"Visit https://www.last.fm/join/ to get an account."));
goto out;
case VLC_SUCCESS:

View File

@ -93,7 +93,7 @@ local options = {
int_os_password = 'Password',
int_help_mess =[[
Download subtitles from
<a href='http://www.opensubtitles.org/'>
<a href='https://www.opensubtitles.org/'>
opensubtitles.org
</a> and display them while watching a video.<br>
<br>
@ -130,7 +130,7 @@ local options = {
they're important.<br>
<br>
Find more VLC extensions at
<a href='http://addons.videolan.org'>addons.videolan.org</a>.
<a href='https://addons.videolan.org'>addons.videolan.org</a>.
]],
int_no_support_mess = [[
<strong>VLSub is not working with VLC 2.1.x on
@ -332,7 +332,7 @@ function descriptor()
title = "VLsub 0.11.1",
version = "0.11.1",
author = "exebetche",
url = 'http://www.opensubtitles.org/',
url = 'https://www.opensubtitles.org/',
shortdesc = "VLsub";
description = options.translation.int_descr,
capabilities = {"menu", "input-listener" }

View File

@ -124,8 +124,8 @@ function callback_error(path,url,msg)
<h1>Error loading ]]..url..[[</h1><pre>]]..(config.no_error_detail and "Remove configuration option `no_error_detail' on the server to get more information."
or vlc.strings.convert_xml_special_chars(tostring(msg)))..[[</pre>
<p>
<a href="http://www.videolan.org/">VideoLAN</a><br/>
<a href="http://www.lua.org/manual/5.1/">Lua 5.1 Reference Manual</a>
<a href="https://www.videolan.org/">VideoLAN</a><br/>
<a href="https://www.lua.org/manual/5.1/">Lua 5.1 Reference Manual</a>
</p>
</body>
</html>]]

View File

@ -29,13 +29,13 @@
<update_contact>vlc-devel -- videolan.org</update_contact>
<screenshots>
<screenshot type="default">
<image>http://images.videolan.org/vlc/screenshots/2.0.0/vlc-2.0-poney.jpg</image>
<image>https://images.videolan.org/vlc/screenshots/2.0.0/vlc-2.0-poney.jpg</image>
</screenshot>
<screenshot type="default">
<image>http://images.videolan.org/vlc/screenshots/2.0.0/vlc-2.0-gnome3-open.jpg</image>
<image>https://images.videolan.org/vlc/screenshots/2.0.0/vlc-2.0-gnome3-open.jpg</image>
</screenshot>
<screenshot type="default">
<image>http://images.videolan.org/vlc/screenshots/2.0.0/vlc-2.0-gnome3-debian.jpg</image>
<image>https://images.videolan.org/vlc/screenshots/2.0.0/vlc-2.0-gnome3-debian.jpg</image>
</screenshot>
</screenshots>
</component>

View File

@ -1576,7 +1576,7 @@ static char *Save( vlm_t *vlm )
{
const char *psz_header = "\n"
"# VLC media player VLM command batch\n"
"# http://www.videolan.org/vlc/\n\n" ;
"# https://www.videolan.org/vlc/\n\n" ;
struct vlc_memstream stream;