Finished the first implementation of this wizard.

Mon, 30 Dec 2013 11:10:01 +0100

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Mon, 30 Dec 2013 11:10:01 +0100
changeset 3
f01e48994421
parent 2
f33d9d82ae69
child 4
a2ed9724ea83

Finished the first implementation of this wizard.

PluginWizardDataUriEncoder.e4p file | annotate | diff | comparison | revisions
PluginWizardDataUriEncoder.py file | annotate | diff | comparison | revisions
WizardDataUriEncoder/DataUriEncoderWizardDialog.py file | annotate | diff | comparison | revisions
--- a/PluginWizardDataUriEncoder.e4p	Mon Dec 30 10:45:15 2013 +0100
+++ b/PluginWizardDataUriEncoder.e4p	Mon Dec 30 11:10:01 2013 +0100
@@ -21,12 +21,23 @@
   <Forms>
     <Form>WizardDataUriEncoder/DataUriEncoderWizardDialog.ui</Form>
   </Forms>
-  <Translations/>
+  <Translations>
+    <Translation>WizardDataUriEncoder/i18n/datauriencoder_en.ts</Translation>
+    <Translation>WizardDataUriEncoder/i18n/datauriencoder_de.ts</Translation>
+    <Translation>WizardDataUriEncoder/i18n/datauriencoder_es.ts</Translation>
+    <Translation>WizardDataUriEncoder/i18n/datauriencoder_en.qm</Translation>
+    <Translation>WizardDataUriEncoder/i18n/datauriencoder_de.qm</Translation>
+  </Translations>
   <Resources/>
   <Interfaces/>
   <Others>
     <Other>.hgignore</Other>
     <Other>PluginWizardDataUriEncoder.e4p</Other>
+    <Other>WizardDataUriEncoder/Documentation/LICENSE.GPL3</Other>
+    <Other>ChangeLog</Other>
+    <Other>WizardDataUriEncoder/Documentation/source</Other>
+    <Other>PKGLIST</Other>
+    <Other>PluginWizardDataUriEncoder.zip</Other>
   </Others>
   <MainScript>PluginWizardDataUriEncoder.py</MainScript>
   <Vcs>
@@ -148,6 +159,77 @@
     <FiletypeAssociation pattern="*.ui.h" type="FORMS"/>
     <FiletypeAssociation pattern="Ui_*.py" type="__IGNORE__"/>
   </FiletypeAssociations>
+  <Documentation>
+    <DocumentationParams>
+      <dict>
+        <key>
+          <string>ERIC4DOC</string>
+        </key>
+        <value>
+          <dict>
+            <key>
+              <string>cssFile</string>
+            </key>
+            <value>
+              <string>%PYTHON%/eric5/CSSs/default.css</string>
+            </value>
+            <key>
+              <string>ignoreDirectories</string>
+            </key>
+            <value>
+              <list>
+                <string>.eric5project</string>
+                <string>.hg</string>
+                <string>.ropeproject</string>
+                <string>_eric5project</string>
+                <string>_ropeproject</string>
+              </list>
+            </value>
+            <key>
+              <string>ignoreFilePatterns</string>
+            </key>
+            <value>
+              <list>
+                <string>Ui_*.py</string>
+              </list>
+            </value>
+            <key>
+              <string>noempty</string>
+            </key>
+            <value>
+              <bool>True</bool>
+            </value>
+            <key>
+              <string>outputDirectory</string>
+            </key>
+            <value>
+              <string>WizardDataUriEncoder/Documentation/source</string>
+            </value>
+            <key>
+              <string>qtHelpEnabled</string>
+            </key>
+            <value>
+              <bool>False</bool>
+            </value>
+            <key>
+              <string>sourceExtensions</string>
+            </key>
+            <value>
+              <list>
+                <string></string>
+              </list>
+            </value>
+            <key>
+              <string>useRecursion</string>
+            </key>
+            <value>
+              <bool>True</bool>
+            </value>
+          </dict>
+        </value>
+      </dict>
+    </DocumentationParams>
+  </Documentation>
   <Checkers>
     <CheckersParams>
       <dict>
--- a/PluginWizardDataUriEncoder.py	Mon Dec 30 10:45:15 2013 +0100
+++ b/PluginWizardDataUriEncoder.py	Mon Dec 30 11:10:01 2013 +0100
@@ -109,7 +109,8 @@
             self.trUtf8('Base&64 Data Uri Encoder Wizard...'),
             0, 0, self,
             'wizards_datauriencoder')
-        self.__action.setStatusTip(self.trUtf8('.desktop Wizard'))
+        self.__action.setStatusTip(self.trUtf8(
+            'Base64 Data Uri Encoder Wizard'))
         self.__action.setWhatsThis(self.trUtf8(
             """<b>Base64 Data Uri Encoder Wizard</b>"""
             """<p>This wizard opens a dialog for entering all the parameters"""
--- a/WizardDataUriEncoder/DataUriEncoderWizardDialog.py	Mon Dec 30 10:45:15 2013 +0100
+++ b/WizardDataUriEncoder/DataUriEncoderWizardDialog.py	Mon Dec 30 11:10:01 2013 +0100
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 
 """
-Module implementing DataUriEncoderWizardDialog.
+Module implementing the base64 data URI encoder wizard dialog.
 """
 
 import os
@@ -57,7 +57,7 @@
 
 class DataUriEncoderWizardDialog(QDialog, Ui_DataUriEncoderWizardDialog):
     """
-    Class documentation goes here.
+    Class implementing the base64 data URI encoder wizard dialog.
     """
     def __init__(self, parent=None):
         """
@@ -125,7 +125,7 @@
         if index in [1, 4]:
             self.encryptCheckBox.setChecked(False)
             self.dataCheckBox.setChecked(True)
-        elif index in [2, 3, 5, 6]:
+        elif index in [0, 2, 3, 5, 6]:
             self.encryptCheckBox.setChecked(False)
             self.dataCheckBox.setChecked(False)
     

eric ide

mercurial