* src/Spell.py: Make more robust to failure.
* src/Makefile.am: Ship new file. * NEWS: Update. svn: r5023
This commit is contained in:
parent
d575d56cba
commit
d2cf4f8668
@ -1,3 +1,8 @@
|
|||||||
|
2005-08-05 Alex Roitman <shura@gramps-project.org>
|
||||||
|
* src/Spell.py: Make more robust to failure.
|
||||||
|
* src/Makefile.am: Ship new file.
|
||||||
|
* NEWS: Update.
|
||||||
|
|
||||||
2005-08-05 Martin Hawlisch <Martin.Hawlisch@gmx.de>
|
2005-08-05 Martin Hawlisch <Martin.Hawlisch@gmx.de>
|
||||||
* src/plugins/Checkpoint.py (rcs): define variable comment before using it.
|
* src/plugins/Checkpoint.py (rcs): define variable comment before using it.
|
||||||
|
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
Version 2.0.6 -- the "Just like my dear Papa!" release
|
Version 2.0.6 -- the "Just like my dear Papa!" release
|
||||||
* New Narrative Web Page added to create a more complete web site.
|
* New Narrative Web Page added to create a more complete web site.
|
||||||
* Progress meters in plugins.
|
* Progress meters in plugins.
|
||||||
|
* Spell checking in Notes (requires gnome-python-extras).
|
||||||
* Numerous bug fixes.
|
* Numerous bug fixes.
|
||||||
|
|
||||||
Version 2.0.5 -- the "It's certainly uncontaminated by cheese" release
|
Version 2.0.5 -- the "It's certainly uncontaminated by cheese" release
|
||||||
|
@ -1,10 +1,12 @@
|
|||||||
# $Id$
|
# $Id$
|
||||||
|
|
||||||
# This is the src level Makefile for Gramps
|
# This is the src level Makefile for Gramps
|
||||||
SUBDIRS = docgen plugins dates data po
|
SUBDIRS = docgen plugins dates data po
|
||||||
|
|
||||||
# For intl. support, how do we compile?
|
# For intl. support, how do we compile?
|
||||||
MOSTLYCLEANFILES =
|
MOSTLYCLEANFILES =
|
||||||
CLEANFILES = const.pyc const.pyo
|
CLEANFILES = const.pyc const.pyo
|
||||||
|
|
||||||
# What are the PYTHON scripts for this package that need to be handled?
|
# What are the PYTHON scripts for this package that need to be handled?
|
||||||
#
|
#
|
||||||
# We only want optimized byte-compiled (.pyo) versions, no .pyc
|
# We only want optimized byte-compiled (.pyo) versions, no .pyc
|
||||||
@ -119,7 +121,8 @@ gdir_PYTHON = \
|
|||||||
RecentFiles.py\
|
RecentFiles.py\
|
||||||
ReportOptions.py\
|
ReportOptions.py\
|
||||||
ReadGrdb.py\
|
ReadGrdb.py\
|
||||||
WriteGrdb.py
|
WriteGrdb.py\
|
||||||
|
Spell.py
|
||||||
|
|
||||||
# Could use GNU make's ':=' syntax for nice wildcard use.
|
# Could use GNU make's ':=' syntax for nice wildcard use.
|
||||||
# If not using GNU make, then list all files individually
|
# If not using GNU make, then list all files individually
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# Gramps - a GTK+/GNOME based genealogy program
|
# Gramps - a GTK+/GNOME based genealogy program
|
||||||
#
|
#
|
||||||
# Copyright (C) 2000-2004 Donald N. Allingham
|
# Copyright (C) 2005 Donald N. Allingham
|
||||||
#
|
#
|
||||||
# This program is free software; you can redistribute it and/or modify
|
# 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
|
# it under the terms of the GNU General Public License as published by
|
||||||
@ -18,32 +18,41 @@
|
|||||||
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
#
|
#
|
||||||
|
|
||||||
"""
|
# $Id$
|
||||||
|
|
||||||
|
"""
|
||||||
Provide an interface to the gtkspell interface. This requires
|
Provide an interface to the gtkspell interface. This requires
|
||||||
python-gnome-extras package. If the gtkspell package is not
|
python-gnome-extras package. If the gtkspell package is not
|
||||||
present, we default to no spell checking.
|
present, we default to no spell checking.
|
||||||
|
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
success = False
|
||||||
try:
|
try:
|
||||||
|
import gtk
|
||||||
import gtkspell
|
import gtkspell
|
||||||
import locale
|
import locale
|
||||||
|
|
||||||
class Spell:
|
text_view = gtk.TextView()
|
||||||
|
spell = gtkspell.Spell(text_view)
|
||||||
|
lang = locale.getlocale()[0]
|
||||||
|
spell.set_language(lang)
|
||||||
|
success = True
|
||||||
|
|
||||||
|
except ImportError, msg:
|
||||||
|
print "Spell.py:", msg
|
||||||
|
except RuntimeError,msg:
|
||||||
|
print "Spell.py:", msg
|
||||||
|
except SystemError,msg:
|
||||||
|
print "Spell.py:", msg
|
||||||
|
|
||||||
|
if success:
|
||||||
|
class Spell:
|
||||||
def __init__(self,obj):
|
def __init__(self,obj):
|
||||||
self.spell = gtkspell.Spell(obj)
|
self.spell = gtkspell.Spell(obj)
|
||||||
try:
|
|
||||||
lang = locale.getlocale()[0]
|
lang = locale.getlocale()[0]
|
||||||
self.spell.set_language(lang)
|
self.spell.set_language(lang)
|
||||||
except RuntimeError,msg:
|
else:
|
||||||
print "Spellchecker:", msg
|
|
||||||
|
|
||||||
except ImportError:
|
|
||||||
|
|
||||||
class Spell:
|
class Spell:
|
||||||
|
|
||||||
def __init__(self,obj):
|
def __init__(self,obj):
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user