Skip to content

Commit c3ec021

Browse files

File tree

5 files changed

+58
-9
lines changed

5 files changed

+58
-9
lines changed
 

‎python/plugins/plugin_installer/__init__.py

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,14 @@
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+
"""
212
def name():
313
return "Plugin installer"
414

‎python/plugins/plugin_installer/dialog.py

Lines changed: 17 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
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+
"""
112
from PyQt4.QtCore import *
213
from PyQt4.QtGui import *
314

@@ -64,11 +75,12 @@ def getAvailablePlugins(self):
6475
#self.gui.txtAvailable.setText(output)
6576
self.treePlugins.clear()
6677
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"])
7284

7385
QApplication.restoreOverrideCursor()
7486

‎python/plugins/plugin_installer/installer_plugin.py

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
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+
"""
112
from PyQt4.QtCore import *
213
from PyQt4.QtGui import *
314
from qgis.core import *

‎python/plugins/plugin_installer/qgis_plugins.py

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,16 @@
11
#!/usr/bin/env python
22
"""
33
qgis_plugins.py
4-
54
author: Matthew Perry
6-
license: GPL
75
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+
***************************************************************************/
814
"""
915
import urllib
1016
import sys

‎python/plugins/plugin_installer/repository_dialog.py

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,14 @@
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+
"""
212
from PyQt4.QtCore import *
313
from PyQt4.QtGui import *
414

0 commit comments

Comments
 (0)
Please sign in to comment.