File tree Expand file tree Collapse file tree 5 files changed +58
-9
lines changed
python/plugins/plugin_installer Expand file tree Collapse file tree 5 files changed +58
-9
lines changed Original file line number Diff line number Diff line change 1
-
1
+ """
2
+ Copyright (C) 2008 Matthew Perry
3
+ /***************************************************************************
4
+ * *
5
+ * This program is free software; you can redistribute it and/or modify *
6
+ * it under the terms of the GNU General Public License as published by *
7
+ * the Free Software Foundation; either version 2 of the License, or *
8
+ * (at your option) any later version. *
9
+ * *
10
+ ***************************************************************************/
11
+ """
2
12
def name ():
3
13
return "Plugin installer"
4
14
Original file line number Diff line number Diff line change
1
+ """
2
+ Copyright (C) 2008 Matthew Perry
3
+ /***************************************************************************
4
+ * *
5
+ * This program is free software; you can redistribute it and/or modify *
6
+ * it under the terms of the GNU General Public License as published by *
7
+ * the Free Software Foundation; either version 2 of the License, or *
8
+ * (at your option) any later version. *
9
+ * *
10
+ ***************************************************************************/
11
+ """
1
12
from PyQt4 .QtCore import *
2
13
from PyQt4 .QtGui import *
3
14
@@ -64,11 +75,12 @@ def getAvailablePlugins(self):
64
75
#self.gui.txtAvailable.setText(output)
65
76
self .treePlugins .clear ()
66
77
for p in pluginlist :
67
- a = QTreeWidgetItem (self .treePlugins )
68
- a .setText (0 ,p ["name" ])
69
- a .setText (1 ,p ["version" ])
70
- a .setText (2 ,p ["desc" ])
71
- a .setText (3 ,p ["author" ])
78
+ a = QTreeWidgetItem (self .treePlugins )
79
+ a .setText (0 ,p ["name" ])
80
+ a .setText (1 ,p ["version" ])
81
+ a .setText (2 ,p ["desc" ])
82
+ a .setText (3 ,p ["author" ])
83
+ a .setToolTip (2 , p ["desc" ])
72
84
73
85
QApplication .restoreOverrideCursor ()
74
86
Original file line number Diff line number Diff line change
1
+ """
2
+ Copyright (C) 2008 Matthew Perry
3
+ /***************************************************************************
4
+ * *
5
+ * This program is free software; you can redistribute it and/or modify *
6
+ * it under the terms of the GNU General Public License as published by *
7
+ * the Free Software Foundation; either version 2 of the License, or *
8
+ * (at your option) any later version. *
9
+ * *
10
+ ***************************************************************************/
11
+ """
1
12
from PyQt4 .QtCore import *
2
13
from PyQt4 .QtGui import *
3
14
from qgis .core import *
Original file line number Diff line number Diff line change 1
1
#!/usr/bin/env python
2
2
"""
3
3
qgis_plugins.py
4
-
5
4
author: Matthew Perry
6
- license: GPL
7
5
date: 2007-Oct-21
6
+ /***************************************************************************
7
+ * *
8
+ * This program is free software; you can redistribute it and/or modify *
9
+ * it under the terms of the GNU General Public License as published by *
10
+ * the Free Software Foundation; either version 2 of the License, or *
11
+ * (at your option) any later version. *
12
+ * *
13
+ ***************************************************************************/
8
14
"""
9
15
import urllib
10
16
import sys
Original file line number Diff line number Diff line change 1
-
1
+ """
2
+ Copyright (C) 2008 Matthew Perry
3
+ /***************************************************************************
4
+ * *
5
+ * This program is free software; you can redistribute it and/or modify *
6
+ * it under the terms of the GNU General Public License as published by *
7
+ * the Free Software Foundation; either version 2 of the License, or *
8
+ * (at your option) any later version. *
9
+ * *
10
+ ***************************************************************************/
11
+ """
2
12
from PyQt4 .QtCore import *
3
13
from PyQt4 .QtGui import *
4
14
You can’t perform that action at this time.
0 commit comments