summaryrefslogtreecommitdiffstats
path: root/lib.py
diff options
context:
space:
mode:
authorJan Pokorný <jpokorny@redhat.com>2013-11-08 16:17:45 +0100
committerJan Pokorný <jpokorny@redhat.com>2013-11-08 16:17:45 +0100
commit706f7c7dfade403468ab4dfb836501430dc78d9d (patch)
treebb15da886548b19019c07751515462fe49730739 /lib.py
parentfddfbb44e7d3b1b00707e1e1510bf9910271c9d9 (diff)
downloadcluster-overview-706f7c7dfade403468ab4dfb836501430dc78d9d.tar.gz
cluster-overview-706f7c7dfade403468ab4dfb836501430dc78d9d.tar.xz
cluster-overview-706f7c7dfade403468ab4dfb836501430dc78d9d.zip
Start tracking "location" (install. path) for the entities
Signed-off-by: Jan Pokorný <jpokorny@redhat.com>
Diffstat (limited to 'lib.py')
-rw-r--r--lib.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/lib.py b/lib.py
index eb8d818..8ebbec4 100644
--- a/lib.py
+++ b/lib.py
@@ -183,6 +183,9 @@ def xdot_graph(graph, *args, **kwargs):
markup += "<b>" + cls.summary + "</b>\n\n"
if hasattr(cls, 'web'):
markup += "<u>" + cls.web + "</u>\n\n"
+ if hasattr(cls, 'location'):
+ markup += "location:\n"
+ markup += "<u>" + cls.location + "</u>\n\n"
if hasattr(cls, 'repo'):
markup += "repository:\n"
for name, value in cls.repo.iteritems():