# -*- coding: utf-8 -*- # Form implementation generated from reading ui file 'deploywizard.ui' # # Created by: PyQt4 UI code generator 4.7.3 # # WARNING! All changes made in this file will be lost! from PyQt4 import QtCore, QtGui class Ui_Wizard(object): def setupUi(self, Wizard): Wizard.setObjectName("Wizard") Wizard.resize(501, 339) self.wizardPage1 = QtGui.QWizardPage() self.wizardPage1.setObjectName("wizardPage1") self.verticalLayout = QtGui.QVBoxLayout(self.wizardPage1) self.verticalLayout.setObjectName("verticalLayout") self.label = QtGui.QLabel(self.wizardPage1) self.label.setWordWrap(True) self.label.setObjectName("label") self.verticalLayout.addWidget(self.label) Wizard.addPage(self.wizardPage1) self.wizardPage = QtGui.QWizardPage() self.wizardPage.setObjectName("wizardPage") self.gridLayout_3 = QtGui.QGridLayout(self.wizardPage) self.gridLayout_3.setObjectName("gridLayout_3") self.label_2 = QtGui.QLabel(self.wizardPage) self.label_2.setMinimumSize(QtCore.QSize(485, 0)) self.label_2.setWordWrap(True) self.label_2.setObjectName("label_2") self.gridLayout_3.addWidget(self.label_2, 1, 0, 1, 1) self.groupBox = QtGui.QGroupBox(self.wizardPage) self.groupBox.setObjectName("groupBox") self.gridLayout_2 = QtGui.QGridLayout(self.groupBox) self.gridLayout_2.setObjectName("gridLayout_2") self.textBrowser = QtGui.QTextBrowser(self.groupBox) self.textBrowser.setObjectName("textBrowser") self.gridLayout_2.addWidget(self.textBrowser, 0, 2, 1, 1) self.gridLayout_3.addWidget(self.groupBox, 11, 0, 1, 2) self.pushButton = QtGui.QPushButton(self.wizardPage) self.pushButton.setObjectName("pushButton") self.gridLayout_3.addWidget(self.pushButton, 3, 0, 1, 1) self.pushButton_3 = QtGui.QPushButton(self.wizardPage) self.pushButton_3.setObjectName("pushButton_3") self.gridLayout_3.addWidget(self.pushButton_3, 2, 0, 1, 1) self.pushButton_4 = QtGui.QPushButton(self.wizardPage) self.pushButton_4.setObjectName("pushButton_4") self.gridLayout_3.addWidget(self.pushButton_4, 4, 0, 1, 1) Wizard.addPage(self.wizardPage) self.wizardPage2 = QtGui.QWizardPage() self.wizardPage2.setObjectName("wizardPage2") self.gridLayout = QtGui.QGridLayout(self.wizardPage2) self.gridLayout.setObjectName("gridLayout") self.textBrowser_2 = QtGui.QTextBrowser(self.wizardPage2) self.textBrowser_2.setObjectName("textBrowser_2") self.gridLayout.addWidget(self.textBrowser_2, 4, 1, 1, 1) self.pushButton_2 = QtGui.QPushButton(self.wizardPage2) self.pushButton_2.setObjectName("pushButton_2") self.gridLayout.addWidget(self.pushButton_2, 5, 1, 1, 1) self.label_3 = QtGui.QLabel(self.wizardPage2) self.label_3.setObjectName("label_3") self.gridLayout.addWidget(self.label_3, 1, 0, 1, 2) self.groupBox_3 = QtGui.QGroupBox(self.wizardPage2) self.groupBox_3.setObjectName("groupBox_3") self.verticalLayout_5 = QtGui.QVBoxLayout(self.groupBox_3) self.verticalLayout_5.setObjectName("verticalLayout_5") self.listWidget = QtGui.QListWidget(self.groupBox_3) self.listWidget.setViewMode(QtGui.QListView.ListMode) self.listWidget.setObjectName("listWidget") self.verticalLayout_5.addWidget(self.listWidget) self.gridLayout.addWidget(self.groupBox_3, 4, 0, 2, 1) Wizard.addPage(self.wizardPage2) self.retranslateUi(Wizard) QtCore.QMetaObject.connectSlotsByName(Wizard) def retranslateUi(self, Wizard): Wizard.setWindowTitle(QtGui.QApplication.translate("Wizard", "Wizard", None, QtGui.QApplication.UnicodeUTF8)) self.wizardPage1.setTitle(QtGui.QApplication.translate("Wizard", "Deploy configuration", None, QtGui.QApplication.UnicodeUTF8)) self.label.setText(QtGui.QApplication.translate("Wizard", "This wizard will help you to deploy your configuration. This includes the transfer to the target host, and the activation of the new configuration.", None, QtGui.QApplication.UnicodeUTF8)) self.wizardPage.setTitle(QtGui.QApplication.translate("Wizard", "fetch running config", None, QtGui.QApplication.UnicodeUTF8)) self.label_2.setText(QtGui.QApplication.translate("Wizard", "in this step, the running configuration is downloaded from the target host for backup and comparison", None, QtGui.QApplication.UnicodeUTF8)) self.groupBox.setTitle(QtGui.QApplication.translate("Wizard", "log", None, QtGui.QApplication.UnicodeUTF8)) self.pushButton.setText(QtGui.QApplication.translate("Wizard", "view as HTML diff", None, QtGui.QApplication.UnicodeUTF8)) self.pushButton_3.setText(QtGui.QApplication.translate("Wizard", "fetch config", None, QtGui.QApplication.UnicodeUTF8)) self.pushButton_4.setText(QtGui.QApplication.translate("Wizard", "view as unified diff", None, QtGui.QApplication.UnicodeUTF8)) self.wizardPage2.setTitle(QtGui.QApplication.translate("Wizard", "execute deployment", None, QtGui.QApplication.UnicodeUTF8)) self.pushButton_2.setText(QtGui.QApplication.translate("Wizard", "deploy now!", None, QtGui.QApplication.UnicodeUTF8)) self.label_3.setText(QtGui.QApplication.translate("Wizard", "now the new configuration can be deployed", None, QtGui.QApplication.UnicodeUTF8)) self.groupBox_3.setTitle(QtGui.QApplication.translate("Wizard", "Tasks", None, QtGui.QApplication.UnicodeUTF8))