Skip to content

Commit e759964

Browse files
committed
We're on HTTPS now!
1 parent 78e9449 commit e759964

25 files changed

+51
-51
lines changed

CONTRIBUTING.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ Code contribution
1717
the [README](README.md) for details.
1818
- Follow the project coding guidelines. In short — try to match style of the
1919
surrounding code and avoid any trailing whitespace. When in doubt, consult
20-
[Coding Style](http://doc.magnum.graphics/corrade/corrade-coding-style.html)
20+
[Coding Style](https://doc.magnum.graphics/corrade/corrade-coding-style.html)
2121
guidelines.
22-
- There's a [Developers Guide](http://doc.magnum.graphics/corrade/corrade-developers.html)
22+
- There's a [Developers Guide](https://doc.magnum.graphics/corrade/corrade-developers.html)
2323
providing step-by-step checklists for almost every development aspect. It's
2424
not strictly required to follow it to the point, but doing so will save the
2525
maintainers a lot of time during review and merging.

CREDITS.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,4 @@ Listing only people with code contributions, because otherwise there's too many
2828
- [@xantares](https://github.com/xantares) -- Windows port improvements
2929

3030
Is this list missing your name or something's wrong?
31-
[Let us know!](http://magnum.graphics/contact/)
31+
[Let us know!](https://magnum.graphics/contact/)

Doxyfile-mcss

+2-2
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ HTML_EXTRA_STYLESHEET = \
4141
https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,400i,600,600i%7CSource+Code+Pro:400,400i,600&subset=latin-ext \
4242
../css/m-dark+doxygen.compiled.css
4343

44-
##! M_MAIN_PROJECT_URL = http://magnum.graphics/corrade/
45-
##! M_PAGE_FINE_PRINT = "<p>Corrade docs. Part of the <a href="http://magnum.graphics/">Magnum project</a>, copyright © <a href="http://mosra.cz/">Vladimír Vondruš</a> and contributors, 2007&ndash;2018.<br />Generated by <a href="http://doxygen.org/">Doxygen</a> {doxygen_version} and <a href="http://mcss.mosra.cz/">m.css</a>. Contact the team via <a href="https://github.com/mosra/magnum">GitHub</a>, <a href="https://gitter.im/mosra/magnum">Gitter</a>, <a href="mailto:[email protected]">e-mail</a> or <a href="https://twitter.com/czmosra">Twitter</a>.</p>"
44+
##! M_MAIN_PROJECT_URL = https://magnum.graphics/corrade/
45+
##! M_PAGE_FINE_PRINT = "<p>Corrade docs. Part of the <a href="https://magnum.graphics/">Magnum project</a>, copyright © <a href="http://mosra.cz/">Vladimír Vondruš</a> and contributors, 2007&ndash;2018.<br />Generated by <a href="https://doxygen.org/">Doxygen</a> {doxygen_version} and <a href="http://mcss.mosra.cz/">m.css</a>. Contact the team via <a href="https://github.com/mosra/magnum">GitHub</a>, <a href="https://gitter.im/mosra/magnum">Gitter</a>, <a href="mailto:[email protected]">e-mail</a> or <a href="https://twitter.com/czmosra">Twitter</a>.</p>"
4646

4747
##! M_FAVICON = doc/favicon.ico
4848

Doxyfile-public

+3-3
Original file line numberDiff line numberDiff line change
@@ -39,12 +39,12 @@ GENERATE_BUGLIST = NO
3939

4040
HTML_EXTRA_STYLESHEET = \
4141
https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,400i,600,600i%7CSource+Code+Pro:400,400i,600&subset=latin-ext \
42-
http://static.magnum.graphics/m-dark.compiled.css \
43-
http://static.magnum.graphics/m-dark.doxygen.compiled.css
42+
https://static.magnum.graphics/m-dark.compiled.css \
43+
https://static.magnum.graphics/m-dark.doxygen.compiled.css
4444

4545
##! M_SEARCH_DOWNLOAD_BINARY = YES
4646

47-
##! M_FAVICON = http://doc.magnum.graphics/favicon.ico
47+
##! M_FAVICON = https://doc.magnum.graphics/favicon.ico
4848

4949
##! M_SEARCH_EXTERNAL_URL = "https://google.com/search?q=site:doc.magnum.graphics+Corrade+{query}"
5050

README.md

+14-14
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
> *corrade* (v.) — “To scrape together, to gather together from various sources”
22
33
Corrade is a multiplatform utility library written in C++11/C++14. It's used as
4-
a base for the [Magnum graphics engine](http://magnum.graphics/), among other
4+
a base for the [Magnum graphics engine](https://magnum.graphics/), among other
55
things.
66

77
[![Join the chat at https://gitter.im/mosra/magnum](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/mosra/magnum?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
@@ -10,8 +10,8 @@ things.
1010
[![Coverage Status](https://codecov.io/gh/mosra/corrade/branch/master/graph/badge.svg)](https://codecov.io/gh/mosra/corrade)
1111
[![MIT License](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
1212

13-
- Project homepage — http://magnum.graphics/corrade/
14-
- Documentation — http://doc.magnum.graphics/corrade/
13+
- Project homepage — https://magnum.graphics/corrade/
14+
- Documentation — https://doc.magnum.graphics/corrade/
1515
- GitHub project page — https://github.com/mosra/corrade
1616

1717
SUPPORTED PLATFORMS
@@ -24,7 +24,7 @@ SUPPORTED PLATFORMS
2424
- **Web** ([asm.js](http://asmjs.org/) or [WebAssembly](http://webassembly.org/)),
2525
through [Emscripten](http://kripken.github.io/emscripten-site/)
2626

27-
See the Magnum Project [Build Status page](http://magnum.graphics/build-status/)
27+
See the Magnum Project [Build Status page](https://magnum.graphics/build-status/)
2828
for detailed per-platform build status.
2929

3030
FEATURES
@@ -40,47 +40,47 @@ FEATURES
4040
handling and hot code reload
4141
- Signal/slot connection library with full type safety
4242

43-
Check also the Magnum Project [Feature Overview pages](http://magnum.graphics/features/)
43+
Check also the Magnum Project [Feature Overview pages](https://magnum.graphics/features/)
4444
for further information.
4545

4646
WHAT'S NEW?
4747
===========
4848

4949
Curious about what was added or improved recently? Check out the
50-
[Changelog](http://doc.magnum.graphics/corrade/corrade-changelog.html#corrade-changelog-latest)
50+
[Changelog](https://doc.magnum.graphics/corrade/corrade-changelog.html#corrade-changelog-latest)
5151
page in the documentation. Check also the Magnum Project
52-
[Changelog](http://doc.magnum.graphics/magnum/changelog.html#changelog-latest).
52+
[Changelog](https://doc.magnum.graphics/magnum/changelog.html#changelog-latest).
5353

5454
GETTING STARTED
5555
===============
5656

5757
Download, build and install Corrade as explained in
58-
[the building documentation](http://doc.magnum.graphics/corrade/building-corrade.html)
58+
[the building documentation](https://doc.magnum.graphics/corrade/building-corrade.html)
5959
— we provide packages for many platforms, including Windows, Linux and macOS.
6060
After that, the best way to get started is to read some
61-
[examples and tutorials](http://doc.magnum.graphics/corrade/corrade-example-index.html).
61+
[examples and tutorials](https://doc.magnum.graphics/corrade/corrade-example-index.html).
6262

6363
CONTACT & SUPPORT
6464
=================
6565

6666
If you want to contribute to Corrade, if you spotted a bug, need a feature or
6767
have an awesome idea, you can get a copy of the sources from GitHub and start
6868
right away! There is the already mentioned guide about
69-
[how to download and build Corrade](http://doc.magnum.graphics/corrade/building-corrade.html)
70-
and also a guide about [coding style and best practices](http://doc.magnum.graphics/corrade/corrade-coding-style.html)
69+
[how to download and build Corrade](https://doc.magnum.graphics/corrade/building-corrade.html)
70+
and also a guide about [coding style and best practices](https://doc.magnum.graphics/corrade/corrade-coding-style.html)
7171
which you should follow to keep the library as consistent and maintainable as
7272
possible.
7373

74-
- Project homepage — http://magnum.graphics/corrade/
75-
- Documentation — http://doc.magnum.graphics/corrade/
74+
- Project homepage — https://magnum.graphics/corrade/
75+
- Documentation — https://doc.magnum.graphics/corrade/
7676
- GitHub project page — https://github.com/mosra/corrade
7777
- Gitter community chat — https://gitter.im/mosra/magnum
7878
- E-mail — [email protected]
7979
- IRC — join the `#magnum-engine` channel on freenode
8080
- Google Groups mailing list — [email protected] ([archive](https://groups.google.com/forum/#!forum/magnum-engine))
8181
- Author's personal Twitter — https://twitter.com/czmosra
8282

83-
See also the Magnum Project [Contact & Support page](http://magnum.graphics/contact/)
83+
See also the Magnum Project [Contact & Support page](https://magnum.graphics/contact/)
8484
for further information.
8585

8686
CREDITS

doc/building-corrade.dox

+1-1
Original file line numberDiff line numberDiff line change
@@ -526,7 +526,7 @@ the `build/` directory if it doesn't exist yet.
526526
The documentation can be also generated using the
527527
[m.css Doxygen theme](http://mcss.mosra.cz/doxygen/). Use `Doxyfile-mcss` for a
528528
local build, the `Doxyfile-public` is meant for the publicly available
529-
documentation at http://doc.magnum.graphics/corrade/. The resulting
529+
documentation at https://doc.magnum.graphics/corrade/. The resulting
530530
documentation will be either in `build/doc-mcss/` or `build/doc-public/`.
531531

532532
@subsection building-corrade-examples Building examples

doc/corrade-changelog-old.dox

+6-6
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ namespace Corrade {
3333

3434
Released 2015-05-09, tagged as
3535
[v2015.05](https://github.com/mosra/corrade/releases/tag/v2015.05). See the
36-
[release announcement](http://blog.magnum.graphics/announcements/may-2015-updates/)
36+
[release announcement](https://blog.magnum.graphics/announcements/may-2015-updates/)
3737
for a high-level overview.
3838

3939
@subsection corrade-changelog-2015-05-dependencies Dependency changes
@@ -107,7 +107,7 @@ No API was deprecated in this release.
107107

108108
Released 2014-06-30, tagged as
109109
[v2014.06](https://github.com/mosra/corrade/releases/tag/v2014.06). See the
110-
[release announcement](http://blog.magnum.graphics/announcements/june-2014-updates/)
110+
[release announcement](https://blog.magnum.graphics/announcements/june-2014-updates/)
111111
for a high-level overview.
112112

113113
@subsection corrade-changelog-2014-06-dependencies Dependency changes
@@ -155,7 +155,7 @@ No API was deprecated in this release.
155155

156156
Released 2014-01-21, tagged as
157157
[v2014.01](https://github.com/mosra/corrade/releases/tag/v2014.01). See the
158-
[release announcement](http://blog.magnum.graphics/announcements/january-2014-updates/)
158+
[release announcement](https://blog.magnum.graphics/announcements/january-2014-updates/)
159159
for a high-level overview.
160160

161161
@subsection corrade-changelog-2014-01-dependencies Dependency changes
@@ -250,7 +250,7 @@ No dependency changes in this release.
250250

251251
Released 2013-10-30, tagged as
252252
[v2013.10](https://github.com/mosra/corrade/releases/tag/v2013.10). See the
253-
[release annoucement](http://blog.magnum.graphics/announcements/october-2013-updates/)
253+
[release annoucement](https://blog.magnum.graphics/announcements/october-2013-updates/)
254254
for a high-level overview.
255255

256256
@subsection corrade-changelog-2013-10-dependencies Dependency changes
@@ -303,14 +303,14 @@ No deprecated API was removed in this release.
303303

304304
Released 2013-08-30, tagged as
305305
[v2013.08](https://github.com/mosra/corrade/releases/tag/v2013.08). See the
306-
[Magnum project announcement](http://blog.magnum.graphics/announcements/introducing-magnum/)
306+
[Magnum project announcement](https://blog.magnum.graphics/announcements/introducing-magnum/)
307307
for a high-level overview.
308308

309309
@section corrade-changelog-2012-02 2012.02
310310

311311
Released 2012-02-08, tagged as
312312
[v2012.02](https://github.com/mosra/corrade/releases/tag/v2012.02). See the
313-
[project announcement](http://blog.magnum.graphics/announcements/introducing-corrade/)
313+
[project announcement](https://blog.magnum.graphics/announcements/introducing-corrade/)
314314
for a high-level overview.
315315

316316
*/

doc/corrade-changelog.dox

+2-2
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ namespace Corrade {
8282
@subsubsection corrade-changelog-latest-changes-testsuite TestSuite library
8383

8484
- Adapted Emscripten test runner markup for consistency with the
85-
[m.css](http://mcss.mosra.cz) theme used in [Magnum](http://magnum.graphics)
85+
[m.css](http://mcss.mosra.cz) theme used in [Magnum](https://magnum.graphics)
8686
- It's now possible to have non-copyable and non-moveable
8787
@ref TestSuite::Comparator specializations
8888

@@ -246,7 +246,7 @@ Released 2018-05-01, tagged as
246246

247247
Released 2018-02-15, tagged as
248248
[v2018.02](https://github.com/mosra/corrade/releases/tag/v2018.02). See the
249-
[release announcement](http://blog.magnum.graphics/announcements/2018.02/) for
249+
[release announcement](https://blog.magnum.graphics/announcements/2018.02/) for
250250
a high-level overview.
251251

252252
@subsection corrade-changelog-2018-02-dependencies Dependency changes

doc/mainpage.dox

+4-4
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@ namespace Corrade {
2929
> *corrade* (v.) --- “To scrape together, to gather together from various sources”
3030

3131
This is a documentation for Corrade, a multiplatform utility library written in
32-
C++11/C++14, that's used as a base for the [Magnum Project](http://magnum.graphics).
32+
C++11/C++14, that's used as a base for the [Magnum Project](https://magnum.graphics).
3333
To see high-level feature overview, project goals or read the developer blog,
34-
head over to the [project homepage](http://magnum.graphics/corrade/).
34+
head over to the [project homepage](https://magnum.graphics/corrade/).
3535

3636
@section corrade-mainpage-whats-new What's new?
3737

@@ -56,15 +56,15 @@ should follow to keep the library as consistent and maintainable as possible.
5656

5757
Feel free to get more information or contact the team at:
5858

59-
- Project homepage --- http://magnum.graphics/corrade/
59+
- Project homepage --- https://magnum.graphics/corrade/
6060
- GitHub project page --- https://github.com/mosra/corrade
6161
- Gitter community chat --- https://gitter.im/mosra/magnum
6262
- E-mail --- [email protected]
6363
- IRC --- join the <tt>\#magnum-engine</tt> channel on freenode
6464
- Google Groups mailing list --- [email protected] ([archive](https://groups.google.com/forum/#!forum/magnum-engine))
6565
- Author's personal Twitter --- https://twitter.com/czmosra
6666

67-
See also the Magnum Project [Contact & Support page](http://magnum.graphics/contact/)
67+
See also the Magnum Project [Contact & Support page](https://magnum.graphics/contact/)
6868
for further information.
6969

7070
@section corrade-mainpage-license License

package/archlinux/PKGBUILD

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ pkgver=dev
44
pkgrel=1
55
pkgdesc="C++11/C++14 multiplatform utility library"
66
arch=('i686' 'x86_64')
7-
url="http://magnum.graphics/corrade/"
7+
url="https://magnum.graphics/corrade/"
88
license=('MIT')
99
makedepends=('cmake' 'ninja')
1010
options=(!strip)

package/archlinux/PKGBUILD-android-arm64

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ pkgver=dev
44
pkgrel=1
55
pkgdesc="C++11/C++14 multiplatform utility library (Android ARM64)"
66
arch=('any')
7-
url="http://magnum.graphics/corrade/"
7+
url="https://magnum.graphics/corrade/"
88
license=('MIT')
99
makedepends=('cmake' 'ninja' 'android-ndk')
1010
options=(!strip !buildflags staticlibs)

package/archlinux/PKGBUILD-clang

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ pkgver=dev.clang
44
pkgrel=1
55
pkgdesc="C++11/C++14 multiplatform utility library (built with Clang)"
66
arch=('i686' 'x86_64')
7-
url="http://magnum.graphics/corrade/"
7+
url="https://magnum.graphics/corrade/"
88
license=('MIT')
99
makedepends=('cmake' 'ninja' 'clang')
1010
options=(!strip)

package/archlinux/PKGBUILD-clang-addresssanitizer

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ pkgver=dev.clang.addresssanitizer
44
pkgrel=1
55
pkgdesc="C++11/C++14 multiplatform utility library (clang-addresssanitizer build)"
66
arch=('i686' 'x86_64')
7-
url="http://magnum.graphics/corrade/"
7+
url="https://magnum.graphics/corrade/"
88
license=('MIT')
99
makedepends=('cmake' 'clang')
1010
options=(!strip)

package/archlinux/PKGBUILD-clang-libc++

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ pkgver=dev.clang.libc++
44
pkgrel=1
55
pkgdesc="C++11/C++14 multiplatform utility library (built with Clang and libc++)"
66
arch=('i686' 'x86_64')
7-
url="http://magnum.graphics/corrade/"
7+
url="https://magnum.graphics/corrade/"
88
license=('MIT')
99
makedepends=('cmake' 'ninja' 'clang' 'libc++')
1010
options=(!strip)

package/archlinux/PKGBUILD-coverage

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ pkgver=dev
44
pkgrel=1
55
pkgdesc="C++11/C++14 multiplatform utility library (coverage build)"
66
arch=('i686' 'x86_64')
7-
url="http://magnum.graphics/corrade/"
7+
url="https://magnum.graphics/corrade/"
88
license=('MIT')
99
makedepends=('cmake' 'ninja' 'lcov' 'gcc6')
1010
options=(!strip)

package/archlinux/PKGBUILD-emscripten

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ pkgver=dev
44
pkgrel=1
55
pkgdesc="C++11/C++14 multiplatform utility library (Emscripten)"
66
arch=('any')
7-
url="http://magnum.graphics/corrade/"
7+
url="https://magnum.graphics/corrade/"
88
license=('MIT')
99
makedepends=('cmake' 'emscripten' 'ninja')
1010
options=(!strip !buildflags)

package/archlinux/PKGBUILD-emscripten-wasm

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ pkgver=dev.wasm
44
pkgrel=1
55
pkgdesc="C++11/C++14 multiplatform utility library (Emscripten, wasm)"
66
arch=('any')
7-
url="http://magnum.graphics/corrade/"
7+
url="https://magnum.graphics/corrade/"
88
license=('MIT')
99
makedepends=('cmake' 'emscripten' 'ninja')
1010
options=(!strip !buildflags)

package/archlinux/PKGBUILD-gcc47

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ pkgver=dev.gcc47
44
pkgrel=1
55
pkgdesc="C++11/C++14 multiplatform utility library (built with GCC 4.7)"
66
arch=('i686' 'x86_64')
7-
url="http://magnum.graphics/corrade/"
7+
url="https://magnum.graphics/corrade/"
88
license=('MIT')
99
makedepends=('cmake' 'ninja' 'gcc47')
1010
options=(!strip)

package/archlinux/PKGBUILD-mingw-w64

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ pkgver=dev
44
pkgrel=1
55
pkgdesc="C++11/C++14 multiplatform utility library (mingw-w64)"
66
arch=('any')
7-
url="http://magnum.graphics/corrade/"
7+
url="https://magnum.graphics/corrade/"
88
license=('MIT')
99
depends=('mingw-w64-crt')
1010
makedepends=('mingw-w64-gcc' 'cmake' 'ninja' 'corrade')

package/archlinux/PKGBUILD-release

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ pkgver=dev.release
44
pkgrel=1
55
pkgdesc="C++11/C++14 multiplatform utility library (debug+release libs)"
66
arch=('i686' 'x86_64')
7-
url="http://magnum.graphics/corrade/"
7+
url="https://magnum.graphics/corrade/"
88
license=('MIT')
99
makedepends=('cmake' 'ninja')
1010
options=('!strip')

package/archlinux/corrade-git/PKGBUILD

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ pkgver=2018.04.r0.ga8ad660e
44
pkgrel=1
55
pkgdesc="C++11/C++14 multiplatform utility library (Git version)"
66
arch=('i686' 'x86_64')
7-
url="http://magnum.graphics/corrade/"
7+
url="https://magnum.graphics/corrade/"
88
license=('MIT')
99
makedepends=('cmake' 'git')
1010
provides=('corrade')

package/debian/control

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Maintainer: Vladimír Vondruš <[email protected]>
44
Build-Depends: debhelper (>= 9), cmake (>= 2.8.12)
55
Standards-Version: 3.9.2
66
Section: libs
7-
Homepage: http://magnum.graphics/corrade/
7+
Homepage: https://magnum.graphics/corrade/
88
Vcs-Git: git://github.com/mosra/corrade.git
99
Vcs-Browser: https://github.com/mosra/corrade
1010

package/gentoo/dev-libs/corrade/corrade-9999.ebuild

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ EGIT_REPO_URI="git://github.com/mosra/corrade.git"
55
inherit cmake-utils git-r3
66

77
DESCRIPTION="C++11 Multiplatform plugin management and utility library"
8-
HOMEPAGE="http://magnum.graphics/corrade/"
8+
HOMEPAGE="https://magnum.graphics/corrade/"
99

1010
LICENSE="MIT"
1111
SLOT="0"

package/homebrew/corrade.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
class Corrade < Formula
44
desc "C++11/C++14 multiplatform utility library"
5-
homepage "http://magnum.graphics/corrade/"
5+
homepage "https://magnum.graphics/corrade/"
66
url "https://github.com/mosra/corrade/archive/v2018.02.tar.gz"
77
sha256 "6f05160b24dd34cdbd2b30d72972c750f20dd0982dd647780fb55e710626c4cc"
88
head "git://github.com/mosra/corrade.git"

package/rpm/corrade.spec

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Name: corrade
2-
URL: http://magnum.graphics/corrade/
2+
URL: https://magnum.graphics/corrade/
33
Version: 0.2
44
Release: 1
55
License: MIT

0 commit comments

Comments
 (0)