[wsgi] Fix https detection
- 'HTTPS' is not part of wsgi, it is a CGI variable. The right wsgi variable
is 'wsgi.url_scheme'
- Force https if url starts with '/https/' (and remove the prefix from the
path.
Closes #4305985
$(document).ready(function() {
module("air");
test("test 1", function() {
equals(2, 4);
});
test("test 2", function() {
equals('', '45');
equals('1024', '32');
});
module("able");
test("test 3", function() {
same(1, 1);
});
});