From c9d51d08c9e9fe0e04c013809f4278036b05b50e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20B=C3=A4chler?= Date: Sun, 4 Dec 2011 17:51:36 +0100 Subject: download: add a link to the new netboot environment Signed-off-by: Dan McGee --- templates/public/download.html | 2 ++ 1 file changed, 2 insertions(+) (limited to 'templates') diff --git a/templates/public/download.html b/templates/public/download.html index 36aca9ad..3e33ab32 100644 --- a/templates/public/download.html +++ b/templates/public/download.html @@ -122,6 +122,8 @@ -- cgit v1.2.3-2-g168b From 1c23308299f33e5b429899463eb207f07ad51403 Mon Sep 17 00:00:00 2001 From: Dan McGee Date: Mon, 5 Dec 2011 22:12:09 -0600 Subject: Add developer keys visualization Well, almost add it- it is currently commented out as I have a few more things I'd like to take care of, namely correcting static files versioning and caching, to ensure this doesn't break things. This is a force-directed graph drawn using D3 as the package treemap already does. We color the dots by "group", e.g. "dev", "tu", or "master", and then outline developer keys in green if they have at least 3 master key signatures, red if they have fewer. Hovering over a circle will show you who's key you are seeing in the visualization. Signed-off-by: Dan McGee --- templates/visualize/index.html | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) (limited to 'templates') diff --git a/templates/visualize/index.html b/templates/visualize/index.html index 99525e69..b9459318 100644 --- a/templates/visualize/index.html +++ b/templates/visualize/index.html @@ -4,10 +4,7 @@ {% block content %}
- -

Visualizations of Packaging Data

- -

Package Treemap

+

Visualization of Package Data

@@ -25,9 +22,16 @@
+{% comment %} +
+

Visualization of PGP Master and Signing Keys

+
+
+{% endcomment %} {% load cdn %}{% jquery %} + @@ -38,6 +42,7 @@ $(document).ready(function() { "arch": { url: "{% url visualize-byarch %}", color_attr: "arch" }, }; packages_treemap("#visualize-archrepo", orderings, "repo"); + /*developer_keys("#visualize-keys", "{% url visualize-pgp_keys %}");*/ }); {% endblock %} -- cgit v1.2.3-2-g168b