Skip to content

Commit

Permalink
Added copyright and license info for plugin_installer files
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@8044 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
gsherman committed Jan 25, 2008
1 parent f477ed1 commit c3ec021
Show file tree
Hide file tree
Showing 5 changed files with 58 additions and 9 deletions.
12 changes: 11 additions & 1 deletion python/plugins/plugin_installer/__init__.py
@@ -1,4 +1,14 @@

"""
Copyright (C) 2008 Matthew Perry
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
"""
def name():
return "Plugin installer"

Expand Down
22 changes: 17 additions & 5 deletions python/plugins/plugin_installer/dialog.py
@@ -1,3 +1,14 @@
"""
Copyright (C) 2008 Matthew Perry
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
"""
from PyQt4.QtCore import *
from PyQt4.QtGui import *

Expand Down Expand Up @@ -64,11 +75,12 @@ def getAvailablePlugins(self):
#self.gui.txtAvailable.setText(output)
self.treePlugins.clear()
for p in pluginlist:
a = QTreeWidgetItem(self.treePlugins)
a.setText(0,p["name"])
a.setText(1,p["version"])
a.setText(2,p["desc"])
a.setText(3,p["author"])
a = QTreeWidgetItem(self.treePlugins)
a.setText(0,p["name"])
a.setText(1,p["version"])
a.setText(2,p["desc"])
a.setText(3,p["author"])
a.setToolTip(2, p["desc"])

QApplication.restoreOverrideCursor()

Expand Down
11 changes: 11 additions & 0 deletions python/plugins/plugin_installer/installer_plugin.py
@@ -1,3 +1,14 @@
"""
Copyright (C) 2008 Matthew Perry
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
"""
from PyQt4.QtCore import *
from PyQt4.QtGui import *
from qgis.core import *
Expand Down
10 changes: 8 additions & 2 deletions python/plugins/plugin_installer/qgis_plugins.py
@@ -1,10 +1,16 @@
#!/usr/bin/env python
"""
qgis_plugins.py
author: Matthew Perry
license: GPL
date: 2007-Oct-21
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
"""
import urllib
import sys
Expand Down
12 changes: 11 additions & 1 deletion python/plugins/plugin_installer/repository_dialog.py
@@ -1,4 +1,14 @@

"""
Copyright (C) 2008 Matthew Perry
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
"""
from PyQt4.QtCore import *
from PyQt4.QtGui import *

Expand Down

0 comments on commit c3ec021

Please sign in to comment.