- Debian package can now be installed with pyside and not pyqt

- Make dist makes a file for the debian format
- Make dist removes .svn from relational_pyside
- setup.py installs relational_pyside module



git-svn-id: http://galileo.dmi.unict.it/svn/relational/trunk@326 014f5005-505e-4b48-8d0a-63407b615a7c
This commit is contained in:
LtWorf
2011-10-13 20:15:38 +00:00
parent 2f8e604d0d
commit 9d12667b11
11 changed files with 30 additions and 18 deletions

View File

@@ -125,8 +125,11 @@ class creatorForm(QtGui.QDialog):
pass
def editRelation(rel=None):
def edit_relation(rel=None):
'''Opens the editor for the given relation and returns a _new_ relation
containing the new relation.
If the user cancels, it returns None'''
ui = rel_edit.Ui_Dialog()
Form = creatorForm(rel)
@@ -141,4 +144,4 @@ if __name__ == '__main__':
import sys
app = QtGui.QApplication(sys.argv)
r=relation.relation("/home/salvo/dev/relational/trunk/samples/people.csv")
print editRelation(r)
print edit_relation(r)