--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/VCS/RepositoryInfoDialog.py Mon Dec 28 16:03:33 2009 +0000 @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- + +# Copyright (c) 2004 - 2009 Detlev Offenbach <detlev@die-offenbachs.de> +# + +""" +Module implemting a dialog to show repository information. +""" + +from PyQt4.QtGui import QDialog + +from Ui_RepositoryInfoDialog import Ui_VcsRepositoryInfoDialog + + +class VcsRepositoryInfoDialog(QDialog, Ui_VcsRepositoryInfoDialog): + """ + Class implemting a dialog to show repository information. + """ + def __init__(self, parent, info): + QDialog.__init__(self, parent) + self.setupUi(self) + self.infoBrowser.setHtml(info)