Added SubmitPanel, HelpPanel for PlanetLab and VINI
[sfa-gui.git] / Info.py
diff --git a/Info.py b/Info.py
deleted file mode 100644 (file)
index 4fcf72a..0000000
--- a/Info.py
+++ /dev/null
@@ -1,20 +0,0 @@
-from Sink import Sink, SinkInfo
-from pyjamas.ui.HTML import HTML
-
-class Info(Sink):
-    def __init__(self):
-
-        Sink.__init__(self)
-
-        text="<div class='infoProse'>This is the SFA Federation GUI. "
-        text+="It allows users to manage their SFA identities and slices, "
-        text+="add resources from various testbeds to their slices, "
-        text+="and browse the SFA Registry.</p></div>"
-        self.initWidget(HTML(text, True))
-
-    def onShow(self):
-        pass
-
-
-def init():
-    return SinkInfo("Info", "Introduction to the SFA Federation GUI", Info)