Move revision to wizard pages; remove version file from repository.
authorbatt <batt@38d2e660-2303-0410-9eaa-f027e97ec537>
Wed, 22 Apr 2009 14:21:05 +0000 (14:21 +0000)
committerbatt <batt@38d2e660-2303-0410-9eaa-f027e97ec537>
Wed, 22 Apr 2009 14:21:05 +0000 (14:21 +0000)
git-svn-id: https://src.develer.com/svnoss/bertos/trunk@2635 38d2e660-2303-0410-9eaa-f027e97ec537

wizard/BStartPage.py
wizard/BWizard.py
wizard/version.py [deleted file]

index 8a2a15dc2024a331479ce21a8ba0a025b4a77edb..f2bb2f8d858370a334b46baebc3f1dc614f5a848 100644 (file)
@@ -14,7 +14,6 @@ from PyQt4.QtGui import *
 import PyQt4.uic as uic
 
 from const import *
-from version import wizard_version
 
 class BStartPage(QDialog):
 
@@ -22,7 +21,7 @@ class BStartPage(QDialog):
         QDialog.__init__(self)
         self.setupUi()
         self.connectSignals()
-        self.setWindowTitle(self.tr("Create or edit a BeRTOS project - rev.%1").arg(wizard_version))
+        self.setWindowTitle(self.tr("Create or edit a BeRTOS project"))
         self.initializeButtons()
 
     def setupUi(self):
index a4436623bc965e803c431c31ee8aebf133afec59..1f794fd3b388b09a73fc56f0a544a22b99d6ad85 100644 (file)
@@ -23,19 +23,24 @@ import BOutputPage
 import BCreationPage
 import BFinalPage
 
+try:
+    from version import wizard_version
+except ImportError:
+    wizard_version = "sandbox"
+
 class BWizard(QWizard):
     """
     Main class of the wizard. It adds the pages automatically.
     """
-    
+
     def __init__(self, page_list):
         QWizard.__init__(self)
-        self.setWindowTitle(self.tr("Create a BeRTOS project"))
+        self.setWindowTitle(self.tr("Create a BeRTOS project - rev.%1").arg(wizard_version))
         self.setWindowIcon(QIcon(":/images/appicon.png"))
         self.setOption(QWizard.DisabledBackButtonOnLastPage, True)
         self.addPages(page_list)
         self.connectSignals()
-    
+
     def addPages(self, page_list):
         """
         Adds the pages in the wizard.
@@ -48,7 +53,7 @@ class BWizard(QWizard):
         Connects the signals with the related slots.
         """
         self.connect(self, SIGNAL("currentIdChanged(int)"), self.pageChanged)
-    
+
     def pageChanged(self, pageId):
         """
         Slot called when the user change the current page. It calls the reloadData
@@ -57,7 +62,7 @@ class BWizard(QWizard):
         page = self.page(pageId)
         if page:
             page.reloadData()
-    
+
     def project(self):
         """
         Returns the BProject associated with the wizard.
diff --git a/wizard/version.py b/wizard/version.py
deleted file mode 100644 (file)
index c41f6eb..0000000
+++ /dev/null
@@ -1 +0,0 @@
-wizard_version = "0000"