Plugin_Project_Django.ProjectDjango.DjangoDumpdataDataDialog

Module implementing a dialog to enter the data for the dumpdata command.

Global Attributes

None

Classes

DjangoDumpdataDataDialog Class implementing a dialog to enter the data for the dumpdata command.

Functions

None


DjangoDumpdataDataDialog

Class implementing a dialog to enter the data for the dumpdata command.

Derived from

QDialog, Ui_DjangoDumpdataDataDialog

Class Attributes

None

Methods

DjangoDumpdataDataDialog Constructor
getData Public method to get the data entered into the dialog.

DjangoDumpdataDataDialog (Constructor)

DjangoDumpdataDataDialog(project, parent = None)

Constructor

project
reference to the Django project object
parent
parent widget (QWidget)

DjangoDumpdataDataDialog.getData

getData()

Public method to get the data entered into the dialog.

Returns:
tuple of two string lists (QStringList) and two strings giving the list of applications to work on, the list of applications to exclude, the dump format and the dump file name
Up