Update most URLs to use HTTPS and fix some dead links.

This commit is contained in:
Robby 2019-03-12 15:37:18 +01:00 committed by Peter Powell
parent 62ba7c3917
commit ac0d5abaac
14 changed files with 21 additions and 20 deletions

View File

@ -14,7 +14,7 @@ Example configs:
3.0 (alpha) - https://github.com/inspircd/inspircd/tree/master/docs/conf
Wiki:
https://wiki.inspircd.org/
https://wiki.inspircd.org
-->
**Description**

2
configure vendored
View File

@ -268,7 +268,7 @@ not been tested as heavily and may contain various faults which could seriously
affect the running of your server. It is recommended that you use a stable
version instead.
You can obtain the latest stable version from http://www.inspircd.org/ or by
You can obtain the latest stable version from https://www.inspircd.org or by
running `<|GREEN git checkout $(git describe --abbrev=0 --tags insp3)|>` if you are
installing from Git.
EOW

View File

@ -342,7 +342,7 @@
# The webirc method is the recommended way to allow gateways to forward
# IP/host information. When using this method the gateway sends a WEBIRC
# message to the server on connection. For more details please read the
# IRCv3 WebIRC specification at http://ircv3.net/specs/extensions/webirc.html.
# IRCv3 WebIRC specification at: https://ircv3.net/specs/extensions/webirc.html
#
# When using this method you must specify a wildcard mask or CIDR range
# to allow gateway connections from and at least one of either a SSL
@ -1080,7 +1080,7 @@
#
# Further information on these extensions can be found at the IRCv3
# working group website:
# http://ircv3.net/irc/
# https://ircv3.net/irc/
#
#<module name="ircv3">
# The following block can be used to control which extensions are
@ -1292,7 +1292,7 @@
#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
# Map hiding module: replaces /MAP and /LINKS output to users with a #
# message to see a website, set by maphide="http://test.org/map" in #
# message to see a website, set by maphide="https://test.org/map" in #
# the <security> tag, instead. #
#<module name="maphide">

View File

@ -1,5 +1,5 @@
# This file contains aliases and nickname reservations which are used
# by Anope. See https://www.anope.org/ for more information on Anope.
# by Anope. See https://www.anope.org for more information on Anope.
# This file inherits from the generic config to avoid repetition.
<include file="examples/services/generic.conf.example">

View File

@ -1,5 +1,6 @@
# This file contains aliases and nickname reservations which are used
# by Atheme. See http://atheme.net for more information on Atheme.
# by Atheme. See https://atheme.github.io/atheme.html for more
# information on Atheme.
# This file inherits from the generic config to avoid repetition.
<include file="examples/services/generic.conf.example">

View File

@ -1,6 +1,6 @@
Here you can find locales configuration files.
(!) The idea and several locale files are derived from Bynets UnrealIRCd distribution (See http://www.bynets.org/)
(!) The idea and several locale files are derived from Bynets UnrealIRCd distribution (See https://bynets.org)
*** File structure ***

View File

@ -184,7 +184,7 @@ std-header:
@echo "* *"
@echo "* This will take a *long* time. *"
@echo "* Why not read our wiki at *"
@echo "* http://wiki.inspircd.org *"
@echo "* https://wiki.inspircd.org *"
@echo "* while you wait for Make to run? *"
@echo "*************************************"

View File

@ -2,7 +2,7 @@ This directory stores modules which require external libraries to compile.
For example, m_filter_pcre requires the PCRE libraries.
To compile any of these modules first ensure you have the required dependencies
(read the online documentation at https://wiki.inspircd.org/) and then symlink
(read the online documentation at https://wiki.inspircd.org) and then symlink
the .cpp file from this directory into the parent directory (src/modules/).
Alternatively, use the command: ./configure --enable-extras=m_extra.cpp, which will

View File

@ -229,7 +229,7 @@ class HttpServerSocket : public BufferedSocket, public Timer, public insp::intru
HTTPHeaders empty;
std::string data = InspIRCd::Format(
"<html><head></head><body>Server error %u: %s<br>"
"<small>Powered by <a href='http://www.inspircd.org'>InspIRCd</a></small></body></html>", response, http_status_str((http_status)response));
"<small>Powered by <a href='https://www.inspircd.org'>InspIRCd</a></small></body></html>", response, http_status_str((http_status)response));
SendHeaders(data.length(), response, empty);
WriteData(data);

View File

@ -20,8 +20,8 @@
*/
/* Contains a code of Unreal IRCd + Bynets patch ( http://www.unrealircd.com/ and http://www.bynets.org/ )
Original patch is made by Dmitry "Killer{R}" Kononko. ( http://killprog.com/ )
/* Contains a code of Unreal IRCd + Bynets patch (https://www.unrealircd.org and https://bynets.org)
Original patch is made by Dmitry "Killer{R}" Kononko. (http://killprog.com)
Changed at 2008-06-15 - 2009-02-11
by Chernov-Phoenix Alexey (Phoenix@RusNet) mailto:phoenix /email address separator/ pravmail.ru */

2
vendor/README.md vendored
View File

@ -10,7 +10,7 @@ This directory contains vendored dependencies that are shipped with InspIRCd to
**License** &mdash; Public Domain
**Website** &mdash; [http://openwall.com/crypt/](http://openwall.com/crypt/)
**Website** &mdash; [https://www.openwall.com/crypt/](https://www.openwall.com/crypt/)
## http_parser

View File

@ -104,7 +104,7 @@ if(EXISTS "${CMAKE_ROOT}/Modules/CPack.cmake")
set(CPACK_NSIS_MUI_ICON "${INSPIRCD_BASE}/win\\\\inspircd.ico")
set(CPACK_NSIS_MUI_UNIICON "${INSPIRCD_BASE}/win\\\\inspircd.ico")
set(CPACK_NSIS_INSTALLED_ICON_NAME "inspircd.exe")
set(CPACK_NSIS_URL_INFO_ABOUT "http://www.inspircd.org/")
set(CPACK_NSIS_URL_INFO_ABOUT "https://www.inspircd.org")
set(CPACK_NSIS_COMPRESSOR "/SOLID zlib")
include(CPack)

View File

@ -43,7 +43,7 @@
;--- Component support macros: ---
; The code for the add/remove functionality is from:
; http://nsis.sourceforge.net/Add/Remove_Functionality
; https://nsis.sourceforge.io/Add/Remove_Functionality
; It has been modified slightly and extended to provide
; inter-component dependencies.
Var AR_SecFlags

View File

@ -1,9 +1,9 @@
Building InspIRCd for Windows:
Prerequisites:
Visual Studio 2015 or newer (https://www.visualstudio.com/)
CMake 2.8 or newer (http://www.cmake.org/)
If building the installer, NSIS http://nsis.sourceforge.net/
Visual Studio 2015 or newer (https://www.visualstudio.com)
CMake 2.8 or newer (https://cmake.org)
If building the installer, NSIS (https://nsis.sourceforge.io)
Configuring:
First copy any extra modules from extras (such as m_mysql) to the modules directory that you want to build.
@ -53,4 +53,4 @@ Building the installer:
Locate the PACKAGE project on Visual Studio's Solution Explorer and build it. This will generate an InspIRCd-x.x.x.exe
installer in the build directory which is ready to be distributed.
If you are building using NMake Makefiles or do not want to build the installer in Visual Studio, simply use "cpack".
If you are building using NMake Makefiles or do not want to build the installer in Visual Studio, simply use "cpack".