Skip to content

Commit

Permalink
Using https
Browse files Browse the repository at this point in the history
  • Loading branch information
pbelmans committed Jul 27, 2018
1 parent 7326e88 commit 56fdd92
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions css/main.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@import url(http://fonts.googleapis.com/css?family=Droid+Sans);
@import url(http://fonts.googleapis.com/css?family=Droid+Sans+Mono);
@import url(https://fonts.googleapis.com/css?family=Droid+Sans);
@import url(https://fonts.googleapis.com/css?family=Droid+Sans+Mono);

body {
font-family: "Droid Sans", Arial, sans-serif;
Expand Down
10 changes: 5 additions & 5 deletions index.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,23 +23,23 @@
<title>Tables for the Stacks project</title>
<meta charset="utf-8">

<script type="text/javascript" src="http://code.jquery.com/jquery-1.10.1.min.js"></script>
<script type="text/javascript" src="https://code.jquery.com/jquery-1.10.1.min.js"></script>
<script type="text/javascript" src="js/floatHead/dist/jquery.floatThead.js"></script>
<script type="text/javascript" src="js/table.js"></script>
<script type='text/x-mathjax-config'>
MathJax.Hub.Config({
extensions: ['tex2jax.js'],
jax: ['input/TeX','output/HTML-CSS'],
TeX: {extensions: ['http://sonoisa.github.io/xyjax_ext/xypic.js', 'AMSmath.js', 'AMSsymbols.js'], TagSide: 'left'}, // TODO fix this: once cpw is updated to the latest version of XyJax
TeX: {extensions: ['https://sonoisa.github.io/xyjax_ext/xypic.js', 'AMSmath.js', 'AMSsymbols.js'], TagSide: 'left'}, // TODO fix this: once cpw is updated to the latest version of XyJax
tex2jax: {inlineMath: [['$','$']]},
'HTML-CSS': { scale: 85 }
});
</script>
<script type='text/javascript' src='http://cdn.mathjax.org/mathjax/latest/MathJax.js'></script>
<script type='text/javascript' src='https://cdn.mathjax.org/mathjax/latest/MathJax.js'></script>

<link rel="stylesheet" type="text/css" href="css/main.css">
<link rel="stylesheet" type="text/css" href="css/table.css">
<link rel="stylesheet" type="text/css" href="http://stacks.math.columbia.edu/css/tag.css">
<link rel="stylesheet" type="text/css" href="https://stacks.math.columbia.edu/css/tag.css">

<script type="text/javascript">
// keep track of the location of the mouse and change the position of the tooltips
Expand Down Expand Up @@ -107,7 +107,7 @@ function toggleTooltipCustom() { // TODO better name, or better approach to this

<body>
<div id="wrapper">
<h1><a href="http://stacks.math.columbia.edu">The Stacks project tables</a></h1>
<h1><a href="https://stacks.math.columbia.edu">The Stacks project tables</a></h1>

<h2>Stability of properties of morphisms</h2>
<?php
Expand Down
2 changes: 1 addition & 1 deletion php/tag.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ function isValidTag($tag) {
}

if (isValidTag($_GET["tag"]))
print file_get_contents("http://stacks.math.columbia.edu/data/tag/" . $_GET["tag"] . "/content/statement");
print file_get_contents("https://stacks.math.columbia.edu/data/tag/" . $_GET["tag"] . "/content/statement");
?>
4 changes: 2 additions & 2 deletions table.php
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ public function __construct($database) {

protected function outputRelation($relation) {
$output = "";

if (empty($relation)) // empty string implies that there is no relation in the database
$output .= "<td></td>";
else
Expand Down Expand Up @@ -263,7 +263,7 @@ protected function outputRowHeader($row) {
*/
class StacksLinks {
public static function tag($tag) {
return "http://stacks.math.columbia.edu/tag/" . $tag;
return "https://stacks.math.columbia.edu/tag/" . $tag;
}
}

Expand Down

0 comments on commit 56fdd92

Please sign in to comment.