Switch most in-tree http:// links to https://

For each link given as http://, verify that the site is accessible over
https:// and, if so, switch to it.  These domains were converted:

* llvm.org
* clang.llvm.org
* en.cppreference.com
* www.dxx-rebirth.com
* www.libsdl.org
* www.scons.org
This commit is contained in:
Kp 2018-09-02 00:57:29 +00:00
parent 97ad0b0be4
commit 12b57e84e6
161 changed files with 204 additions and 204 deletions

View File

@ -77,28 +77,28 @@ If `std::index_sequence` is not available, then [`common/include/compiler-intege
If `std::make_unique` is available, then [`common/include/compiler-make_unique.h`][src:compiler-make_unique.h] uses `using std::make_unique;` to bring `make_unique` into the global namespace.
If `std::make_unique` is not available, then [`common/include/compiler-make_unique.h`][src:compiler-make_unique.h] provides a simple implementation of `make_unique` in the global namespace.
[cppr:cpp/language/reference]: http://en.cppreference.com/w/cpp/language/reference
[cppr:cpp/language/parameter_pack]: http://en.cppreference.com/w/cpp/language/parameter_pack
[cppr:cpp/language/auto]: http://en.cppreference.com/w/cpp/language/auto
[cppr:cpp/language/lambda]: http://en.cppreference.com/w/cpp/language/lambda
[cppr:cpp/language/decltype]: http://en.cppreference.com/w/cpp/language/decltype
[cppr:cpp/language/type_alias]: http://en.cppreference.com/w/cpp/language/type_alias
[cppr:cpp/language/nullptr]: http://en.cppreference.com/w/cpp/language/nullptr
[scppr:enum class]: http://en.cppreference.com/w/cpp/language/enum#Scoped_enumerations.28since_C.2B.2B11.29
[scppr:enum fwd]: http://en.cppreference.com/w/cpp/language/enum#Unscoped_enumeration
[cppr:cpp/language/constexpr]: http://en.cppreference.com/w/cpp/language/constexpr
[cppr:cpp/language/cast_operator]: http://en.cppreference.com/w/cpp/language/cast_operator
[cppr:cpp/language/function#Function_definition]: http://en.cppreference.com/w/cpp/language/function#Function_definition
[cppr:cpp/memory/unique_ptr]: http://en.cppreference.com/w/cpp/memory/unique_ptr
[cppr:cpp/utility/exchange]: http://en.cppreference.com/w/cpp/utility/exchange
[cppr:cpp/utility/integer_sequence]: http://en.cppreference.com/w/cpp/utility/integer_sequence
[cppr:cpp/memory/unique_ptr/make_unique]: http://en.cppreference.com/w/cpp/memory/unique_ptr/make_unique
[scppr:rvalue method]: http://en.cppreference.com/w/cpp/language/member_functions#const-.2C_volatile-.2C_and_ref-qualified_member_functions
[cppr:cpp/language/using_declaration]: http://en.cppreference.com/w/cpp/language/using_declaration
[cppr:cpp/language/range-for]: http://en.cppreference.com/w/cpp/language/range-for
[cppr:cpp/language/static_assert]: http://en.cppreference.com/w/cpp/language/static_assert
[cppr:cpp/language/reference]: https://en.cppreference.com/w/cpp/language/reference
[cppr:cpp/language/parameter_pack]: https://en.cppreference.com/w/cpp/language/parameter_pack
[cppr:cpp/language/auto]: https://en.cppreference.com/w/cpp/language/auto
[cppr:cpp/language/lambda]: https://en.cppreference.com/w/cpp/language/lambda
[cppr:cpp/language/decltype]: https://en.cppreference.com/w/cpp/language/decltype
[cppr:cpp/language/type_alias]: https://en.cppreference.com/w/cpp/language/type_alias
[cppr:cpp/language/nullptr]: https://en.cppreference.com/w/cpp/language/nullptr
[scppr:enum class]: https://en.cppreference.com/w/cpp/language/enum#Scoped_enumerations.28since_C.2B.2B11.29
[scppr:enum fwd]: https://en.cppreference.com/w/cpp/language/enum#Unscoped_enumeration
[cppr:cpp/language/constexpr]: https://en.cppreference.com/w/cpp/language/constexpr
[cppr:cpp/language/cast_operator]: https://en.cppreference.com/w/cpp/language/cast_operator
[cppr:cpp/language/function#Function_definition]: https://en.cppreference.com/w/cpp/language/function#Function_definition
[cppr:cpp/memory/unique_ptr]: https://en.cppreference.com/w/cpp/memory/unique_ptr
[cppr:cpp/utility/exchange]: https://en.cppreference.com/w/cpp/utility/exchange
[cppr:cpp/utility/integer_sequence]: https://en.cppreference.com/w/cpp/utility/integer_sequence
[cppr:cpp/memory/unique_ptr/make_unique]: https://en.cppreference.com/w/cpp/memory/unique_ptr/make_unique
[scppr:rvalue method]: https://en.cppreference.com/w/cpp/language/member_functions#const-.2C_volatile-.2C_and_ref-qualified_member_functions
[cppr:cpp/language/using_declaration]: https://en.cppreference.com/w/cpp/language/using_declaration
[cppr:cpp/language/range-for]: https://en.cppreference.com/w/cpp/language/range-for
[cppr:cpp/language/static_assert]: https://en.cppreference.com/w/cpp/language/static_assert
[src:compiler-exchange.h]: ../common/include/compiler-exchange.h
[src:compiler-integer_sequence.h]: ../common/include/compiler-integer_sequence.h
[scppr:make_integer_sequence]: http://en.cppreference.com/w/cpp/utility/integer_sequence#Helper_templates
[scppr:make_integer_sequence]: https://en.cppreference.com/w/cpp/utility/integer_sequence#Helper_templates
[gccbug:66059]: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66059
[src:compiler-make_unique.h]: ../common/include/compiler-make_unique.h

View File

@ -7,12 +7,12 @@ The DXX-Rebirth maintainers have no control over the sites linked below. The ma
### Prerequisites
* [Python 2.x](https://www.python.org/) to run [scons](http://www.scons.org/), the processor for SConstruct scripts.
* [Python 2.x](https://www.python.org/) to run [scons](https://www.scons.org/), the processor for SConstruct scripts.
[Python 2.7](https://www.python.org/downloads/release/python-2714/) is recommended.
As of this writing, **scons** does not support Python 3.x, but has plans to do so.
* C++ compiler with support for selected C++11 features. One of:
* [gcc](https://gcc.gnu.org/) 4.9.4 or later
* [clang](http://clang.llvm.org/) 3.3 or later
* [clang](https://clang.llvm.org/) 3.3 or later
* Microsoft Visual Studio is **not** supported at this time.
Support for Microsoft Visual Studio will be added when it
implements sufficient C++11 features for the code to build with
@ -31,7 +31,7 @@ Optional, but recommended:
SDL\_mixer 2 is **not** supported at this time.
* C++ compiler with support for selected C++14 features. One of:
* [gcc](https://gcc.gnu.org/) 4.9.4 or later
* [clang](http://clang.llvm.org/) 3.4 or later
* [clang](https://clang.llvm.org/) 3.4 or later
Unless otherwise noted, using the newest release available is recommended. For example, prefer gcc-5.4 to gcc-4.9, even though both should work.
@ -48,8 +48,8 @@ If you are not sure whether your system is Windows x86 or Windows x64, use the p
* C++ compiler
* mingw-gcc: [Getting Started](http://www.mingw.org/wiki/Getting_Started) |
[Direct download](https://sourceforge.net/projects/mingw/files/latest/download)
* [clang](http://llvm.org/releases/3.6.2/LLVM-3.6.2-win32.exe)
([.sig](http://llvm.org/releases/3.6.2/LLVM-3.6.2-win32.exe.sig))
* [clang](https://llvm.org/releases/3.6.2/LLVM-3.6.2-win32.exe)
([.sig](https://llvm.org/releases/3.6.2/LLVM-3.6.2-win32.exe.sig))
* [SDL 1.2 x86 zip](https://www.libsdl.org/release/SDL-1.2.15-win32.zip) |
[SDL 1.2 x64 zip](https://www.libsdl.org/release/SDL-1.2.15-win32-x64.zip)
* No published PhysFS package for Windows is known.
@ -195,4 +195,4 @@ For Windows and Linux, DXX-Rebirth installs only the main game binary. The bina
As a convenience, if **register\_install\_target=True**, **SConstruct** registers a pseudo-target named **install** which copies the compiled files to *DESTDIR*__/__*BINDIR*. By default, **register\_install\_target=True**, *DESTDIR* is *empty*, and *BINDIR* is *PREFIX*__/bin__, which expands to **/usr/local/bin**.
DXX-Rebirth [requires game data](http://www.dxx-rebirth.com/game-content/) to play. The build system has no support for interacting with game data. You can get [Descent 1 PC shareware data](http://www.dxx-rebirth.com/download/dxx/content/descent-pc-shareware.zip) and [Descent 2 PC demo data](http://www.dxx-rebirth.com/download/dxx/content/descent2-pc-demo.zip) from the DXX-Rebirth website. Full game data is supported (and recommended), but is not freely available. You can [buy full Descent 1 game data](https://www.gog.com/game/descent) and/or [buy full Descent 2 game data](https://www.gog.com/game/descent_2) from GOG.com. Historically, both Descent 1 and Descent 2 were sold as a single unit. After a nearly two-year hiatus from sale, the games returned to GOG.com in November 2017 as separate units. DXX-Rebirth contains engines for both games. Each engine works for its respective game without the data from the other, so players who wish to purchase only one game may do so.
DXX-Rebirth [requires game data](https://www.dxx-rebirth.com/game-content/) to play. The build system has no support for interacting with game data. You can get [Descent 1 PC shareware data](https://www.dxx-rebirth.com/download/dxx/content/descent-pc-shareware.zip) and [Descent 2 PC demo data](https://www.dxx-rebirth.com/download/dxx/content/descent2-pc-demo.zip) from the DXX-Rebirth website. Full game data is supported (and recommended), but is not freely available. You can [buy full Descent 1 game data](https://www.gog.com/game/descent) and/or [buy full Descent 2 game data](https://www.gog.com/game/descent_2) from GOG.com. Historically, both Descent 1 and Descent 2 were sold as a single unit. After a nearly two-year hiatus from sale, the games returned to GOG.com in November 2017 as separate units. DXX-Rebirth contains engines for both games. Each engine works for its respective game without the data from the other, so players who wish to purchase only one game may do so.

View File

@ -1,5 +1,5 @@
/*
* This file is part of the DXX-Rebirth project <http://www.dxx-rebirth.com/>.
* This file is part of the DXX-Rebirth project <https://www.dxx-rebirth.com/>.
* It is copyright by its individual contributors, as recorded in the
* project's Git history. See COPYING.txt at the top level for license
* terms and a link to the Git history.

View File

@ -1,5 +1,5 @@
/*
* This file is part of the DXX-Rebirth project <http://www.dxx-rebirth.com/>.
* This file is part of the DXX-Rebirth project <https://www.dxx-rebirth.com/>.
* It is copyright by its individual contributors, as recorded in the
* project's Git history. See COPYING.txt at the top level for license
* terms and a link to the Git history.

View File

@ -1,5 +1,5 @@
/*
* This file is part of the DXX-Rebirth project <http://www.dxx-rebirth.com/>.
* This file is part of the DXX-Rebirth project <https://www.dxx-rebirth.com/>.
* It is copyright by its individual contributors, as recorded in the
* project's Git history. See COPYING.txt at the top level for license
* terms and a link to the Git history.

View File

@ -1,5 +1,5 @@
/*
* This file is part of the DXX-Rebirth project <http://www.dxx-rebirth.com/>.
* This file is part of the DXX-Rebirth project <https://www.dxx-rebirth.com/>.
* It is copyright by its individual contributors, as recorded in the
* project's Git history. See COPYING.txt at the top level for license
* terms and a link to the Git history.

View File

@ -1,5 +1,5 @@
/*
* This file is part of the DXX-Rebirth project <http://www.dxx-rebirth.com/>.
* This file is part of the DXX-Rebirth project <https://www.dxx-rebirth.com/>.
* It is copyright by its individual contributors, as recorded in the
* project's Git history. See COPYING.txt at the top level for license
* terms and a link to the Git history.

View File

@ -1,5 +1,5 @@
/*
* This file is part of the DXX-Rebirth project <http://www.dxx-rebirth.com/>.
* This file is part of the DXX-Rebirth project <https://www.dxx-rebirth.com/>.
* It is copyright by its individual contributors, as recorded in the
* project's Git history. See COPYING.txt at the top level for license
* terms and a link to the Git history.

View File

@ -1,5 +1,5 @@
/*
* This file is part of the DXX-Rebirth project <http://www.dxx-rebirth.com/>.
* This file is part of the DXX-Rebirth project <https://www.dxx-rebirth.com/>.
* It is copyright by its individual contributors, as recorded in the
* project's Git history. See COPYING.txt at the top level for license
* terms and a link to the Git history.

View File

@ -1,5 +1,5 @@
/*
* This file is part of the DXX-Rebirth project <http://www.dxx-rebirth.com/>.
* This file is part of the DXX-Rebirth project <https://www.dxx-rebirth.com/>.
* It is copyright by its individual contributors, as recorded in the
* project's Git history. See COPYING.txt at the top level for license
* terms and a link to the Git history.

View File

@ -1,5 +1,5 @@
/*
* This file is part of the DXX-Rebirth project <http://www.dxx-rebirth.com/>.
* This file is part of the DXX-Rebirth project <https://www.dxx-rebirth.com/>.
* It is copyright by its individual contributors, as recorded in the
* project's Git history. See COPYING.txt at the top level for license
* terms and a link to the Git history.

View File

@ -1,5 +1,5 @@
/*
* This file is part of the DXX-Rebirth project <http://www.dxx-rebirth.com/>.
* This file is part of the DXX-Rebirth project <https://www.dxx-rebirth.com/>.
* It is copyright by its individual contributors, as recorded in the
* project's Git history. See COPYING.txt at the top level for license
* terms and a link to the Git history.

View File

@ -1,5 +1,5 @@
/*
* This file is part of the DXX-Rebirth project <http://www.dxx-rebirth.com/>.
* This file is part of the DXX-Rebirth project <https://www.dxx-rebirth.com/>.
* It is copyright by its individual contributors, as recorded in the
* project's Git history. See COPYING.txt at the top level for license
* terms and a link to the Git history.

View File

@ -1,5 +1,5 @@
/*
* This file is part of the DXX-Rebirth project <http://www.dxx-rebirth.com/>.
* This file is part of the DXX-Rebirth project <https://www.dxx-rebirth.com/>.
* It is copyright by its individual contributors, as recorded in the
* project's Git history. See COPYING.txt at the top level for license
* terms and a link to the Git history.

View File

@ -1,5 +1,5 @@
/*
* This file is part of the DXX-Rebirth project <http://www.dxx-rebirth.com/>.
* This file is part of the DXX-Rebirth project <https://www.dxx-rebirth.com/>.
* It is copyright by its individual contributors, as recorded in the
* project's Git history. See COPYING.txt at the top level for license
* terms and a link to the Git history.

View File

@ -1,5 +1,5 @@
/*
* This file is part of the DXX-Rebirth project <http://www.dxx-rebirth.com/>.
* This file is part of the DXX-Rebirth project <https://www.dxx-rebirth.com/>.
* It is copyright by its individual contributors, as recorded in the
* project's Git history. See COPYING.txt at the top level for license
* terms and a link to the Git history.

View File

@ -1,5 +1,5 @@
/*
* This file is part of the DXX-Rebirth project <http://www.dxx-rebirth.com/>.
* This file is part of the DXX-Rebirth project <https://www.dxx-rebirth.com/>.
* It is copyright by its individual contributors, as recorded in the
* project's Git history. See COPYING.txt at the top level for license
* terms and a link to the Git history.

View File

@ -1,5 +1,5 @@
/*
* This file is part of the DXX-Rebirth project <http://www.dxx-rebirth.com/>.
* This file is part of the DXX-Rebirth project <https://www.dxx-rebirth.com/>.
* It is copyright by its individual contributors, as recorded in the
* project's Git history. See COPYING.txt at the top level for license
* terms and a link to the Git history.

View File

@ -1,6 +1,6 @@
# Create an application package.
# http://www.scons.org/wiki/SubstInFileBuilder
# https://www.scons.org/wiki/SubstInFileBuilder
import re
from SCons.Script import *
@ -73,7 +73,7 @@ def TOOL_SUBST(env):
subst_action=SCons.Action.Action(subst_in_file, subst_in_file_string)
env['BUILDERS']['SubstInFile'] = env.Builder(action=subst_action, emitter=subst_emitter)
# http://www.scons.org/wiki/MacOSX (modified to suit)
# https://www.scons.org/wiki/MacOSX (modified to suit)
from SCons.Defaults import SharedCheck, ProgScan
from SCons.Script.SConscript import SConsEnvironment

View File

@ -1,5 +1,5 @@
/*
* This file is part of the DXX-Rebirth project <http://www.dxx-rebirth.com/>.
* This file is part of the DXX-Rebirth project <https://www.dxx-rebirth.com/>.
* It is copyright by its individual contributors, as recorded in the
* project's Git history. See COPYING.txt at the top level for license
* terms and a link to the Git history.

View File

@ -1,5 +1,5 @@
/*
* This file is part of the DXX-Rebirth project <http://www.dxx-rebirth.com/>.
* This file is part of the DXX-Rebirth project <https://www.dxx-rebirth.com/>.
* It is copyright by its individual contributors, as recorded in the
* project's Git history. See COPYING.txt at the top level for license
* terms and a link to the Git history.

View File

@ -1,5 +1,5 @@
/*
* This file is part of the DXX-Rebirth project <http://www.dxx-rebirth.com/>.
* This file is part of the DXX-Rebirth project <https://www.dxx-rebirth.com/>.
* It is copyright by its individual contributors, as recorded in the
* project's Git history. See COPYING.txt at the top level for license
* terms and a link to the Git history.

View File

@ -1,5 +1,5 @@
/*
* This file is part of the DXX-Rebirth project <http://www.dxx-rebirth.com/>.
* This file is part of the DXX-Rebirth project <https://www.dxx-rebirth.com/>.
* It is copyright by its individual contributors, as recorded in the
* project's Git history. See COPYING.txt at the top level for license
* terms and a link to the Git history.

View File

@ -1,5 +1,5 @@
/*
* This file is part of the DXX-Rebirth project <http://www.dxx-rebirth.com/>.
* This file is part of the DXX-Rebirth project <https://www.dxx-rebirth.com/>.
* It is copyright by its individual contributors, as recorded in the
* project's Git history. See COPYING.txt at the top level for license
* terms and a link to the Git history.

View File

@ -1,5 +1,5 @@
/*
* This file is part of the DXX-Rebirth project <http://www.dxx-rebirth.com/>.
* This file is part of the DXX-Rebirth project <https://www.dxx-rebirth.com/>.
* It is copyright by its individual contributors, as recorded in the
* project's Git history. See COPYING.txt at the top level for license
* terms and a link to the Git history.

View File

@ -1,5 +1,5 @@
/*
* This file is part of the DXX-Rebirth project <http://www.dxx-rebirth.com/>.
* This file is part of the DXX-Rebirth project <https://www.dxx-rebirth.com/>.
* It is copyright by its individual contributors, as recorded in the
* project's Git history. See COPYING.txt at the top level for license
* terms and a link to the Git history.

View File

@ -1,5 +1,5 @@
/*
* This file is part of the DXX-Rebirth project <http://www.dxx-rebirth.com/>.
* This file is part of the DXX-Rebirth project <https://www.dxx-rebirth.com/>.
* It is copyright by its individual contributors, as recorded in the
* project's Git history. See COPYING.txt at the top level for license
* terms and a link to the Git history.

View File

@ -1,5 +1,5 @@
/*
* This file is part of the DXX-Rebirth project <http://www.dxx-rebirth.com/>.
* This file is part of the DXX-Rebirth project <https://www.dxx-rebirth.com/>.
* It is copyright by its individual contributors, as recorded in the
* project's Git history. See COPYING.txt at the top level for license
* terms and a link to the Git history.

View File

@ -1,5 +1,5 @@
/*
* This file is part of the DXX-Rebirth project <http://www.dxx-rebirth.com/>.
* This file is part of the DXX-Rebirth project <https://www.dxx-rebirth.com/>.
* It is copyright by its individual contributors, as recorded in the
* project's Git history. See COPYING.txt at the top level for license
* terms and a link to the Git history.

View File

@ -1,5 +1,5 @@
/*
* This file is part of the DXX-Rebirth project <http://www.dxx-rebirth.com/>.
* This file is part of the DXX-Rebirth project <https://www.dxx-rebirth.com/>.
* It is copyright by its individual contributors, as recorded in the
* project's Git history. See COPYING.txt at the top level for license
* terms and a link to the Git history.

View File

@ -1,5 +1,5 @@
/*
* This file is part of the DXX-Rebirth project <http://www.dxx-rebirth.com/>.
* This file is part of the DXX-Rebirth project <https://www.dxx-rebirth.com/>.
* It is copyright by its individual contributors, as recorded in the
* project's Git history. See COPYING.txt at the top level for license
* terms and a link to the Git history.

View File

@ -1,5 +1,5 @@
/*
* This file is part of the DXX-Rebirth project <http://www.dxx-rebirth.com/>.
* This file is part of the DXX-Rebirth project <https://www.dxx-rebirth.com/>.
* It is copyright by its individual contributors, as recorded in the
* project's Git history. See COPYING.txt at the top level for license
* terms and a link to the Git history.

View File

@ -1,5 +1,5 @@
/*
* This file is part of the DXX-Rebirth project <http://www.dxx-rebirth.com/>.
* This file is part of the DXX-Rebirth project <https://www.dxx-rebirth.com/>.
* It is copyright by its individual contributors, as recorded in the
* project's Git history. See COPYING.txt at the top level for license
* terms and a link to the Git history.

View File

@ -1,5 +1,5 @@
/*
* This file is part of the DXX-Rebirth project <http://www.dxx-rebirth.com/>.
* This file is part of the DXX-Rebirth project <https://www.dxx-rebirth.com/>.
* It is copyright by its individual contributors, as recorded in the
* project's Git history. See COPYING.txt at the top level for license
* terms and a link to the Git history.

View File

@ -1,5 +1,5 @@
/*
* This file is part of the DXX-Rebirth project <http://www.dxx-rebirth.com/>.
* This file is part of the DXX-Rebirth project <https://www.dxx-rebirth.com/>.
* It is copyright by its individual contributors, as recorded in the
* project's Git history. See COPYING.txt at the top level for license
* terms and a link to the Git history.

View File

@ -1,5 +1,5 @@
/*
* This file is part of the DXX-Rebirth project <http://www.dxx-rebirth.com/>.
* This file is part of the DXX-Rebirth project <https://www.dxx-rebirth.com/>.
* It is copyright by its individual contributors, as recorded in the
* project's Git history. See COPYING.txt at the top level for license
* terms and a link to the Git history.

View File

@ -1,5 +1,5 @@
/*
* This file is part of the DXX-Rebirth project <http://www.dxx-rebirth.com/>.
* This file is part of the DXX-Rebirth project <https://www.dxx-rebirth.com/>.
* It is copyright by its individual contributors, as recorded in the
* project's Git history. See COPYING.txt at the top level for license
* terms and a link to the Git history.

View File

@ -1,5 +1,5 @@
/*
* This file is part of the DXX-Rebirth project <http://www.dxx-rebirth.com/>.
* This file is part of the DXX-Rebirth project <https://www.dxx-rebirth.com/>.
* It is copyright by its individual contributors, as recorded in the
* project's Git history. See COPYING.txt at the top level for license
* terms and a link to the Git history.

View File

@ -1,5 +1,5 @@
/*
* This file is part of the DXX-Rebirth project <http://www.dxx-rebirth.com/>.
* This file is part of the DXX-Rebirth project <https://www.dxx-rebirth.com/>.
* It is copyright by its individual contributors, as recorded in the
* project's Git history. See COPYING.txt at the top level for license
* terms and a link to the Git history.

View File

@ -1,5 +1,5 @@
/*
* This file is part of the DXX-Rebirth project <http://www.dxx-rebirth.com/>.
* This file is part of the DXX-Rebirth project <https://www.dxx-rebirth.com/>.
* It is copyright by its individual contributors, as recorded in the
* project's Git history. See COPYING.txt at the top level for license
* terms and a link to the Git history.

View File

@ -1,5 +1,5 @@
/*
* This file is part of the DXX-Rebirth project <http://www.dxx-rebirth.com/>.
* This file is part of the DXX-Rebirth project <https://www.dxx-rebirth.com/>.
* It is copyright by its individual contributors, as recorded in the
* project's Git history. See COPYING.txt at the top level for license
* terms and a link to the Git history.

View File

@ -1,5 +1,5 @@
/*
* This file is part of the DXX-Rebirth project <http://www.dxx-rebirth.com/>.
* This file is part of the DXX-Rebirth project <https://www.dxx-rebirth.com/>.
* It is copyright by its individual contributors, as recorded in the
* project's Git history. See COPYING.txt at the top level for license
* terms and a link to the Git history.

View File

@ -1,5 +1,5 @@
/*
* This file is part of the DXX-Rebirth project <http://www.dxx-rebirth.com/>.
* This file is part of the DXX-Rebirth project <https://www.dxx-rebirth.com/>.
* It is copyright by its individual contributors, as recorded in the
* project's Git history. See COPYING.txt at the top level for license
* terms and a link to the Git history.

View File

@ -1,5 +1,5 @@
/*
* This file is part of the DXX-Rebirth project <http://www.dxx-rebirth.com/>.
* This file is part of the DXX-Rebirth project <https://www.dxx-rebirth.com/>.
* It is copyright by its individual contributors, as recorded in the
* project's Git history. See COPYING.txt at the top level for license
* terms and a link to the Git history.

View File

@ -1,5 +1,5 @@
/*
* This file is part of the DXX-Rebirth project <http://www.dxx-rebirth.com/>.
* This file is part of the DXX-Rebirth project <https://www.dxx-rebirth.com/>.
* It is copyright by its individual contributors, as recorded in the
* project's Git history. See COPYING.txt at the top level for license
* terms and a link to the Git history.

View File

@ -1,5 +1,5 @@
/*
* This file is part of the DXX-Rebirth project <http://www.dxx-rebirth.com/>.
* This file is part of the DXX-Rebirth project <https://www.dxx-rebirth.com/>.
* It is copyright by its individual contributors, as recorded in the
* project's Git history. See COPYING.txt at the top level for license
* terms and a link to the Git history.

View File

@ -1,5 +1,5 @@
/*
* This file is part of the DXX-Rebirth project <http://www.dxx-rebirth.com/>.
* This file is part of the DXX-Rebirth project <https://www.dxx-rebirth.com/>.
* It is copyright by its individual contributors, as recorded in the
* project's Git history. See COPYING.txt at the top level for license
* terms and a link to the Git history.

View File

@ -1,5 +1,5 @@
/*
* This file is part of the DXX-Rebirth project <http://www.dxx-rebirth.com/>.
* This file is part of the DXX-Rebirth project <https://www.dxx-rebirth.com/>.
* It is copyright by its individual contributors, as recorded in the
* project's Git history. See COPYING.txt at the top level for license
* terms and a link to the Git history.

View File

@ -1,5 +1,5 @@
/*
* This file is part of the DXX-Rebirth project <http://www.dxx-rebirth.com/>.
* This file is part of the DXX-Rebirth project <https://www.dxx-rebirth.com/>.
* It is copyright by its individual contributors, as recorded in the
* project's Git history. See COPYING.txt at the top level for license
* terms and a link to the Git history.

View File

@ -1,5 +1,5 @@
/*
* This file is part of the DXX-Rebirth project <http://www.dxx-rebirth.com/>.
* This file is part of the DXX-Rebirth project <https://www.dxx-rebirth.com/>.
* It is copyright by its individual contributors, as recorded in the
* project's Git history. See COPYING.txt at the top level for license
* terms and a link to the Git history.

View File

@ -1,5 +1,5 @@
/*
* This file is part of the DXX-Rebirth project <http://www.dxx-rebirth.com/>.
* This file is part of the DXX-Rebirth project <https://www.dxx-rebirth.com/>.
* It is copyright by its individual contributors, as recorded in the
* project's Git history. See COPYING.txt at the top level for license
* terms and a link to the Git history.

View File

@ -1,5 +1,5 @@
/*
* This file is part of the DXX-Rebirth project <http://www.dxx-rebirth.com/>.
* This file is part of the DXX-Rebirth project <https://www.dxx-rebirth.com/>.
* It is copyright by its individual contributors, as recorded in the
* project's Git history. See COPYING.txt at the top level for license
* terms and a link to the Git history.

View File

@ -1,5 +1,5 @@
/*
* This file is part of the DXX-Rebirth project <http://www.dxx-rebirth.com/>.
* This file is part of the DXX-Rebirth project <https://www.dxx-rebirth.com/>.
* It is copyright by its individual contributors, as recorded in the
* project's Git history. See COPYING.txt at the top level for license
* terms and a link to the Git history.

View File

@ -1,5 +1,5 @@
/*
* This file is part of the DXX-Rebirth project <http://www.dxx-rebirth.com/>.
* This file is part of the DXX-Rebirth project <https://www.dxx-rebirth.com/>.
* It is copyright by its individual contributors, as recorded in the
* project's Git history. See COPYING.txt at the top level for license
* terms and a link to the Git history.

View File

@ -1,5 +1,5 @@
/*
* This file is part of the DXX-Rebirth project <http://www.dxx-rebirth.com/>.
* This file is part of the DXX-Rebirth project <https://www.dxx-rebirth.com/>.
* It is copyright by its individual contributors, as recorded in the
* project's Git history. See COPYING.txt at the top level for license
* terms and a link to the Git history.

View File

@ -1,5 +1,5 @@
/*
* This file is part of the DXX-Rebirth project <http://www.dxx-rebirth.com/>.
* This file is part of the DXX-Rebirth project <https://www.dxx-rebirth.com/>.
* It is copyright by its individual contributors, as recorded in the
* project's Git history. See COPYING.txt at the top level for license
* terms and a link to the Git history.

View File

@ -1,5 +1,5 @@
/*
* This file is part of the DXX-Rebirth project <http://www.dxx-rebirth.com/>.
* This file is part of the DXX-Rebirth project <https://www.dxx-rebirth.com/>.
* It is copyright by its individual contributors, as recorded in the
* project's Git history. See COPYING.txt at the top level for license
* terms and a link to the Git history.

View File

@ -1,5 +1,5 @@
/*
* This file is part of the DXX-Rebirth project <http://www.dxx-rebirth.com/>.
* This file is part of the DXX-Rebirth project <https://www.dxx-rebirth.com/>.
* It is copyright by its individual contributors, as recorded in the
* project's Git history. See COPYING.txt at the top level for license
* terms and a link to the Git history.

View File

@ -1,5 +1,5 @@
/*
* This file is part of the DXX-Rebirth project <http://www.dxx-rebirth.com/>.
* This file is part of the DXX-Rebirth project <https://www.dxx-rebirth.com/>.
* It is copyright by its individual contributors, as recorded in the
* project's Git history. See COPYING.txt at the top level for license
* terms and a link to the Git history.

View File

@ -1,5 +1,5 @@
/*
* This file is part of the DXX-Rebirth project <http://www.dxx-rebirth.com/>.
* This file is part of the DXX-Rebirth project <https://www.dxx-rebirth.com/>.
* It is copyright by its individual contributors, as recorded in the
* project's Git history. See COPYING.txt at the top level for license
* terms and a link to the Git history.

View File

@ -1,5 +1,5 @@
/*
* This file is part of the DXX-Rebirth project <http://www.dxx-rebirth.com/>.
* This file is part of the DXX-Rebirth project <https://www.dxx-rebirth.com/>.
* It is copyright by its individual contributors, as recorded in the
* project's Git history. See COPYING.txt at the top level for license
* terms and a link to the Git history.

View File

@ -1,5 +1,5 @@
/*
* This file is part of the DXX-Rebirth project <http://www.dxx-rebirth.com/>.
* This file is part of the DXX-Rebirth project <https://www.dxx-rebirth.com/>.
* It is copyright by its individual contributors, as recorded in the
* project's Git history. See COPYING.txt at the top level for license
* terms and a link to the Git history.

View File

@ -1,5 +1,5 @@
/*
* This file is part of the DXX-Rebirth project <http://www.dxx-rebirth.com/>.
* This file is part of the DXX-Rebirth project <https://www.dxx-rebirth.com/>.
* It is copyright by its individual contributors, as recorded in the
* project's Git history. See COPYING.txt at the top level for license
* terms and a link to the Git history.

View File

@ -1,5 +1,5 @@
/*
* This file is part of the DXX-Rebirth project <http://www.dxx-rebirth.com/>.
* This file is part of the DXX-Rebirth project <https://www.dxx-rebirth.com/>.
* It is copyright by its individual contributors, as recorded in the
* project's Git history. See COPYING.txt at the top level for license
* terms and a link to the Git history.

View File

@ -1,5 +1,5 @@
/*
* This file is part of the DXX-Rebirth project <http://www.dxx-rebirth.com/>.
* This file is part of the DXX-Rebirth project <https://www.dxx-rebirth.com/>.
* It is copyright by its individual contributors, as recorded in the
* project's Git history. See COPYING.txt at the top level for license
* terms and a link to the Git history.

View File

@ -1,5 +1,5 @@
/*
* This file is part of the DXX-Rebirth project <http://www.dxx-rebirth.com/>.
* This file is part of the DXX-Rebirth project <https://www.dxx-rebirth.com/>.
* It is copyright by its individual contributors, as recorded in the
* project's Git history. See COPYING.txt at the top level for license
* terms and a link to the Git history.

View File

@ -1,5 +1,5 @@
/*
* This file is part of the DXX-Rebirth project <http://www.dxx-rebirth.com/>.
* This file is part of the DXX-Rebirth project <https://www.dxx-rebirth.com/>.
* It is copyright by its individual contributors, as recorded in the
* project's Git history. See COPYING.txt at the top level for license
* terms and a link to the Git history.

View File

@ -1,5 +1,5 @@
/*
* This file is part of the DXX-Rebirth project <http://www.dxx-rebirth.com/>.
* This file is part of the DXX-Rebirth project <https://www.dxx-rebirth.com/>.
* It is copyright by its individual contributors, as recorded in the
* project's Git history. See COPYING.txt at the top level for license
* terms and a link to the Git history.

View File

@ -1,5 +1,5 @@
/*
* This file is part of the DXX-Rebirth project <http://www.dxx-rebirth.com/>.
* This file is part of the DXX-Rebirth project <https://www.dxx-rebirth.com/>.
* It is copyright by its individual contributors, as recorded in the
* project's Git history. See COPYING.txt at the top level for license
* terms and a link to the Git history.

View File

@ -1,5 +1,5 @@
/*
* This file is part of the DXX-Rebirth project <http://www.dxx-rebirth.com/>.
* This file is part of the DXX-Rebirth project <https://www.dxx-rebirth.com/>.
* It is copyright by its individual contributors, as recorded in the
* project's Git history. See COPYING.txt at the top level for license
* terms and a link to the Git history.

View File

@ -1,5 +1,5 @@
/*
* This file is part of the DXX-Rebirth project <http://www.dxx-rebirth.com/>.
* This file is part of the DXX-Rebirth project <https://www.dxx-rebirth.com/>.
* It is copyright by its individual contributors, as recorded in the
* project's Git history. See COPYING.txt at the top level for license
* terms and a link to the Git history.

View File

@ -1,5 +1,5 @@
/*
* This file is part of the DXX-Rebirth project <http://www.dxx-rebirth.com/>.
* This file is part of the DXX-Rebirth project <https://www.dxx-rebirth.com/>.
* It is copyright by its individual contributors, as recorded in the
* project's Git history. See COPYING.txt at the top level for license
* terms and a link to the Git history.

View File

@ -1,5 +1,5 @@
/*
* This file is part of the DXX-Rebirth project <http://www.dxx-rebirth.com/>.
* This file is part of the DXX-Rebirth project <https://www.dxx-rebirth.com/>.
* It is copyright by its individual contributors, as recorded in the
* project's Git history. See COPYING.txt at the top level for license
* terms and a link to the Git history.

View File

@ -1,5 +1,5 @@
/*
* This file is part of the DXX-Rebirth project <http://www.dxx-rebirth.com/>.
* This file is part of the DXX-Rebirth project <https://www.dxx-rebirth.com/>.
* It is copyright by its individual contributors, as recorded in the
* project's Git history. See COPYING.txt at the top level for license
* terms and a link to the Git history.

View File

@ -1,5 +1,5 @@
/*
* This file is part of the DXX-Rebirth project <http://www.dxx-rebirth.com/>.
* This file is part of the DXX-Rebirth project <https://www.dxx-rebirth.com/>.
* It is copyright by its individual contributors, as recorded in the
* project's Git history. See COPYING.txt at the top level for license
* terms and a link to the Git history.

View File

@ -1,5 +1,5 @@
/*
* This file is part of the DXX-Rebirth project <http://www.dxx-rebirth.com/>.
* This file is part of the DXX-Rebirth project <https://www.dxx-rebirth.com/>.
* It is copyright by its individual contributors, as recorded in the
* project's Git history. See COPYING.txt at the top level for license
* terms and a link to the Git history.

View File

@ -1,5 +1,5 @@
/*
* This file is part of the DXX-Rebirth project <http://www.dxx-rebirth.com/>.
* This file is part of the DXX-Rebirth project <https://www.dxx-rebirth.com/>.
* It is copyright by its individual contributors, as recorded in the
* project's Git history. See COPYING.txt at the top level for license
* terms and a link to the Git history.

View File

@ -1,5 +1,5 @@
/*
* This file is part of the DXX-Rebirth project <http://www.dxx-rebirth.com/>.
* This file is part of the DXX-Rebirth project <https://www.dxx-rebirth.com/>.
* It is copyright by its individual contributors, as recorded in the
* project's Git history. See COPYING.txt at the top level for license
* terms and a link to the Git history.

View File

@ -1,5 +1,5 @@
/*
* This file is part of the DXX-Rebirth project <http://www.dxx-rebirth.com/>.
* This file is part of the DXX-Rebirth project <https://www.dxx-rebirth.com/>.
* It is copyright by its individual contributors, as recorded in the
* project's Git history. See COPYING.txt at the top level for license
* terms and a link to the Git history.

View File

@ -1,5 +1,5 @@
/*
* This file is part of the DXX-Rebirth project <http://www.dxx-rebirth.com/>.
* This file is part of the DXX-Rebirth project <https://www.dxx-rebirth.com/>.
* It is copyright by its individual contributors, as recorded in the
* project's Git history. See COPYING.txt at the top level for license
* terms and a link to the Git history.

View File

@ -1,5 +1,5 @@
/*
* This file is part of the DXX-Rebirth project <http://www.dxx-rebirth.com/>.
* This file is part of the DXX-Rebirth project <https://www.dxx-rebirth.com/>.
* It is copyright by its individual contributors, as recorded in the
* project's Git history. See COPYING.txt at the top level for license
* terms and a link to the Git history.

View File

@ -1,5 +1,5 @@
/*
* This file is part of the DXX-Rebirth project <http://www.dxx-rebirth.com/>.
* This file is part of the DXX-Rebirth project <https://www.dxx-rebirth.com/>.
* It is copyright by its individual contributors, as recorded in the
* project's Git history. See COPYING.txt at the top level for license
* terms and a link to the Git history.

View File

@ -1,5 +1,5 @@
/*
* This file is part of the DXX-Rebirth project <http://www.dxx-rebirth.com/>.
* This file is part of the DXX-Rebirth project <https://www.dxx-rebirth.com/>.
* It is copyright by its individual contributors, as recorded in the
* project's Git history. See COPYING.txt at the top level for license
* terms and a link to the Git history.

View File

@ -1,5 +1,5 @@
/*
* This file is part of the DXX-Rebirth project <http://www.dxx-rebirth.com/>.
* This file is part of the DXX-Rebirth project <https://www.dxx-rebirth.com/>.
* It is copyright by its individual contributors, as recorded in the
* project's Git history. See COPYING.txt at the top level for license
* terms and a link to the Git history.

View File

@ -1,5 +1,5 @@
/*
* This file is part of the DXX-Rebirth project <http://www.dxx-rebirth.com/>.
* This file is part of the DXX-Rebirth project <https://www.dxx-rebirth.com/>.
* It is copyright by its individual contributors, as recorded in the
* project's Git history. See COPYING.txt at the top level for license
* terms and a link to the Git history.

View File

@ -1,5 +1,5 @@
/*
* This file is part of the DXX-Rebirth project <http://www.dxx-rebirth.com/>.
* This file is part of the DXX-Rebirth project <https://www.dxx-rebirth.com/>.
* It is copyright by its individual contributors, as recorded in the
* project's Git history. See COPYING.txt at the top level for license
* terms and a link to the Git history.

View File

@ -1,5 +1,5 @@
/*
* This file is part of the DXX-Rebirth project <http://www.dxx-rebirth.com/>.
* This file is part of the DXX-Rebirth project <https://www.dxx-rebirth.com/>.
* It is copyright by its individual contributors, as recorded in the
* project's Git history. See COPYING.txt at the top level for license
* terms and a link to the Git history.

View File

@ -1,5 +1,5 @@
/*
* This file is part of the DXX-Rebirth project <http://www.dxx-rebirth.com/>.
* This file is part of the DXX-Rebirth project <https://www.dxx-rebirth.com/>.
* It is copyright by its individual contributors, as recorded in the
* project's Git history. See COPYING.txt at the top level for license
* terms and a link to the Git history.

View File

@ -1,5 +1,5 @@
/*
* This file is part of the DXX-Rebirth project <http://www.dxx-rebirth.com/>.
* This file is part of the DXX-Rebirth project <https://www.dxx-rebirth.com/>.
* It is copyright by its individual contributors, as recorded in the
* project's Git history. See COPYING.txt at the top level for license
* terms and a link to the Git history.

View File

@ -1,5 +1,5 @@
/*
* This file is part of the DXX-Rebirth project <http://www.dxx-rebirth.com/>.
* This file is part of the DXX-Rebirth project <https://www.dxx-rebirth.com/>.
* It is copyright by its individual contributors, as recorded in the
* project's Git history. See COPYING.txt at the top level for license
* terms and a link to the Git history.

View File

@ -1,5 +1,5 @@
/*
* This file is part of the DXX-Rebirth project <http://www.dxx-rebirth.com/>.
* This file is part of the DXX-Rebirth project <https://www.dxx-rebirth.com/>.
* It is copyright by its individual contributors, as recorded in the
* project's Git history. See COPYING.txt at the top level for license
* terms and a link to the Git history.

View File

@ -1,5 +1,5 @@
/*
* This file is part of the DXX-Rebirth project <http://www.dxx-rebirth.com/>.
* This file is part of the DXX-Rebirth project <https://www.dxx-rebirth.com/>.
* It is copyright by its individual contributors, as recorded in the
* project's Git history. See COPYING.txt at the top level for license
* terms and a link to the Git history.

View File

@ -1,5 +1,5 @@
/*
* This file is part of the DXX-Rebirth project <http://www.dxx-rebirth.com/>.
* This file is part of the DXX-Rebirth project <https://www.dxx-rebirth.com/>.
* It is copyright by its individual contributors, as recorded in the
* project's Git history. See COPYING.txt at the top level for license
* terms and a link to the Git history.

View File

@ -1,5 +1,5 @@
/*
* This file is part of the DXX-Rebirth project <http://www.dxx-rebirth.com/>.
* This file is part of the DXX-Rebirth project <https://www.dxx-rebirth.com/>.
* It is copyright by its individual contributors, as recorded in the
* project's Git history. See COPYING.txt at the top level for license
* terms and a link to the Git history.

View File

@ -1,5 +1,5 @@
/*
* This file is part of the DXX-Rebirth project <http://www.dxx-rebirth.com/>.
* This file is part of the DXX-Rebirth project <https://www.dxx-rebirth.com/>.
* It is copyright by its individual contributors, as recorded in the
* project's Git history. See COPYING.txt at the top level for license
* terms and a link to the Git history.

View File

@ -1,5 +1,5 @@
/*
* This file is part of the DXX-Rebirth project <http://www.dxx-rebirth.com/>.
* This file is part of the DXX-Rebirth project <https://www.dxx-rebirth.com/>.
* It is copyright by its individual contributors, as recorded in the
* project's Git history. See COPYING.txt at the top level for license
* terms and a link to the Git history.

View File

@ -1,5 +1,5 @@
/*
* This file is part of the DXX-Rebirth project <http://www.dxx-rebirth.com/>.
* This file is part of the DXX-Rebirth project <https://www.dxx-rebirth.com/>.
* It is copyright by its individual contributors, as recorded in the
* project's Git history. See COPYING.txt at the top level for license
* terms and a link to the Git history.

View File

@ -1,5 +1,5 @@
/*
* This file is part of the DXX-Rebirth project <http://www.dxx-rebirth.com/>.
* This file is part of the DXX-Rebirth project <https://www.dxx-rebirth.com/>.
* It is copyright by its individual contributors, as recorded in the
* project's Git history. See COPYING.txt at the top level for license
* terms and a link to the Git history.

View File

@ -1,5 +1,5 @@
/*
* This file is part of the DXX-Rebirth project <http://www.dxx-rebirth.com/>.
* This file is part of the DXX-Rebirth project <https://www.dxx-rebirth.com/>.
* It is copyright by its individual contributors, as recorded in the
* project's Git history. See COPYING.txt at the top level for license
* terms and a link to the Git history.

View File

@ -1,5 +1,5 @@
/*
* This file is part of the DXX-Rebirth project <http://www.dxx-rebirth.com/>.
* This file is part of the DXX-Rebirth project <https://www.dxx-rebirth.com/>.
* It is copyright by its individual contributors, as recorded in the
* project's Git history. See COPYING.txt at the top level for license
* terms and a link to the Git history.

Some files were not shown because too many files have changed in this diff Show More