Skip to content

Commit

Permalink
Update URLs: http --> https.
Browse files Browse the repository at this point in the history
  • Loading branch information
tehnick committed Sep 2, 2018
1 parent 65510d3 commit 627e827
Show file tree
Hide file tree
Showing 108 changed files with 288 additions and 288 deletions.
2 changes: 1 addition & 1 deletion COPYING
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with
this program. If not, see <http://www.gnu.org/licenses/>.
this program. If not, see <https://www.gnu.org/licenses/>.


TERMS AND CONDITIONS FOR LINKING AGAINST OpenSSL
Expand Down
4 changes: 2 additions & 2 deletions ChangeLog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
[Thanks to Pavel Pimenov]
* Added options: LogFileSpy, LogFormatSpy (issue 1403)
* [NMDC] Prevent crashes when receiving malicious search requests
http://sourceforge.net/p/dcplusplus/code/ci/1d751b2467b5af9b921e694bca29ee47f5311608/
https://sourceforge.net/p/dcplusplus/code/ci/1d751b2467b5af9b921e694bca29ee47f5311608/
[Thanks to Pavel Pimenov]
* Add parse tags TS and HIT in filelists
* [NMDC] Add support CTM2HUB
Expand Down Expand Up @@ -348,7 +348,7 @@
This option is disabled in the settings by default. It is possible to
completely remove support for DHT during configuration (option -DWITH_DHT
for cmake). DHT requires white external IPv4 for a work. See also:
http://en.wikipedia.org/wiki/Distributed_hash_table
https://en.wikipedia.org/wiki/Distributed_hash_table
* Fixed build in Mac OS X.
*** eiskaltdcpp-qt ***
* Added some options in settings dialog: DHT, DHT_PORT
Expand Down
8 changes: 4 additions & 4 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
GNU GENERAL PUBLIC LICENSE
Version 3, 29 June 2007

Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
Copyright (C) 2007 Free Software Foundation, Inc. <https://www.fsf.org/>
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.

Expand Down Expand Up @@ -645,7 +645,7 @@ the "copyright" line and a pointer to where the full notice is found.
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
along with this program. If not, see <https://www.gnu.org/licenses/>.

Also add information on how to contact you by electronic and paper mail.

Expand All @@ -664,12 +664,12 @@ might be different; for a GUI interface, you would use an "about box".
You should also get your employer (if you work as a programmer) or school,
if any, to sign a "copyright disclaimer" for the program, if necessary.
For more information on this, and how to apply and follow the GNU GPL, see
<http://www.gnu.org/licenses/>.
<https://www.gnu.org/licenses/>.

The GNU General Public License does not permit incorporating your program
into proprietary programs. If your program is a subroutine library, you
may consider it more useful to permit linking proprietary applications with
the library. If this is what you want to do, use the GNU Lesser General
Public License instead of this License. But first, please read
<http://www.gnu.org/philosophy/why-not-lgpl.html>.
<https://www.gnu.org/philosophy/why-not-lgpl.html>.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ EiskaltDC++ is a cross-platform program that uses the Direct Connect and ADC
protocols. It is compatible with DC++, FlylinkDC++, LinuxDC++ and other DC
clients. EiskaltDC++ also interoperates with all common DC hub software.

Home page: http://sourceforge.net/projects/eiskaltdcpp/
Home page: https://sourceforge.net/projects/eiskaltdcpp/

Public chat room: https://gitter.im/eiskaltdcpp/eiskaltdcpp

Expand Down
2 changes: 1 addition & 1 deletion data/examples/deadbeef.ru_RU.UTF-8.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

# chat: /me DeaDBeeF playing now:Black Heaven - Himmel ohne Sterne, длина песни 3:59, уже прослушал 2:54 ( 07 Himmel ohne Sterne.m4a (9.1 МиБ) ) [Powered by DeaDBeeF 0.5.1 | GNU/Linux]]
# See also:
# http://sourceforge.net/apps/mediawiki/deadbeef/index.php?title=Title_Formatting
# https://sourceforge.net/apps/mediawiki/deadbeef/index.php?title=Title_Formatting

db=$(deadbeef --nowplaying "%a - %t, длина песни %l, уже прослушал %e")
directory=$(deadbeef --nowplaying "%D")
Expand Down
2 changes: 1 addition & 1 deletion data/luascripts/kml_geoip.lua
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ end

-- KML writing
function kml_geoip.xml_escape(text)
-- http://www.w3.org/TR/xml/#syntax
-- https://www.w3.org/TR/xml/#syntax
local subst_table = {
['"'] = ' &quot; ', ["'"] = ' &apos; ', ["<"] = ' &lt; ',
[">"] = ' &gt; ' , ["&"] = ' &amp; ' }
Expand Down
2 changes: 1 addition & 1 deletion dcpp/Thread.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ void Thread::setThreadName(const char* const threadName) const {
// Mac OS X allegedly truncates thread names to 63 chars
// pthread_setname_np(threadName);
#elif defined(_WIN32)
// TODO, see http://msdn.microsoft.com/en-us/library/xcb2z8hs.aspx
// TODO, see https://msdn.microsoft.com/en-us/library/xcb2z8hs.aspx
#elif defined(__linux__)
/* I'm using the old prctl way here because the only new feature of pthread_setname_np
* is that it can be called from outside the thread (not necessary and less portable)
Expand Down
2 changes: 1 addition & 1 deletion dcpp/ThrottleManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
namespace dcpp {
/**
* Manager for throttling traffic flow.
* Inspired by Token Bucket algorithm: http://en.wikipedia.org/wiki/Token_bucket
* Inspired by Token Bucket algorithm: https://en.wikipedia.org/wiki/Token_bucket
*/

/*
Expand Down
2 changes: 1 addition & 1 deletion dcpp/ThrottleManager.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ namespace dcpp
{
/**
* Manager for throttling traffic flow.
* Inspired by Token Bucket algorithm: http://en.wikipedia.org/wiki/Token_bucket
* Inspired by Token Bucket algorithm: https://en.wikipedia.org/wiki/Token_bucket
*/
class ThrottleManager :
public Singleton<ThrottleManager>, private TimerManagerListener
Expand Down
2 changes: 1 addition & 1 deletion eiskaltdcpp-gtk/Credits.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Eugene Petrov <dhamp@ya.ru>

Contributors:
troll <troll.freedcpp@gmail.com> (http://code.google.com/p/freedcpp/)
Mank <mank@jabbim.cz> (http://sourceforge.net/projects/freedcppmv/)
Mank <mank@jabbim.cz> (https://sourceforge.net/projects/freedcppmv/)

FreeDC++:
---------
Expand Down
4 changes: 2 additions & 2 deletions eiskaltdcpp-gtk/po/be.po
Original file line number Diff line number Diff line change
Expand Up @@ -4291,5 +4291,5 @@ msgstr "найлепшыя/чакаюць/бачныя: "
msgid "waiting..."
msgstr "чакаем…"

#~ msgid "http://github.com/eiskaltdcpp/eiskaltdcpp/raw/master/ChangeLog.txt"
#~ msgstr "http://github.com/eiskaltdcpp/eiskaltdcpp/raw/master/ChangeLog.txt"
#~ msgid "https://github.com/eiskaltdcpp/eiskaltdcpp/raw/master/ChangeLog.txt"
#~ msgstr "https://github.com/eiskaltdcpp/eiskaltdcpp/raw/master/ChangeLog.txt"
4 changes: 2 additions & 2 deletions eiskaltdcpp-gtk/po/bg.po
Original file line number Diff line number Diff line change
Expand Up @@ -4232,5 +4232,5 @@ msgstr ""
msgid "waiting..."
msgstr ""

#~ msgid "http://github.com/eiskaltdcpp/eiskaltdcpp/raw/master/ChangeLog.txt"
#~ msgstr "http://github.com/eiskaltdcpp/eiskaltdcpp/raw/master/ChangeLog.txt"
#~ msgid "https://github.com/eiskaltdcpp/eiskaltdcpp/raw/master/ChangeLog.txt"
#~ msgstr "https://github.com/eiskaltdcpp/eiskaltdcpp/raw/master/ChangeLog.txt"
4 changes: 2 additions & 2 deletions eiskaltdcpp-gtk/po/cs.po
Original file line number Diff line number Diff line change
Expand Up @@ -4234,5 +4234,5 @@ msgstr ""
msgid "waiting..."
msgstr ""

#~ msgid "http://github.com/eiskaltdcpp/eiskaltdcpp/raw/master/ChangeLog.txt"
#~ msgstr "http://github.com/eiskaltdcpp/eiskaltdcpp/raw/master/ChangeLog.txt"
#~ msgid "https://github.com/eiskaltdcpp/eiskaltdcpp/raw/master/ChangeLog.txt"
#~ msgstr "https://github.com/eiskaltdcpp/eiskaltdcpp/raw/master/ChangeLog.txt"
4 changes: 2 additions & 2 deletions eiskaltdcpp-gtk/po/de.po
Original file line number Diff line number Diff line change
Expand Up @@ -4307,5 +4307,5 @@ msgstr "Kopfende/warten/Frame:"
msgid "waiting..."
msgstr "Warten …"

#~ msgid "http://github.com/eiskaltdcpp/eiskaltdcpp/raw/master/ChangeLog.txt"
#~ msgstr "http://github.com/eiskaltdcpp/eiskaltdcpp/raw/master/ChangeLog.txt"
#~ msgid "https://github.com/eiskaltdcpp/eiskaltdcpp/raw/master/ChangeLog.txt"
#~ msgstr "https://github.com/eiskaltdcpp/eiskaltdcpp/raw/master/ChangeLog.txt"
4 changes: 2 additions & 2 deletions eiskaltdcpp-gtk/po/el.po
Original file line number Diff line number Diff line change
Expand Up @@ -4250,5 +4250,5 @@ msgstr ""
msgid "waiting..."
msgstr ""

#~ msgid "http://github.com/eiskaltdcpp/eiskaltdcpp/raw/master/ChangeLog.txt"
#~ msgstr "http://github.com/eiskaltdcpp/eiskaltdcpp/raw/master/ChangeLog.txt"
#~ msgid "https://github.com/eiskaltdcpp/eiskaltdcpp/raw/master/ChangeLog.txt"
#~ msgstr "https://github.com/eiskaltdcpp/eiskaltdcpp/raw/master/ChangeLog.txt"
4 changes: 2 additions & 2 deletions eiskaltdcpp-gtk/po/es.po
Original file line number Diff line number Diff line change
Expand Up @@ -4304,5 +4304,5 @@ msgstr "Alto/Espera/Cuadro: "
msgid "waiting..."
msgstr "espere..."

#~ msgid "http://github.com/eiskaltdcpp/eiskaltdcpp/raw/master/ChangeLog.txt"
#~ msgstr "http://github.com/eiskaltdcpp/eiskaltdcpp/raw/master/ChangeLog.txt"
#~ msgid "https://github.com/eiskaltdcpp/eiskaltdcpp/raw/master/ChangeLog.txt"
#~ msgstr "https://github.com/eiskaltdcpp/eiskaltdcpp/raw/master/ChangeLog.txt"
4 changes: 2 additions & 2 deletions eiskaltdcpp-gtk/po/eu.po
Original file line number Diff line number Diff line change
Expand Up @@ -4238,5 +4238,5 @@ msgstr ""
msgid "waiting..."
msgstr ""

#~ msgid "http://github.com/eiskaltdcpp/eiskaltdcpp/raw/master/ChangeLog.txt"
#~ msgstr "http://github.com/eiskaltdcpp/eiskaltdcpp/raw/master/ChangeLog.txt"
#~ msgid "https://github.com/eiskaltdcpp/eiskaltdcpp/raw/master/ChangeLog.txt"
#~ msgstr "https://github.com/eiskaltdcpp/eiskaltdcpp/raw/master/ChangeLog.txt"
4 changes: 2 additions & 2 deletions eiskaltdcpp-gtk/po/fr.po
Original file line number Diff line number Diff line change
Expand Up @@ -4303,5 +4303,5 @@ msgstr "haut/attente/fenêtre:"
msgid "waiting..."
msgstr "attente..."

#~ msgid "http://github.com/eiskaltdcpp/eiskaltdcpp/raw/master/ChangeLog.txt"
#~ msgstr "http://github.com/eiskaltdcpp/eiskaltdcpp/raw/master/ChangeLog.txt"
#~ msgid "https://github.com/eiskaltdcpp/eiskaltdcpp/raw/master/ChangeLog.txt"
#~ msgstr "https://github.com/eiskaltdcpp/eiskaltdcpp/raw/master/ChangeLog.txt"
4 changes: 2 additions & 2 deletions eiskaltdcpp-gtk/po/hu.po
Original file line number Diff line number Diff line change
Expand Up @@ -4296,5 +4296,5 @@ msgstr ""
msgid "waiting..."
msgstr "várakozás..."

#~ msgid "http://github.com/eiskaltdcpp/eiskaltdcpp/raw/master/ChangeLog.txt"
#~ msgstr "http://github.com/eiskaltdcpp/eiskaltdcpp/raw/master/ChangeLog.txt"
#~ msgid "https://github.com/eiskaltdcpp/eiskaltdcpp/raw/master/ChangeLog.txt"
#~ msgstr "https://github.com/eiskaltdcpp/eiskaltdcpp/raw/master/ChangeLog.txt"
4 changes: 2 additions & 2 deletions eiskaltdcpp-gtk/po/it.po
Original file line number Diff line number Diff line change
Expand Up @@ -4232,5 +4232,5 @@ msgstr ""
msgid "waiting..."
msgstr ""

#~ msgid "http://github.com/eiskaltdcpp/eiskaltdcpp/raw/master/ChangeLog.txt"
#~ msgstr "http://github.com/eiskaltdcpp/eiskaltdcpp/raw/master/ChangeLog.txt"
#~ msgid "https://github.com/eiskaltdcpp/eiskaltdcpp/raw/master/ChangeLog.txt"
#~ msgstr "https://github.com/eiskaltdcpp/eiskaltdcpp/raw/master/ChangeLog.txt"
4 changes: 2 additions & 2 deletions eiskaltdcpp-gtk/po/pl.po
Original file line number Diff line number Diff line change
Expand Up @@ -4233,5 +4233,5 @@ msgstr ""
msgid "waiting..."
msgstr ""

#~ msgid "http://github.com/eiskaltdcpp/eiskaltdcpp/raw/master/ChangeLog.txt"
#~ msgstr "http://github.com/eiskaltdcpp/eiskaltdcpp/raw/master/ChangeLog.txt"
#~ msgid "https://github.com/eiskaltdcpp/eiskaltdcpp/raw/master/ChangeLog.txt"
#~ msgstr "https://github.com/eiskaltdcpp/eiskaltdcpp/raw/master/ChangeLog.txt"
4 changes: 2 additions & 2 deletions eiskaltdcpp-gtk/po/pt_BR.po
Original file line number Diff line number Diff line change
Expand Up @@ -4232,5 +4232,5 @@ msgstr ""
msgid "waiting..."
msgstr ""

#~ msgid "http://github.com/eiskaltdcpp/eiskaltdcpp/raw/master/ChangeLog.txt"
#~ msgstr "http://github.com/eiskaltdcpp/eiskaltdcpp/raw/master/ChangeLog.txt"
#~ msgid "https://github.com/eiskaltdcpp/eiskaltdcpp/raw/master/ChangeLog.txt"
#~ msgstr "https://github.com/eiskaltdcpp/eiskaltdcpp/raw/master/ChangeLog.txt"
4 changes: 2 additions & 2 deletions eiskaltdcpp-gtk/po/sk.po
Original file line number Diff line number Diff line change
Expand Up @@ -4247,5 +4247,5 @@ msgstr ""
msgid "waiting..."
msgstr "vyčkávanie"

#~ msgid "http://github.com/eiskaltdcpp/eiskaltdcpp/raw/master/ChangeLog.txt"
#~ msgstr "http://github.com/eiskaltdcpp/eiskaltdcpp/raw/master/ChangeLog.txt"
#~ msgid "https://github.com/eiskaltdcpp/eiskaltdcpp/raw/master/ChangeLog.txt"
#~ msgstr "https://github.com/eiskaltdcpp/eiskaltdcpp/raw/master/ChangeLog.txt"
4 changes: 2 additions & 2 deletions eiskaltdcpp-gtk/po/sr.po
Original file line number Diff line number Diff line change
Expand Up @@ -4276,5 +4276,5 @@ msgstr "врх/чекање/оквир:"
msgid "waiting..."
msgstr "чекање..."

#~ msgid "http://github.com/eiskaltdcpp/eiskaltdcpp/raw/master/ChangeLog.txt"
#~ msgstr "http://github.com/eiskaltdcpp/eiskaltdcpp/raw/master/ChangeLog.txt"
#~ msgid "https://github.com/eiskaltdcpp/eiskaltdcpp/raw/master/ChangeLog.txt"
#~ msgstr "https://github.com/eiskaltdcpp/eiskaltdcpp/raw/master/ChangeLog.txt"
4 changes: 2 additions & 2 deletions eiskaltdcpp-gtk/po/sr@latin.po
Original file line number Diff line number Diff line change
Expand Up @@ -4295,5 +4295,5 @@ msgstr "top/čekanje/okvir: "
msgid "waiting..."
msgstr "čekanje ..."

#~ msgid "http://github.com/eiskaltdcpp/eiskaltdcpp/raw/master/ChangeLog.txt"
#~ msgstr "http://github.com/eiskaltdcpp/eiskaltdcpp/raw/master/ChangeLog.txt"
#~ msgid "https://github.com/eiskaltdcpp/eiskaltdcpp/raw/master/ChangeLog.txt"
#~ msgstr "https://github.com/eiskaltdcpp/eiskaltdcpp/raw/master/ChangeLog.txt"
4 changes: 2 additions & 2 deletions eiskaltdcpp-gtk/po/tr.po
Original file line number Diff line number Diff line change
Expand Up @@ -4292,5 +4292,5 @@ msgstr "üst/bekliyor/dördül:"
msgid "waiting..."
msgstr "bekliyor..."

#~ msgid "http://github.com/eiskaltdcpp/eiskaltdcpp/raw/master/ChangeLog.txt"
#~ msgstr "http://github.com/eiskaltdcpp/eiskaltdcpp/raw/master/ChangeLog.txt"
#~ msgid "https://github.com/eiskaltdcpp/eiskaltdcpp/raw/master/ChangeLog.txt"
#~ msgstr "https://github.com/eiskaltdcpp/eiskaltdcpp/raw/master/ChangeLog.txt"
4 changes: 2 additions & 2 deletions eiskaltdcpp-gtk/po/uk.po
Original file line number Diff line number Diff line change
Expand Up @@ -4287,6 +4287,6 @@ msgstr "вгору/очікування/фрейм: "
msgid "waiting..."
msgstr "очікування..."

#~ msgid "http://github.com/eiskaltdcpp/eiskaltdcpp/raw/master/ChangeLog.txt"
#~ msgid "https://github.com/eiskaltdcpp/eiskaltdcpp/raw/master/ChangeLog.txt"
#~ msgstr ""
#~ "http://github.com/eiskaltdcpp/eiskaltdcpp/raw/master/ChangeLog_uk.txt"
#~ "https://github.com/eiskaltdcpp/eiskaltdcpp/raw/master/ChangeLog_uk.txt"
4 changes: 2 additions & 2 deletions eiskaltdcpp-gtk/po/vi.po
Original file line number Diff line number Diff line change
Expand Up @@ -4232,5 +4232,5 @@ msgstr ""
msgid "waiting..."
msgstr ""

#~ msgid "http://github.com/eiskaltdcpp/eiskaltdcpp/raw/master/ChangeLog.txt"
#~ msgstr "http://github.com/eiskaltdcpp/eiskaltdcpp/raw/master/ChangeLog.txt "
#~ msgid "https://github.com/eiskaltdcpp/eiskaltdcpp/raw/master/ChangeLog.txt"
#~ msgstr "https://github.com/eiskaltdcpp/eiskaltdcpp/raw/master/ChangeLog.txt "
4 changes: 2 additions & 2 deletions eiskaltdcpp-gtk/po/zh_CN.po
Original file line number Diff line number Diff line change
Expand Up @@ -4232,5 +4232,5 @@ msgstr ""
msgid "waiting..."
msgstr ""

#~ msgid "http://github.com/eiskaltdcpp/eiskaltdcpp/raw/master/ChangeLog.txt"
#~ msgstr "http://github.com/eiskaltdcpp/eiskaltdcpp/raw/master/ChangeLog.txt"
#~ msgid "https://github.com/eiskaltdcpp/eiskaltdcpp/raw/master/ChangeLog.txt"
#~ msgstr "https://github.com/eiskaltdcpp/eiskaltdcpp/raw/master/ChangeLog.txt"
4 changes: 2 additions & 2 deletions eiskaltdcpp-gtk/src/mainwindow.cc
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ MainWindow::MainWindow():
_("Contributors"),
" 2001-2012 LinuxDC++ Team http://launchpad.net/linuxdcpp",
" 2009-2011 troll http://code.google.com/p/freedcpp/", // <troll.freedcpp@gmail.com>
" 2010-2012 Mank http://sourceforge.net/projects/freedcppmv/", // <mank@jabbim.cz>
" 2010-2012 Mank https://sourceforge.net/projects/freedcppmv/", // <mank@jabbim.cz>
NULL
};
gtk_about_dialog_set_authors(GTK_ABOUT_DIALOG(getWidget("aboutDialog")),
Expand Down Expand Up @@ -373,7 +373,7 @@ MainWindow::MainWindow():
g_signal_connect(getWidget("homeMenuItem"), "activate", G_CALLBACK(onLinkClicked_gui), NULL);

g_object_set_data_full(G_OBJECT(getWidget("sourceMenuItem")), "link",
g_strdup("http://github.com/eiskaltdcpp/eiskaltdcpp/"), g_free);
g_strdup("https://github.com/eiskaltdcpp/eiskaltdcpp/"), g_free);
g_signal_connect(getWidget("sourceMenuItem"), "activate", G_CALLBACK(onLinkClicked_gui), NULL);

g_object_set_data_full(G_OBJECT(getWidget("issueMenuItem")), "link",
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 4 additions & 4 deletions eiskaltdcpp-gtk/themes/hicolor/16x16/status/humanity-dc++.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 627e827

Please sign in to comment.