2005-12-21 02:18:18 +05:30
|
|
|
#
|
|
|
|
# Gramps - a GTK+/GNOME based genealogy program
|
|
|
|
#
|
2006-02-04 03:33:53 +05:30
|
|
|
# Copyright (C) 2000-2006 Donald N. Allingham
|
2005-12-21 02:18:18 +05:30
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program; if not, write to the Free Software
|
|
|
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
#
|
|
|
|
|
|
|
|
# $Id$
|
|
|
|
|
|
|
|
"""
|
2008-02-24 19:25:55 +05:30
|
|
|
UrlBase class for GRAMPS.
|
2005-12-21 02:18:18 +05:30
|
|
|
"""
|
|
|
|
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# GRAMPS modules
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
2008-02-24 19:25:55 +05:30
|
|
|
from gen.lib.url import Url
|
2005-12-21 02:18:18 +05:30
|
|
|
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# UrlBase classes
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
2009-05-21 22:49:50 +05:30
|
|
|
class UrlBase(object):
|
2005-12-21 02:18:18 +05:30
|
|
|
"""
|
|
|
|
Base class for url-aware objects.
|
|
|
|
"""
|
|
|
|
|
2007-01-08 07:19:33 +05:30
|
|
|
def __init__(self, source=None):
|
2005-12-21 02:18:18 +05:30
|
|
|
"""
|
2008-02-24 19:25:55 +05:30
|
|
|
Initialize an UrlBase.
|
|
|
|
|
|
|
|
If the source is not None, then object is initialized from values of
|
|
|
|
the source object.
|
2005-12-21 02:18:18 +05:30
|
|
|
|
2009-06-25 03:26:07 +05:30
|
|
|
:param source: Object used to initialize the new object
|
|
|
|
:type source: UrlBase
|
2005-12-21 02:18:18 +05:30
|
|
|
"""
|
2010-01-22 00:12:53 +05:30
|
|
|
self.urls = map(Url, source.urls) if source else []
|
2005-12-21 02:18:18 +05:30
|
|
|
|
2006-02-04 03:33:53 +05:30
|
|
|
def serialize(self):
|
2007-01-08 07:19:33 +05:30
|
|
|
"""
|
2008-02-24 19:25:55 +05:30
|
|
|
Convert the object to a serialized tuple of data
|
2007-01-08 07:19:33 +05:30
|
|
|
"""
|
2006-02-04 03:33:53 +05:30
|
|
|
return [url.serialize() for url in self.urls]
|
|
|
|
|
2007-01-08 07:19:33 +05:30
|
|
|
def unserialize(self, data):
|
|
|
|
"""
|
2008-02-24 19:25:55 +05:30
|
|
|
Convert a serialized tuple of data to an object.
|
2007-01-08 07:19:33 +05:30
|
|
|
"""
|
2010-02-02 19:26:15 +05:30
|
|
|
self.urls = [Url().unserialize(item) for item in data]
|
2006-02-04 03:33:53 +05:30
|
|
|
|
2005-12-21 02:18:18 +05:30
|
|
|
def get_url_list(self):
|
|
|
|
"""
|
2009-06-25 03:26:07 +05:30
|
|
|
Return the list of :class:`~gen.lib.url.Url` instances associated with the object.
|
2005-12-21 02:18:18 +05:30
|
|
|
|
2009-06-25 03:26:07 +05:30
|
|
|
:returns: List of :class:`~gen.lib.url.Url` instances
|
|
|
|
:rtype: list
|
2005-12-21 02:18:18 +05:30
|
|
|
"""
|
|
|
|
return self.urls
|
|
|
|
|
2007-01-08 07:19:33 +05:30
|
|
|
def set_url_list(self, url_list):
|
2005-12-21 02:18:18 +05:30
|
|
|
"""
|
2009-06-25 03:26:07 +05:30
|
|
|
Set the list of :class:`~gen.lib.url.Url` instances to passed the list.
|
2005-12-21 02:18:18 +05:30
|
|
|
|
2009-06-25 03:26:07 +05:30
|
|
|
:param url_list: List of :class:`~gen.lib.url.Url` instances
|
|
|
|
:type url_list: list
|
2005-12-21 02:18:18 +05:30
|
|
|
"""
|
|
|
|
self.urls = url_list
|
|
|
|
|
2007-01-08 07:19:33 +05:30
|
|
|
def add_url(self, url):
|
2005-12-21 02:18:18 +05:30
|
|
|
"""
|
2009-06-25 03:26:07 +05:30
|
|
|
Add a :class:`~gen.lib.url.Url` instance to the object's list of :class:`~gen.lib.url.Url` instances.
|
2005-12-21 02:18:18 +05:30
|
|
|
|
2009-06-25 03:26:07 +05:30
|
|
|
:param url: :class:`~gen.lib.url.Url` instance to be added to the Person's list of
|
2005-12-21 02:18:18 +05:30
|
|
|
related web sites.
|
2009-06-25 03:26:07 +05:30
|
|
|
:type url: :class:`~gen.lib.url.Url`
|
2005-12-21 02:18:18 +05:30
|
|
|
"""
|
|
|
|
self.urls.append(url)
|
|
|
|
|
2007-01-08 07:19:33 +05:30
|
|
|
def remove_url(self, url):
|
2005-12-21 02:18:18 +05:30
|
|
|
"""
|
2009-06-25 03:26:07 +05:30
|
|
|
Remove the specified :class:`~gen.lib.url.Url` instance from the url list.
|
2008-02-24 19:25:55 +05:30
|
|
|
|
|
|
|
If the instance does not exist in the list, the operation has no effect.
|
2005-12-21 02:18:18 +05:30
|
|
|
|
2009-06-25 03:26:07 +05:30
|
|
|
:param url: :class:`~gen.lib.url.Url` instance to remove from the list
|
|
|
|
:type url: :class:`~gen.lib.url.Url`
|
2005-12-21 02:18:18 +05:30
|
|
|
|
2009-06-25 03:26:07 +05:30
|
|
|
:returns: True if the url was removed, False if it was not in the list.
|
|
|
|
:rtype: bool
|
2005-12-21 02:18:18 +05:30
|
|
|
"""
|
|
|
|
if url in self.urls:
|
|
|
|
self.urls.remove(url)
|
|
|
|
return True
|
|
|
|
else:
|
|
|
|
return False
|