Request: HTTPS consistency

Siguza

Terraformer
Jan 28, 2017
10
19
3
siguza.net
#1
Is this the right place to post questions/requests for the website/the forums, or is there a sort of "meta" forum I've missed?

Most links on em8er.com and forums.em8er.com are HTTPS, but not all.
I wrote a line of JavaScript to extract all links:
Code:
[].map.call(document.querySelectorAll('a'),function(e){return e.href}).sort().join("\n")
Running that in the developer console reveals (filtered out HTTPS links):

On em8er.com:
Code:
http://discord.gg/xwRCmWW
http://discord.gg/xwRCmWW
http://discord.gg/xwRCmWW
http://em8er.com/
http://em8er.com/company/
http://facebook.com/Em-8er-Massive-Planetary-Wargame-1254164697950463/
http://forums.em8er.com/
http://goo.gl/maps/1OhOu
http://twitter.com/emberthegame
On forums.em8er.com:
Code:
http://www.crixa.io/
http://www.emberthegame.com/
http://www.leagueforgamers.com/
Out of all of those, crixa.io is the only one that doesn't support HTTPS. Also note that em8er.com links to a lot of em8er.com/something links with HTTPS. The most frustrating one though, is the forum being linked to in plain HTTP, but every link on the forum itself being HTTPS, making you bounce back and forth between being logged in and out.

In my humble opinion, all outgoing links (save for crixa.io) should be HTTPS, and all internal links should either be HTTPS, or start with "//" to remain on whatever protocol the current page is using.

Is anyone with me on this?
I'd find it pretty cool if that could be done. :)