Adding 'Edit Image Exif Metadata' into trunk

svn: r17261
This commit is contained in:
Rob G. Healey 2011-04-25 22:49:41 +00:00
parent 9db980b00e
commit 201c78e6c2
4 changed files with 1462 additions and 0 deletions

View File

@ -265,6 +265,7 @@ src/plugins/gramplet/bottombar.gpr.py
src/plugins/gramplet/CalendarGramplet.py
src/plugins/gramplet/Children.py
src/plugins/gramplet/DescendGramplet.py
src/plugins/gramplet/EditExifMetadata.py
src/plugins/gramplet/Events.py
src/plugins/gramplet/FanChartGramplet.py
src/plugins/gramplet/FaqGramplet.py

View File

@ -0,0 +1,45 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Gramps - a GTK+/GNOME based genealogy program
#
# Copyright (C) 2009-2011 Rob G. Healey <robhealey1@gmail.com>
#
# 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$
#
#------------------------------------------------------------------------
# Edit Exif Metadata class
#------------------------------------------------------------------------
register(GRAMPLET,
id = "Edit Image Exif Metadata",
name = _("Edit Image Exif Metadata"),
description = _("Gramplet to view, edit, and save image Exif metadata"),
height = 550,
expand = False,
gramplet = 'EditExifMetadata',
gramplet_title = _("Edit Exif Metadata"),
detached_width = 510,
detached_height = 550,
version = '1.5.0',
gramps_target_version = '3.4',
status = STABLE,
fname = "EditExifMetadata.py",
help_url = "Edit Exif Metadata",
authors = ['Rob G. Healey'],
authors_email = ['robhealey1@gmail.com'],
navtypes = ["Media"],
)

File diff suppressed because it is too large Load Diff

View File

@ -15,6 +15,8 @@ pkgdata_PYTHON = \
CalendarGramplet.py \
Children.py \
DescendGramplet.py \
EditExifMetadata.py \
EditExifMetadata.gpr.py \
Events.py \
FanChartGramplet.py \
FaqGramplet.py \