2008-01-30 Raphael Ackermann <raphael.ackermann@gmail.com>

* src/FilterEditor/_EditFilter.py: self.space --> self.namespace
	* src/FilterEditor/_FilterEditor.py: self.space --> self.namespace
	* src/FilterEditor/_EditRule.py: self.space --> self.namespace
	* src/FilterEditor/_ShowResults.py: self.space --> self.namespace
	* src/plugins/ExportVCalendar.py: pylint fixes
	* src/PluginUtils/_Tool.py: pylint fixes
	* src/Filters/_FilterParser.py: cleanup
	* src/Filters/_GenericFilter.py: doc fix
	* src/Filters/Rules/Person/_Everyone.py
	* src/ManagedWindow.py: doc fix

svn: r9963
This commit is contained in:
Raphael Ackermann
2008-01-30 09:03:20 +00:00
parent 6dbc6c3348
commit fc1554acaa
11 changed files with 159 additions and 152 deletions

View File

@@ -18,7 +18,7 @@
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
# $Id$
# $Id:_Everyone.py 9912 2008-01-22 09:17:46Z acraphae $
#-------------------------------------------------------------------------
#
@@ -40,7 +40,7 @@ from Filters.Rules._Rule import Rule
#
#-------------------------------------------------------------------------
class Everyone(Rule):
"""Matches Everyone"""
"""Match Everyone."""
name = _('Everyone')
category = _('General filters')

View File

@@ -18,7 +18,7 @@
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
# $Id$
# $Id:_FilterParser.py 9912 2008-01-22 09:17:46Z acraphae $
#-------------------------------------------------------------------------
#
@@ -50,7 +50,7 @@ class FilterParser(handler.ContentHandler):
self.r = None
self.a = []
self.cname = None
self.namespace = "Person"
self.namespace = 'Person'
def setDocumentLocator(self, locator):
self.locator = locator

View File

@@ -18,7 +18,7 @@
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
# $Id$
# $Id:_GenericFilter.py 9912 2008-01-22 09:17:46Z acraphae $
"""
Package providing filtering framework for GRAMPS.
@@ -31,7 +31,7 @@ import gen.lib
#
#-------------------------------------------------------------------------
class GenericFilter:
"""Filter class that consists of several rules"""
"""Filter class that consists of several rules."""
logical_functions = ['or', 'and', 'xor', 'one']