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 99525e6..b945931 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-24-g4f1b