summaryrefslogtreecommitdiffstats
path: root/lib_edges.py
diff options
context:
space:
mode:
authorJan Pokorný <jpokorny@redhat.com>2013-09-27 22:10:58 +0200
committerJan Pokorný <jpokorny@redhat.com>2013-09-27 22:10:58 +0200
commit15bf2046cbe5392c9beb903b07c2f814a64be571 (patch)
treec635a57c0d8efdf2b3e14a0b04281bb15ed954bf /lib_edges.py
parent91b24a8628b72806e1a725649a38c11e0aee6a31 (diff)
downloadcluster-overview-15bf2046cbe5392c9beb903b07c2f814a64be571.tar.gz
cluster-overview-15bf2046cbe5392c9beb903b07c2f814a64be571.tar.xz
cluster-overview-15bf2046cbe5392c9beb903b07c2f814a64be571.zip
Move some cman-cluster-specific edges: lib{-edges,cman}
Also start using as of now enabled "common_{src,dst}_of" to allow for edges -> metadata association (used in "on_click") Signed-off-by: Jan Pokorný <jpokorny@redhat.com>
Diffstat (limited to 'lib_edges.py')
-rw-r--r--lib_edges.py20
1 files changed, 3 insertions, 17 deletions
diff --git a/lib_edges.py b/lib_edges.py
index 06402ef..e2f96f6 100644
--- a/lib_edges.py
+++ b/lib_edges.py
@@ -32,12 +32,11 @@ class HTTPS(LibEdge):
defaults = dict((
STYLE.bold,
))
+ summary = 'HTTP over SSL/TLS'
-class LuciHTTPS(HTTPS):
- defaults = dict((
- LABEL('port 8084'),
- ))
+class HTTPSDst(LibEdge):
+ common_dst_of = HTTPS
class ApplicationSpecificProtocol(LibEdge):
@@ -46,12 +45,6 @@ class ApplicationSpecificProtocol(LibEdge):
))
-class RICCIRPC(ApplicationSpecificProtocol):
- defaults = dict((
- LABEL('port 11111'),
- ))
-
-
class SNMP(ApplicationSpecificProtocol):
defaults = dict((
LABEL('port 161'),
@@ -123,13 +116,6 @@ class DelegateOddjobExec(Delegate, OddjobExec):
pass
-class DelegateRICCIRPC(Delegate, RICCIRPC):
- pass
-
-
-class DelegateLuciHTTPS(Delegate, LuciHTTPS):
- pass
-
class DelegateSNMP(Delegate, SNMP):
pass