summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolás Reynolds <fauno@kiwwwi.com.ar>2011-06-10 16:38:25 -0300
committerNicolás Reynolds <fauno@kiwwwi.com.ar>2011-06-10 16:38:25 -0300
commit294bf173236610fc8c308f81d8617e7e0d0e4bff (patch)
tree01ff4f73f8e1ed06ab3f8cd2696595c4431269de
parent7dd2c8ea0a0264b86c49f3168dcb41a4337ccc73 (diff)
Added HTTPS only message
-rw-r--r--templates/public/https.html39
-rw-r--r--urls.py2
2 files changed, 41 insertions, 0 deletions
diff --git a/templates/public/https.html b/templates/public/https.html
new file mode 100644
index 00000000..7cfe44e9
--- /dev/null
+++ b/templates/public/https.html
@@ -0,0 +1,39 @@
+{% extends "base.html" %}
+{% block title %}Parabola - HTTPS Only site{% endblock %}
+{% block content %}
+<div class="box">
+ <h2 class="title">Parabola GNU/Linux-libre</h2>
+
+ <p>Hi! This is not the main site. You're seeing this message because you
+ entered our website without using a secure connection. We like privacy for
+ all so we've decided to serve our website only through secure channels.</p>
+
+ <p>The website uses SSL certificates issued by <a
+ href="http://cacert.org">CACert</a>. Some web browsers or systems still
+ don't provide CACert's root certificate, so if you find a huge error
+ message telling you're about to do something bad, come back here and keep
+ reading.</p>
+
+ <p><a href="https://parabolagnulinux.org">Parabola GNU/Linux-libre</a></p>
+
+ <h3>I just want to get the ISOs</h3>
+
+ <p>You can proceed to our <a
+ href="http://wiki.parabolagnulinux.org/get">ISOs download page</a> on <a
+ href="http://wiki.parabolagnulinux.org/">our wiki</a> (which isn't secured
+ yet, sadly).</p>
+
+ <h3>I want to do this the right way</h3>
+
+ <p>Ask your distribution to <a
+ href="http://wiki.cacert.org/InclusionStatus" title="CACert's inclusion
+ status">include</a> CACert's root certificates.</p>
+
+ <p>Alternatively, <a
+ href="http://www.cacert.org/index.php?id=3">install</a> the root
+ certificate in your browser. <a
+ href="http://wiki.cacert.org/BrowserClients">(more details here.)</a></p>
+
+</div>
+{% endblock %}
+
diff --git a/urls.py b/urls.py
index 8cae8660..209fb899 100644
--- a/urls.py
+++ b/urls.py
@@ -51,6 +51,8 @@ urlpatterns += patterns('public.views',
(r'^$', 'index', {}, 'index'),
(r'^about/$', TemplateView.as_view(template_name='public/about.html'),
{}, 'page-about'),
+ (r'^https/$', TemplateView.as_view(template_name='public/https.html'),
+ {}, 'page-https'),
(r'^art/$', TemplateView.as_view(template_name='public/art.html'),
{}, 'page-art'),
(r'^svn/$', TemplateView.as_view(template_name='public/svn.html'),