<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://ftp.gramps-project.org/wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=JFC</id>
	<title>Gramps - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://ftp.gramps-project.org/wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=JFC"/>
	<link rel="alternate" type="text/html" href="https://ftp.gramps-project.org/wiki/index.php/Special:Contributions/JFC"/>
	<updated>2026-06-07T03:42:18Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.31.3</generator>
	<entry>
		<id>https://ftp.gramps-project.org/wiki/index.php?title=RelatedPersons&amp;diff=15380</id>
		<title>RelatedPersons</title>
		<link rel="alternate" type="text/html" href="https://ftp.gramps-project.org/wiki/index.php?title=RelatedPersons&amp;diff=15380"/>
		<updated>2009-04-15T14:00:23Z</updated>

		<summary type="html">&lt;p&gt;JFC: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Plugins]]&lt;br /&gt;
[[Category:Developers/General]]&lt;br /&gt;
&lt;br /&gt;
== MAIN ==&lt;br /&gt;
&lt;br /&gt;
 The Data of the different family trees can be manipuled by “FamilyGroups” which distinguish the '''unrelated groups'''.&lt;br /&gt;
  &lt;br /&gt;
 &amp;quot;'''_RelatedPersons'''&amp;quot; is the new General filter  for &amp;quot; Matches people with related home-person &amp;quot;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 On root,&lt;br /&gt;
  .&lt;br /&gt;
 Copy &amp;quot;_RelatedPerson&amp;quot; in gramps/Filters/rules/Person&lt;br /&gt;
 .&lt;br /&gt;
 AND&lt;br /&gt;
 .&lt;br /&gt;
 Modify the &amp;quot;__init__.py&amp;quot; in gramps/Filters/rules/Person&lt;br /&gt;
 .&lt;br /&gt;
  add two lines&lt;br /&gt;
 ..... from _RelatedPersons import RelatedPersons (first party)&lt;br /&gt;
 ..... RelatedPersons,                            (second party)&lt;br /&gt;
 .&lt;br /&gt;
 and test the '''unrelated groups''' for filtering  or exporting&lt;br /&gt;
    ( Matches people with related home-person )&lt;br /&gt;
&lt;br /&gt;
== VERSIONS==&lt;br /&gt;
&lt;br /&gt;
1.0 The first&lt;br /&gt;
&lt;br /&gt;
1.1 Without numeric module, not available for Windows.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Possibles patchs ! ==&lt;br /&gt;
&lt;br /&gt;
=== To allow person selection on filter ===&lt;br /&gt;
&lt;br /&gt;
 --- Filters/Rules/Person/_RelatedPersons.py 2009-03-29 22:42:52.000000000 +0200&lt;br /&gt;
 +++ Filters/Rules/Person/_RelatedPersons.py 2009-03-31 14:12:15.000000000 +0200&lt;br /&gt;
 @@ -38,8 +38,9 @@&lt;br /&gt;
  class RelatedPersons(Rule):&lt;br /&gt;
      &amp;quot;&amp;quot;&amp;quot;People with with related active person&amp;quot;&amp;quot;&amp;quot;&lt;br /&gt;
 -    name        = _('People with related home-person')&lt;br /&gt;
 -    description = _(&amp;quot;Matches people with related home-person&amp;quot;)&lt;br /&gt;
 +    labels      = [ _('ID:') ]&lt;br /&gt;
 +    name        = _('People related with &amp;lt;person&amp;gt;')&lt;br /&gt;
 +    description = _(&amp;quot;Matches people related with a person&amp;quot;)&lt;br /&gt;
      category    = _('General filters')&lt;br /&gt;
 &lt;br /&gt;
      def prepare (self, database):&lt;br /&gt;
&lt;br /&gt;
+ need to modify current code =&amp;gt; ''Home person (ID)'' will be ''Selected person (ID)''&lt;br /&gt;
&lt;br /&gt;
=== To set the rule as a generic filter rule for export (GRAMPS XML, GEDCOM) ===&lt;br /&gt;
&lt;br /&gt;
 --- ExportOptions.py 2009-02-16 18:01:08.000000000 +0100&lt;br /&gt;
 +++ ExportOptions.py 2009-03-31 14:12:46.000000000 +0200&lt;br /&gt;
  @@ -160,8 +160,12 @@&lt;br /&gt;
          com = GenericFilter()&lt;br /&gt;
          com.set_name(_(&amp;quot;People with common ancestor with %s&amp;quot;) % name)&lt;br /&gt;
          com.add_rule(Rules.Person.HasCommonAncestorWith([gramps_id]))&lt;br /&gt;
 +    &lt;br /&gt;
 +        rel = GenericFilter()&lt;br /&gt;
 +        rel.set_name(_(&amp;quot;People related with %s&amp;quot;) % name)&lt;br /&gt;
 +        rel.add_rule(Rules.Person.RelatedPersons([gramps_id]))&lt;br /&gt;
 &lt;br /&gt;
 -        return [des, df, ans, com]&lt;br /&gt;
 +        return [des, df, ans, com, rel]&lt;br /&gt;
 &lt;br /&gt;
      def parse_options(self):&lt;br /&gt;
&lt;br /&gt;
=== To set the rule as a generic filter rule for reports and not primary formats on export (GeneWeb, csv) ===&lt;br /&gt;
&lt;br /&gt;
 --- ReportBase/_ReportUtils.py 2009-02-16 17:59:26.000000000 +0100&lt;br /&gt;
 +++ ReportBase/_ReportUtils.py 2009-03-31 14:21:08.000000000 +0200&lt;br /&gt;
 @@ -3180,11 +3180,15 @@&lt;br /&gt;
      com = GenericFilter()&lt;br /&gt;
      com.set_name(_(&amp;quot;People with common ancestor with %s&amp;quot;) % name)&lt;br /&gt;
      com.add_rule(Rules.Person.HasCommonAncestorWith([gramps_id]))&lt;br /&gt;
 +    &lt;br /&gt;
 +    rel = GenericFilter()&lt;br /&gt;
 +    rel.set_name(_(&amp;quot;People related with %s&amp;quot;) % name)&lt;br /&gt;
 +    rel.add_rule(Rules.Person.RelatedPersons([gramps_id]))&lt;br /&gt;
 &lt;br /&gt;
      if include_single:&lt;br /&gt;
 -        the_filters = [filt_id, all, des, df, ans, com]&lt;br /&gt;
 +        the_filters = [filt_id, all, des, df, ans, com, rel]&lt;br /&gt;
      else:&lt;br /&gt;
 -        the_filters = [all, des, df, ans, com]&lt;br /&gt;
 +        the_filters = [all, des, df, ans, com, rel]&lt;br /&gt;
      the_filters.extend(CustomFilters.get_filters('Person'))&lt;br /&gt;
      return the_filters&lt;/div&gt;</summary>
		<author><name>JFC</name></author>
		
	</entry>
	<entry>
		<id>https://ftp.gramps-project.org/wiki/index.php?title=Plugins&amp;diff=15379</id>
		<title>Plugins</title>
		<link rel="alternate" type="text/html" href="https://ftp.gramps-project.org/wiki/index.php?title=Plugins&amp;diff=15379"/>
		<updated>2009-04-15T13:50:04Z</updated>

		<summary type="html">&lt;p&gt;JFC: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;5&amp;quot; cellspacing=&amp;quot;0&amp;quot; style=&amp;quot;border-collapse: collapse;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Plugin / Documentation&lt;br /&gt;
! Type&lt;br /&gt;
! Version&lt;br /&gt;
! Description&lt;br /&gt;
! Written for GRAMPS&lt;br /&gt;
! Use&lt;br /&gt;
! Rating (out of 4)&lt;br /&gt;
! Contact&lt;br /&gt;
! Download&lt;br /&gt;
|-&lt;br /&gt;
| [[GeoView]]&lt;br /&gt;
| Experimental View&lt;br /&gt;
| NA&lt;br /&gt;
| An extra view in GRAMPS which shows places, events, info of active person, ... embedded in GRAMPS on a map using different backends (OpenStreetMaps, Google Maps, ...)&lt;br /&gt;
| NA&lt;br /&gt;
| Testing&lt;br /&gt;
| NA&lt;br /&gt;
| [http://www.gramps-project.org/bugs/my_view_page.php Gramps Bugtracker]&lt;br /&gt;
| [[GeoView#Why_GeoView_.3F|GeoView]]&lt;br /&gt;
|- &lt;br /&gt;
| [[RelatedPersons]]&lt;br /&gt;
| Filter for Rules/persons&lt;br /&gt;
| 1.1.0&lt;br /&gt;
| People with related home-person (v1.1 : Without &amp;quot;Numeric&amp;quot;, not a standard module)&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| All&lt;br /&gt;
| ?&lt;br /&gt;
| [http://www.jfchasse.fr/contact.html Jean-Francois Chassé]&lt;br /&gt;
| [http://www.jfchasse.fr/_RelatedPersons.py.zip _RelatedPersons.py]&lt;br /&gt;
|- &lt;br /&gt;
| [[Gramplets#GUI_Interface|Cairo Clock Gramplet]]&lt;br /&gt;
| Gramplet&lt;br /&gt;
| 1.0.0&lt;br /&gt;
| Example of how to use the Cairo drawing canvas in a gramplet&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| Example&lt;br /&gt;
| 4 Stars&lt;br /&gt;
| [mailto:doug.blank@gmail.com]&lt;br /&gt;
| [http://www.gramps-project.org/wiki/images/f/f4/ClockGramplet.zip ClockGramplet.zip]&lt;br /&gt;
|-&lt;br /&gt;
| [[DataEntryGramplet|Data Entry Gramplet]]&lt;br /&gt;
| Gramplet&lt;br /&gt;
| 1.0.0&lt;br /&gt;
| Quick Data Entry for People data&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| Expert user&lt;br /&gt;
| 4 Stars&lt;br /&gt;
| [http://www.gramps-project.org/bugs/my_view_page.php Gramps Bugtracker]&lt;br /&gt;
| [http://gramps.svn.sourceforge.net/viewvc/gramps/branches/gramps31/src/plugins/gramplet/DataEntryGramplet.py DataEntryGramplet.py]&lt;br /&gt;
|-&lt;br /&gt;
| [[DeepConnectionsGramplet|Deep Connections Gramplet]]&lt;br /&gt;
| Gramplet&lt;br /&gt;
| 1.0.0&lt;br /&gt;
| Finds deep relationships between home and active people&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| All&lt;br /&gt;
| 3 Stars&lt;br /&gt;
| [http://www.gramps-project.org/bugs/my_view_page.php Gramps Bugtracker]&lt;br /&gt;
| [http://gramps.svn.sourceforge.net/viewvc/gramps/trunk/src/plugins/gramplet/DeepConnections.py DeepConnectionsGramplet.py]&lt;br /&gt;
|-&lt;br /&gt;
| [[Descendant Count Gramplet]]&lt;br /&gt;
| Gramplet&lt;br /&gt;
| 1.0.0&lt;br /&gt;
| Gives a count of descendants for each person&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| All&lt;br /&gt;
| 4 Stars&lt;br /&gt;
| [mailto:doug.blank@gmail.com]&lt;br /&gt;
| [[Media:DescendantCountGramplet.zip|DescendantCountGramplet.zip]]&lt;br /&gt;
|-&lt;br /&gt;
| [[FaqGramplet|FAQ Gramplet]]&lt;br /&gt;
| Gramplet&lt;br /&gt;
| 1.0.0&lt;br /&gt;
| GRAMPS Frequently Asked Questions&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| Beginner user&lt;br /&gt;
| 0 Stars&lt;br /&gt;
| [http://www.gramps-project.org/bugs/my_view_page.php Gramps Bugtracker]&lt;br /&gt;
| [http://gramps.svn.sourceforge.net/viewvc/gramps/branches/gramps31/src/plugins/gramplet/FaqGramplet.py FaqGramplet.py]&lt;br /&gt;
|-&lt;br /&gt;
| [[HeadlineNewsGramplet|Headline News Gramplet]]&lt;br /&gt;
| Gramplet&lt;br /&gt;
| 1.0.1&lt;br /&gt;
| Shows GRAMPS breaking news, once per hour&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| All&lt;br /&gt;
| 4 Stars&lt;br /&gt;
| [http://www.gramps-project.org/bugs/my_view_page.php Gramps Bugtracker]&lt;br /&gt;
| [http://gramps.svn.sourceforge.net/viewvc/gramps/branches/gramps31/src/plugins/gramplet/HeadlineNewsGramplet.py HeadlineNewsGramplet.py]&lt;br /&gt;
|-&lt;br /&gt;
| [[NoteGramplet|Note Gramplet]]&lt;br /&gt;
| Gramplet&lt;br /&gt;
| 1.0.0&lt;br /&gt;
| Quick Data Entry for Notes&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| Expert user&lt;br /&gt;
| 4 Stars&lt;br /&gt;
| [http://www.gramps-project.org/bugs/my_view_page.php Gramps Bugtracker]&lt;br /&gt;
| [http://gramps.svn.sourceforge.net/viewvc/gramps/branches/gramps31/src/plugins/gramplet/NoteGramplet.py NoteGramplet.py]&lt;br /&gt;
|-&lt;br /&gt;
| [[PluginManagerGramplet|Plugin Manager Gramplet]]&lt;br /&gt;
| Gramplet&lt;br /&gt;
| 1.0.0&lt;br /&gt;
| Lists plugins available for GRAMPS&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| All&lt;br /&gt;
| 2 Stars&lt;br /&gt;
| [http://www.gramps-project.org/bugs/my_view_page.php Gramps Bugtracker]&lt;br /&gt;
| [http://gramps.svn.sourceforge.net/viewvc/gramps/branches/gramps31/src/plugins/gramplet/PluginManagerGramplet.py PluginManagerGramplet.py]&lt;br /&gt;
|-&lt;br /&gt;
| [[PythonGramplet|Python Gramplet]]&lt;br /&gt;
| Gramplet&lt;br /&gt;
| 1.0.0&lt;br /&gt;
| Interactive Python Shell&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| Developer&lt;br /&gt;
| 4 Stars&lt;br /&gt;
| [http://www.gramps-project.org/bugs/my_view_page.php Gramps Bugtracker]&lt;br /&gt;
| [http://gramps.svn.sourceforge.net/viewvc/gramps/branches/gramps31/src/plugins/gramplet/PythonGramplet.py PythonGramplet.py]&lt;br /&gt;
|-&lt;br /&gt;
| [[MapSevices|GoogleEarth, Show places with Google Earth]]&lt;br /&gt;
| Map sevice&lt;br /&gt;
| 1.0.1&lt;br /&gt;
| Shows one or more places by creating a kml/kmz file for use by Google Earth&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| All&lt;br /&gt;
| 3 Stars&lt;br /&gt;
| Peter G. Landgren&lt;br /&gt;
| [http://www.gramps-project.org/wiki/images/archive/d/d5/20090413163547%21GoogleEarthWriteKML.zip GoogleEarthWriteKML.py]&lt;br /&gt;
|- &lt;br /&gt;
| [[GraphicalReports|Ancestoral, Personal Descendant, and Familial Descendant Reports]]&lt;br /&gt;
| Report&lt;br /&gt;
| 0.4.5 &amp;lt;BR /&amp;gt; very stable but recoding&lt;br /&gt;
| Updated versions of the standard Graphical Ancestor and Descendant reports&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| All&lt;br /&gt;
| ?&lt;br /&gt;
| Craig J. Anderson&lt;br /&gt;
| [http://ander882.110mb.com/files/Graphical.zip Graphical.zip]&lt;br /&gt;
|- &lt;br /&gt;
| [[FamilyGroups|Family Groups and/or attributes]]&lt;br /&gt;
| Report&lt;br /&gt;
| 1.1.0&lt;br /&gt;
| Lists FamilyGroups and display Identification Number attributes  (v1.1 : Without &amp;quot;Numeric&amp;quot;, not a standard module)&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| All&lt;br /&gt;
| ?&lt;br /&gt;
| [http://www.jfchasse.fr/contact.html Jean-Francois Chassé]&lt;br /&gt;
| [http://www.jfchasse.fr/FamilyGroups_1_1.py.zip FamilyGroups_1_1.py]&lt;br /&gt;
|- &lt;br /&gt;
| [[LocationsReport|Locations Report]]&lt;br /&gt;
| Report&lt;br /&gt;
| N/A&lt;br /&gt;
| Lists individuals with their locations. Use to clean up locations.&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| All&lt;br /&gt;
| ?&lt;br /&gt;
| Jerome Rapinat&lt;br /&gt;
| [http://gramps-project.org/wiki/images/f/f7/Locations.gz Locations.py]&lt;br /&gt;
|- &lt;br /&gt;
| [[RepositoriesReport|Repositories Report]]&lt;br /&gt;
| Report&lt;br /&gt;
| N/A&lt;br /&gt;
| List sources related to repositories&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| All&lt;br /&gt;
| ?&lt;br /&gt;
| Jerome Rapinat&lt;br /&gt;
| [http://gramps-project.org/wiki/images/e/e6/RepositoriesReport.gz RepositoriesReport.py]&lt;br /&gt;
|- &lt;br /&gt;
| [[Check and Repair Tool]]&lt;br /&gt;
| Tool&lt;br /&gt;
| 3.1.2&lt;br /&gt;
| Fixes dates from 3.1.0&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| All&lt;br /&gt;
| 4 Stars&lt;br /&gt;
| [http://www.gramps-project.org/bugs/my_view_page.php Gramps Bugtracker]&lt;br /&gt;
| See [[Check and Repair Tool]] for details.&lt;br /&gt;
|-&lt;br /&gt;
| [[Place completion tool]]&lt;br /&gt;
| Tool&lt;br /&gt;
| 1.2&lt;br /&gt;
| Work on your places (add latitude, country, ...)&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| All&lt;br /&gt;
| ?&lt;br /&gt;
| see file&lt;br /&gt;
| [http://cage.ugent.be/~bm/varia/placecompletion_1_2.tar.gz placecompletion_1_2.tar.gz]&lt;br /&gt;
|- &lt;br /&gt;
| [[DenominoViso]]&lt;br /&gt;
| Website&lt;br /&gt;
| 2.0&lt;br /&gt;
| Creates interactive graphical ancestor/descendant tree on a webpage.&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| All&lt;br /&gt;
| 3 Stars&lt;br /&gt;
| Michiel Nauta&lt;br /&gt;
| [http://www.home.versatel.nl/m.d.nauta/DenominoViso.py DenominoViso.py]&lt;br /&gt;
|- &lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>JFC</name></author>
		
	</entry>
	<entry>
		<id>https://ftp.gramps-project.org/wiki/index.php?title=Plugins&amp;diff=15378</id>
		<title>Plugins</title>
		<link rel="alternate" type="text/html" href="https://ftp.gramps-project.org/wiki/index.php?title=Plugins&amp;diff=15378"/>
		<updated>2009-04-15T13:48:05Z</updated>

		<summary type="html">&lt;p&gt;JFC: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;5&amp;quot; cellspacing=&amp;quot;0&amp;quot; style=&amp;quot;border-collapse: collapse;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Plugin / Documentation&lt;br /&gt;
! Type&lt;br /&gt;
! Version&lt;br /&gt;
! Description&lt;br /&gt;
! Written for GRAMPS&lt;br /&gt;
! Use&lt;br /&gt;
! Rating (out of 4)&lt;br /&gt;
! Contact&lt;br /&gt;
! Download&lt;br /&gt;
|-&lt;br /&gt;
| [[GeoView]]&lt;br /&gt;
| Experimental View&lt;br /&gt;
| NA&lt;br /&gt;
| An extra view in GRAMPS which shows places, events, info of active person, ... embedded in GRAMPS on a map using different backends (OpenStreetMaps, Google Maps, ...)&lt;br /&gt;
| NA&lt;br /&gt;
| Testing&lt;br /&gt;
| NA&lt;br /&gt;
| [http://www.gramps-project.org/bugs/my_view_page.php Gramps Bugtracker]&lt;br /&gt;
| [[GeoView#Why_GeoView_.3F|GeoView]]&lt;br /&gt;
|- &lt;br /&gt;
| [[RelatedPersons]]&lt;br /&gt;
| Filter for Rules/persons&lt;br /&gt;
| 1.1.0&lt;br /&gt;
| People with related home-person ( v1.1 : Without &amp;quot;Numeric&amp;quot;, not a standard module )&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| All&lt;br /&gt;
| ?&lt;br /&gt;
| [http://www.jfchasse.fr/contact.html Jean-Francois Chassé]&lt;br /&gt;
| [http://www.jfchasse.fr/_RelatedPersons.py.zip _RelatedPersons.py]&lt;br /&gt;
|- &lt;br /&gt;
| [[Gramplets#GUI_Interface|Cairo Clock Gramplet]]&lt;br /&gt;
| Gramplet&lt;br /&gt;
| 1.0.0&lt;br /&gt;
| Example of how to use the Cairo drawing canvas in a gramplet&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| Example&lt;br /&gt;
| 4 Stars&lt;br /&gt;
| [mailto:doug.blank@gmail.com]&lt;br /&gt;
| [http://www.gramps-project.org/wiki/images/f/f4/ClockGramplet.zip ClockGramplet.zip]&lt;br /&gt;
|-&lt;br /&gt;
| [[DataEntryGramplet|Data Entry Gramplet]]&lt;br /&gt;
| Gramplet&lt;br /&gt;
| 1.0.0&lt;br /&gt;
| Quick Data Entry for People data&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| Expert user&lt;br /&gt;
| 4 Stars&lt;br /&gt;
| [http://www.gramps-project.org/bugs/my_view_page.php Gramps Bugtracker]&lt;br /&gt;
| [http://gramps.svn.sourceforge.net/viewvc/gramps/branches/gramps31/src/plugins/gramplet/DataEntryGramplet.py DataEntryGramplet.py]&lt;br /&gt;
|-&lt;br /&gt;
| [[DeepConnectionsGramplet|Deep Connections Gramplet]]&lt;br /&gt;
| Gramplet&lt;br /&gt;
| 1.0.0&lt;br /&gt;
| Finds deep relationships between home and active people&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| All&lt;br /&gt;
| 3 Stars&lt;br /&gt;
| [http://www.gramps-project.org/bugs/my_view_page.php Gramps Bugtracker]&lt;br /&gt;
| [http://gramps.svn.sourceforge.net/viewvc/gramps/trunk/src/plugins/gramplet/DeepConnections.py DeepConnectionsGramplet.py]&lt;br /&gt;
|-&lt;br /&gt;
| [[Descendant Count Gramplet]]&lt;br /&gt;
| Gramplet&lt;br /&gt;
| 1.0.0&lt;br /&gt;
| Gives a count of descendants for each person&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| All&lt;br /&gt;
| 4 Stars&lt;br /&gt;
| [mailto:doug.blank@gmail.com]&lt;br /&gt;
| [[Media:DescendantCountGramplet.zip|DescendantCountGramplet.zip]]&lt;br /&gt;
|-&lt;br /&gt;
| [[FaqGramplet|FAQ Gramplet]]&lt;br /&gt;
| Gramplet&lt;br /&gt;
| 1.0.0&lt;br /&gt;
| GRAMPS Frequently Asked Questions&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| Beginner user&lt;br /&gt;
| 0 Stars&lt;br /&gt;
| [http://www.gramps-project.org/bugs/my_view_page.php Gramps Bugtracker]&lt;br /&gt;
| [http://gramps.svn.sourceforge.net/viewvc/gramps/branches/gramps31/src/plugins/gramplet/FaqGramplet.py FaqGramplet.py]&lt;br /&gt;
|-&lt;br /&gt;
| [[HeadlineNewsGramplet|Headline News Gramplet]]&lt;br /&gt;
| Gramplet&lt;br /&gt;
| 1.0.1&lt;br /&gt;
| Shows GRAMPS breaking news, once per hour&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| All&lt;br /&gt;
| 4 Stars&lt;br /&gt;
| [http://www.gramps-project.org/bugs/my_view_page.php Gramps Bugtracker]&lt;br /&gt;
| [http://gramps.svn.sourceforge.net/viewvc/gramps/branches/gramps31/src/plugins/gramplet/HeadlineNewsGramplet.py HeadlineNewsGramplet.py]&lt;br /&gt;
|-&lt;br /&gt;
| [[NoteGramplet|Note Gramplet]]&lt;br /&gt;
| Gramplet&lt;br /&gt;
| 1.0.0&lt;br /&gt;
| Quick Data Entry for Notes&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| Expert user&lt;br /&gt;
| 4 Stars&lt;br /&gt;
| [http://www.gramps-project.org/bugs/my_view_page.php Gramps Bugtracker]&lt;br /&gt;
| [http://gramps.svn.sourceforge.net/viewvc/gramps/branches/gramps31/src/plugins/gramplet/NoteGramplet.py NoteGramplet.py]&lt;br /&gt;
|-&lt;br /&gt;
| [[PluginManagerGramplet|Plugin Manager Gramplet]]&lt;br /&gt;
| Gramplet&lt;br /&gt;
| 1.0.0&lt;br /&gt;
| Lists plugins available for GRAMPS&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| All&lt;br /&gt;
| 2 Stars&lt;br /&gt;
| [http://www.gramps-project.org/bugs/my_view_page.php Gramps Bugtracker]&lt;br /&gt;
| [http://gramps.svn.sourceforge.net/viewvc/gramps/branches/gramps31/src/plugins/gramplet/PluginManagerGramplet.py PluginManagerGramplet.py]&lt;br /&gt;
|-&lt;br /&gt;
| [[PythonGramplet|Python Gramplet]]&lt;br /&gt;
| Gramplet&lt;br /&gt;
| 1.0.0&lt;br /&gt;
| Interactive Python Shell&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| Developer&lt;br /&gt;
| 4 Stars&lt;br /&gt;
| [http://www.gramps-project.org/bugs/my_view_page.php Gramps Bugtracker]&lt;br /&gt;
| [http://gramps.svn.sourceforge.net/viewvc/gramps/branches/gramps31/src/plugins/gramplet/PythonGramplet.py PythonGramplet.py]&lt;br /&gt;
|-&lt;br /&gt;
| [[MapSevices|GoogleEarth, Show places with Google Earth]]&lt;br /&gt;
| Map sevice&lt;br /&gt;
| 1.0.1&lt;br /&gt;
| Shows one or more places by creating a kml/kmz file for use by Google Earth&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| All&lt;br /&gt;
| 3 Stars&lt;br /&gt;
| Peter G. Landgren&lt;br /&gt;
| [http://www.gramps-project.org/wiki/images/archive/d/d5/20090413163547%21GoogleEarthWriteKML.zip GoogleEarthWriteKML.py]&lt;br /&gt;
|- &lt;br /&gt;
| [[GraphicalReports|Ancestoral, Personal Descendant, and Familial Descendant Reports]]&lt;br /&gt;
| Report&lt;br /&gt;
| 0.4.5 &amp;lt;BR /&amp;gt; very stable but recoding&lt;br /&gt;
| Updated versions of the standard Graphical Ancestor and Descendant reports&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| All&lt;br /&gt;
| ?&lt;br /&gt;
| Craig J. Anderson&lt;br /&gt;
| [http://ander882.110mb.com/files/Graphical.zip Graphical.zip]&lt;br /&gt;
|- &lt;br /&gt;
| [[FamilyGroups|Family Groups and/or attributes]]&lt;br /&gt;
| Report&lt;br /&gt;
| 1.1.0&lt;br /&gt;
| Lists FamilyGroups and display Identification Number attributes  ( v1.1 : Without &amp;quot;Numeric&amp;quot;, not a standard module )&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| All&lt;br /&gt;
| ?&lt;br /&gt;
| [http://www.jfchasse.fr/contact.html Jean-Francois Chassé]&lt;br /&gt;
| [http://www.jfchasse.fr/FamilyGroups_1_1.py.zip FamilyGroups_1_1.py]&lt;br /&gt;
|- &lt;br /&gt;
| [[LocationsReport|Locations Report]]&lt;br /&gt;
| Report&lt;br /&gt;
| N/A&lt;br /&gt;
| Lists individuals with their locations. Use to clean up locations.&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| All&lt;br /&gt;
| ?&lt;br /&gt;
| Jerome Rapinat&lt;br /&gt;
| [http://gramps-project.org/wiki/images/f/f7/Locations.gz Locations.py]&lt;br /&gt;
|- &lt;br /&gt;
| [[RepositoriesReport|Repositories Report]]&lt;br /&gt;
| Report&lt;br /&gt;
| N/A&lt;br /&gt;
| List sources related to repositories&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| All&lt;br /&gt;
| ?&lt;br /&gt;
| Jerome Rapinat&lt;br /&gt;
| [http://gramps-project.org/wiki/images/e/e6/RepositoriesReport.gz RepositoriesReport.py]&lt;br /&gt;
|- &lt;br /&gt;
| [[Check and Repair Tool]]&lt;br /&gt;
| Tool&lt;br /&gt;
| 3.1.2&lt;br /&gt;
| Fixes dates from 3.1.0&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| All&lt;br /&gt;
| 4 Stars&lt;br /&gt;
| [http://www.gramps-project.org/bugs/my_view_page.php Gramps Bugtracker]&lt;br /&gt;
| See [[Check and Repair Tool]] for details.&lt;br /&gt;
|-&lt;br /&gt;
| [[Place completion tool]]&lt;br /&gt;
| Tool&lt;br /&gt;
| 1.2&lt;br /&gt;
| Work on your places (add latitude, country, ...)&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| All&lt;br /&gt;
| ?&lt;br /&gt;
| see file&lt;br /&gt;
| [http://cage.ugent.be/~bm/varia/placecompletion_1_2.tar.gz placecompletion_1_2.tar.gz]&lt;br /&gt;
|- &lt;br /&gt;
| [[DenominoViso]]&lt;br /&gt;
| Website&lt;br /&gt;
| 2.0&lt;br /&gt;
| Creates interactive graphical ancestor/descendant tree on a webpage.&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| All&lt;br /&gt;
| 3 Stars&lt;br /&gt;
| Michiel Nauta&lt;br /&gt;
| [http://www.home.versatel.nl/m.d.nauta/DenominoViso.py DenominoViso.py]&lt;br /&gt;
|- &lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>JFC</name></author>
		
	</entry>
	<entry>
		<id>https://ftp.gramps-project.org/wiki/index.php?title=FamilyGroups&amp;diff=15374</id>
		<title>FamilyGroups</title>
		<link rel="alternate" type="text/html" href="https://ftp.gramps-project.org/wiki/index.php?title=FamilyGroups&amp;diff=15374"/>
		<updated>2009-04-14T21:53:56Z</updated>

		<summary type="html">&lt;p&gt;JFC: /* Programs : “FamilyGroups” */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Plugins]]&lt;br /&gt;
[[Category:Developers/General]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Main==&lt;br /&gt;
A one-name study is a collection of living person (''address, phone'') and other biographical (''census'') data about persons sharing a particular surname or patronymic name based on the name of one's father, grandfather or an even earlier male ancestor. Some researchers are satisfied to collect information and reconstructed '''lineages'''. By distinct '''branches''', we distinct '''family groups''' which do not appear to have a direct connection. The Data of the different family trees can be manipuled by “FamilyGroups” which distinguish the '''unrelated groups'''.&lt;br /&gt;
&lt;br /&gt;
==Why ?==&lt;br /&gt;
The discovered data of a new married couple (date marriage, place, first and last name of the mother and father marriage) required only one research on gramps database with multiple family groups.&lt;br /&gt;
&lt;br /&gt;
==Complementary information (or function).==&lt;br /&gt;
To select each family group, one different marker is added by group (homogenous related branche with one ancestor). The better used of this marker is in a “Identification Number” ( or &amp;quot;ID&amp;quot;) attribute of each person and one value by ' family' group.&lt;br /&gt;
&lt;br /&gt;
== VERSIONS==&lt;br /&gt;
&lt;br /&gt;
1.0 The first&lt;br /&gt;
&lt;br /&gt;
1.1 Without numeric module, not available for Windows.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Programs : “FamilyGroups”==&lt;br /&gt;
The program distinguish between attributes, family groups, surname (name of the home person).&lt;br /&gt;
Description of each family group, total numbers by group, number of individuals which have the surname, number of individuals which have the attribute in the selected group. For each group when a number of individuals is lower than 20, all person is described by first and last name, Gramps ID and attributes&lt;br /&gt;
&lt;br /&gt;
==Examples :==&lt;br /&gt;
&lt;br /&gt;
'''1 / &amp;quot;FamilyGroups&amp;quot; and &amp;quot;Identification Number&amp;quot; attributes'''&lt;br /&gt;
 &lt;br /&gt;
TOTAL NUMBER OF INDIVIDUALS : 2301&lt;br /&gt;
 SURNAME : XXYY is the studied name (Active-Person).&lt;br /&gt;
 ==&amp;gt; When the number is the lower than twenty, persons are precised with surname, ID gramps and attribut.&lt;br /&gt;
 &lt;br /&gt;
New GROUPS N° : 1 . Number of individuals : 2074. &lt;br /&gt;
 425 Of the individuals bear this name : XXYY&lt;br /&gt;
 2069 Of the individuals bear this attribute : NOUS &lt;br /&gt;
 &lt;br /&gt;
New GROUPS N° : 2 . Number of individuals : 142. &lt;br /&gt;
 82 Of the individuals bear this name : XXYY&lt;br /&gt;
 142 Of the individuals bear this attribute : STG &lt;br /&gt;
 &lt;br /&gt;
New GROUPS N° : 3 . Number of individuals : 34. &lt;br /&gt;
 20 Of the individuals bear this name : XXYY&lt;br /&gt;
 34 Of the individuals bear this attribute : STSDL &lt;br /&gt;
&lt;br /&gt;
New GROUPS N° : 4 . Number of individuals : 21. &lt;br /&gt;
 15 Of the individuals bear this name : XXYY&lt;br /&gt;
 21 Of the individuals bear this attribute : RINC &lt;br /&gt;
 &lt;br /&gt;
New GROUPS N° : 5 . Number of individuals : 15. &lt;br /&gt;
 9 Of the individuals bear this name : XXYY&lt;br /&gt;
 15 Of the individuals bear this attribute : BOUJE &lt;br /&gt;
 X1, Jean / IT2248T2435 / BOUJE&lt;br /&gt;
 XXYY, Jeanne / IT2248T2436 / BOUJE&lt;br /&gt;
 XXYY, René / IT2248T2437 / BOUJE&lt;br /&gt;
 X45, Françoise / IT2248T2438 / BOUJE&lt;br /&gt;
 XXYY, René / IT2248T2443 / BOUJE&lt;br /&gt;
 X43, Marie / IT2248T2444 / BOUJE&lt;br /&gt;
 XXYY, René / IT2248T2445 / BOUJE&lt;br /&gt;
 X76, Marie Jeanne / IT2248T2446 / BOUJE&lt;br /&gt;
 XXYY, René / IT2248T2447 / BOUJE&lt;br /&gt;
 X41, Louis / IT2248T2448 / BOUJE&lt;br /&gt;
 XXYY, Marie / IT2248T2449 / BOUJE&lt;br /&gt;
 XXYY, Alexandre / IT2248T2450 / BOUJE&lt;br /&gt;
 X76, Perrine / IT2248T2451 / BOUJE&lt;br /&gt;
 XXYY, René / IT2248T2452 / BOUJE&lt;br /&gt;
 XXYY, Victoire / IT2248T2453 / BOUJE&lt;br /&gt;
 &lt;br /&gt;
New GROUPS N° : 6 . Number of individuals : 12. &lt;br /&gt;
 6 Of the individuals bear this name : XXYY&lt;br /&gt;
 12 Of the individuals bear this attribute : GERPE &lt;br /&gt;
 XXYY, Pierre / IT2248T2421 / GERPE&lt;br /&gt;
 X3, Perrine / IT2248T2422 / GERPE&lt;br /&gt;
 XXYY, Jacques / IT2248T2423 / GERPE&lt;br /&gt;
 X26, Catherine / IT2248T2424 / GERPE&lt;br /&gt;
 XXYY, Jacques / IT2248T2425 / GERPE&lt;br /&gt;
 X29, Antoinette / IT2248T2426 / GERPE&lt;br /&gt;
 XXYY, Louise / IT2248T2427 / GERPE&lt;br /&gt;
 X15, Jacques / IT2248T2428 / GERPE&lt;br /&gt;
 X29, Françoise / IT2248T2429 / GERPE&lt;br /&gt;
 XXYY, Françoise / IT2248T2430 / GERPE&lt;br /&gt;
 X24, Pierre / IT2248T2431 / GERPE&lt;br /&gt;
 XXYY, Marguerite / IT2248T2432 / GERPE&lt;br /&gt;
 &lt;br /&gt;
New GROUPS N° : 7 . Number of individuals : 2. &lt;br /&gt;
 1 Of the individuals bear this name : XXYY&lt;br /&gt;
 2 Of the individuals bear this attribute : MARJA &lt;br /&gt;
 XXYY, François / IT2248T2433 / MARJA&lt;br /&gt;
 X10, Jacquette / IT2248T2434 / MARJA&lt;br /&gt;
 &lt;br /&gt;
New GROUPS N° : 8 . Number of individuals : 1. &lt;br /&gt;
 0 Of the individuals bear this name : XXYY &lt;br /&gt;
 1 Of the individuals bear this attribute : ISOL &lt;br /&gt;
 XXTEST, ISOLE / IT2248T2335 / ISOL&lt;br /&gt;
&lt;br /&gt;
 ========= &amp;gt; BEWARE 5 PERSONS HAVE a empty &amp;quot;ID&amp;quot; attribut or not attribute&lt;br /&gt;
&lt;br /&gt;
'''2 / &amp;quot;FamilyGroups&amp;quot; without &amp;quot;Identification Number&amp;quot; attributes'''&lt;br /&gt;
&lt;br /&gt;
(The Presidents of the United States of America)&lt;br /&gt;
&lt;br /&gt;
TOTAL NUMBER OF INDIVIDUALS : 2145&lt;br /&gt;
 SURNAME : CLINTON is the studied name (Active-Person).&lt;br /&gt;
 ==&amp;gt; When the number is the lower than twenty, persons are precised with surname, ID gramps and attribut.&lt;br /&gt;
 &lt;br /&gt;
New GROUPS N° : 1 . Number of individuals : 1048. &lt;br /&gt;
 0 Of the individuals bear this name : CLINTON&lt;br /&gt;
 1048 Of the individuals bear this attribute : 0NOATTRIB &lt;br /&gt;
 &lt;br /&gt;
New GROUPS N° : 2 . Number of individuals : 172. &lt;br /&gt;
 0 Of the individuals bear this name : CLINTON&lt;br /&gt;
 172 Of the individuals bear this attribute : 0NOATTRIB &lt;br /&gt;
 &lt;br /&gt;
New GROUPS N° : 3 . Number of individuals : 78. &lt;br /&gt;
 0 Of the individuals bear this name : CLINTON&lt;br /&gt;
 78 Of the individuals bear this attribute : 0NOATTRIB &lt;br /&gt;
 &lt;br /&gt;
New GROUPS N° : 4 . Number of individuals : 77. &lt;br /&gt;
 0 Of the individuals bear this name : CLINTON&lt;br /&gt;
 77 Of the individuals bear this attribute : 0NOATTRIB &lt;br /&gt;
 &lt;br /&gt;
New GROUPS N° : 5 . Number of individuals : 71. &lt;br /&gt;
 0 Of the individuals bear this name : CLINTON&lt;br /&gt;
 71 Of the individuals bear this attribute : 0NOATTRIB &lt;br /&gt;
&lt;br /&gt;
…-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.--....&lt;br /&gt;
 &lt;br /&gt;
New GROUPS N° : 34 . Number of individuals : 6. &lt;br /&gt;
 0 Of the individuals bear this name : CLINTON&lt;br /&gt;
 6 Of the individuals bear this attribute : 0NOATTRIB &lt;br /&gt;
 Jackson, Andrew / I2207 / 0NOATTRIB&lt;br /&gt;
 Robards, Rachel Donelson / I2208 / 0NOATTRIB&lt;br /&gt;
 Jackson, Andrew / I2209 / 0NOATTRIB&lt;br /&gt;
 Hutchinson, Elizabeth / I2210 / 0NOATTRIB&lt;br /&gt;
 Jackson, Hugh / I2211 / 0NOATTRIB&lt;br /&gt;
 Jackson, Robert / I2212 / 0NOATTRIB&lt;br /&gt;
 &lt;br /&gt;
New GROUPS N° : 35 . Number of individuals : 5. &lt;br /&gt;
 0 Of the individuals bear this name : CLINTON&lt;br /&gt;
 5 Of the individuals bear this attribute : 0NOATTRIB &lt;br /&gt;
 FILLMORE, Millard / I2259 / 0NOATTRIB&lt;br /&gt;
 POWERS, Abigail / I2260 / 0NOATTRIB&lt;br /&gt;
 MCINTOSH, Caroline C / I2261 / 0NOATTRIB&lt;br /&gt;
 FILLMORE, Nathaniel / I2262 / 0NOATTRIB&lt;br /&gt;
 MILLARD, Phoebe / I2263 / 0NOATTRIB&lt;br /&gt;
 &lt;br /&gt;
New GROUPS N° : 36 . Number of individuals : 1. &lt;br /&gt;
 0 Of the individuals bear this name : CLINTON&lt;br /&gt;
 1 Of the individuals bear this attribute : 0NOATTRIB &lt;br /&gt;
 Faircloe, Thomas / I262 / 0NOATTRIB&lt;br /&gt;
&lt;br /&gt;
 ========= &amp;gt; BEWARE 2145 PERSONS HAVE a empty &amp;quot;ID&amp;quot; attribut or not attribute&lt;br /&gt;
&lt;br /&gt;
==Limitations:==&lt;br /&gt;
No changes on database.&lt;br /&gt;
The program uses memory for calculations.&lt;br /&gt;
&lt;br /&gt;
==Self-interest==&lt;br /&gt;
If you have multiple databases, join data in one file and test.&lt;br /&gt;
If there is an error, then there is a valid mail at the end of the plugin or in the plugin list.&lt;br /&gt;
&lt;br /&gt;
== Future versions ==&lt;br /&gt;
&lt;br /&gt;
 ==&amp;gt; The oldest event (marriage, date, married couple) by FamilyGroups  (without attribute calculation)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 OTHER PROGRAMS AROUND FAMILYGROUPS :&lt;br /&gt;
 &lt;br /&gt;
    1/ Filter RelatedPersons =&amp;gt; select one FamilyGroup and each related person  ( for Filter ou export)   - soon _ testing&lt;br /&gt;
    .&lt;br /&gt;
    2/ Change Attributes Values  =&amp;gt; Allows all the attributes of a certain name to be renamed to a new name&lt;/div&gt;</summary>
		<author><name>JFC</name></author>
		
	</entry>
	<entry>
		<id>https://ftp.gramps-project.org/wiki/index.php?title=Plugins&amp;diff=15373</id>
		<title>Plugins</title>
		<link rel="alternate" type="text/html" href="https://ftp.gramps-project.org/wiki/index.php?title=Plugins&amp;diff=15373"/>
		<updated>2009-04-14T21:50:12Z</updated>

		<summary type="html">&lt;p&gt;JFC: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;5&amp;quot; cellspacing=&amp;quot;0&amp;quot; style=&amp;quot;border-collapse: collapse;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Plugin / Documentation&lt;br /&gt;
! Type&lt;br /&gt;
! Version&lt;br /&gt;
! Description&lt;br /&gt;
! Written for GRAMPS&lt;br /&gt;
! Use&lt;br /&gt;
! Rating (out of 4)&lt;br /&gt;
! Contact&lt;br /&gt;
! Download&lt;br /&gt;
|-&lt;br /&gt;
| [[GeoView]]&lt;br /&gt;
| Experimental View&lt;br /&gt;
| NA&lt;br /&gt;
| An extra view in GRAMPS which shows places, events, info of active person, ... embedded in GRAMPS on a map using different backends (OpenStreetMaps, Google Maps, ...)&lt;br /&gt;
| NA&lt;br /&gt;
| Testing&lt;br /&gt;
| NA&lt;br /&gt;
| [http://www.gramps-project.org/bugs/my_view_page.php Gramps Bugtracker]&lt;br /&gt;
| [[GeoView#Why_GeoView_.3F|GeoView]]&lt;br /&gt;
|- &lt;br /&gt;
| [[RelatedPersons]]&lt;br /&gt;
| Filter for Rules/persons&lt;br /&gt;
| 1.0.0&lt;br /&gt;
| People with related home-person&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| All&lt;br /&gt;
| ?&lt;br /&gt;
| [http://www.jfchasse.fr/contact.html Jean-Francois Chassé]&lt;br /&gt;
| [http://www.jfchasse.fr/_RelatedPersons.py.zip _RelatedPersons.py]&lt;br /&gt;
|- &lt;br /&gt;
| [[Gramplets#GUI_Interface|Cairo Clock Gramplet]]&lt;br /&gt;
| Gramplet&lt;br /&gt;
| 1.0.0&lt;br /&gt;
| Example of how to use the Cairo drawing canvas in a gramplet&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| Example&lt;br /&gt;
| 4 Stars&lt;br /&gt;
| [mailto:doug.blank@gmail.com]&lt;br /&gt;
| [http://www.gramps-project.org/wiki/images/f/f4/ClockGramplet.zip ClockGramplet.zip]&lt;br /&gt;
|-&lt;br /&gt;
| [[DataEntryGramplet|Data Entry Gramplet]]&lt;br /&gt;
| Gramplet&lt;br /&gt;
| 1.0.0&lt;br /&gt;
| Quick Data Entry for People data&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| Expert user&lt;br /&gt;
| 4 Stars&lt;br /&gt;
| [http://www.gramps-project.org/bugs/my_view_page.php Gramps Bugtracker]&lt;br /&gt;
| [http://gramps.svn.sourceforge.net/viewvc/gramps/branches/gramps31/src/plugins/gramplet/DataEntryGramplet.py DataEntryGramplet.py]&lt;br /&gt;
|-&lt;br /&gt;
| [[DeepConnectionsGramplet|Deep Connections Gramplet]]&lt;br /&gt;
| Gramplet&lt;br /&gt;
| 1.0.0&lt;br /&gt;
| Finds deep relationships between home and active people&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| All&lt;br /&gt;
| 3 Stars&lt;br /&gt;
| [http://www.gramps-project.org/bugs/my_view_page.php Gramps Bugtracker]&lt;br /&gt;
| [http://gramps.svn.sourceforge.net/viewvc/gramps/trunk/src/plugins/gramplet/DeepConnections.py DeepConnectionsGramplet.py]&lt;br /&gt;
|-&lt;br /&gt;
| [[Descendant Count Gramplet]]&lt;br /&gt;
| Gramplet&lt;br /&gt;
| 1.0.0&lt;br /&gt;
| Gives a count of descendants for each person&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| All&lt;br /&gt;
| 4 Stars&lt;br /&gt;
| [mailto:doug.blank@gmail.com]&lt;br /&gt;
| [[Media:DescendantCountGramplet.zip|DescendantCountGramplet.zip]]&lt;br /&gt;
|-&lt;br /&gt;
| [[FaqGramplet|FAQ Gramplet]]&lt;br /&gt;
| Gramplet&lt;br /&gt;
| 1.0.0&lt;br /&gt;
| GRAMPS Frequently Asked Questions&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| Beginner user&lt;br /&gt;
| 0 Stars&lt;br /&gt;
| [http://www.gramps-project.org/bugs/my_view_page.php Gramps Bugtracker]&lt;br /&gt;
| [http://gramps.svn.sourceforge.net/viewvc/gramps/branches/gramps31/src/plugins/gramplet/FaqGramplet.py FaqGramplet.py]&lt;br /&gt;
|-&lt;br /&gt;
| [[HeadlineNewsGramplet|Headline News Gramplet]]&lt;br /&gt;
| Gramplet&lt;br /&gt;
| 1.0.1&lt;br /&gt;
| Shows GRAMPS breaking news, once per hour&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| All&lt;br /&gt;
| 4 Stars&lt;br /&gt;
| [http://www.gramps-project.org/bugs/my_view_page.php Gramps Bugtracker]&lt;br /&gt;
| [http://gramps.svn.sourceforge.net/viewvc/gramps/branches/gramps31/src/plugins/gramplet/HeadlineNewsGramplet.py HeadlineNewsGramplet.py]&lt;br /&gt;
|-&lt;br /&gt;
| [[NoteGramplet|Note Gramplet]]&lt;br /&gt;
| Gramplet&lt;br /&gt;
| 1.0.0&lt;br /&gt;
| Quick Data Entry for Notes&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| Expert user&lt;br /&gt;
| 4 Stars&lt;br /&gt;
| [http://www.gramps-project.org/bugs/my_view_page.php Gramps Bugtracker]&lt;br /&gt;
| [http://gramps.svn.sourceforge.net/viewvc/gramps/branches/gramps31/src/plugins/gramplet/NoteGramplet.py NoteGramplet.py]&lt;br /&gt;
|-&lt;br /&gt;
| [[PluginManagerGramplet|Plugin Manager Gramplet]]&lt;br /&gt;
| Gramplet&lt;br /&gt;
| 1.0.0&lt;br /&gt;
| Lists plugins available for GRAMPS&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| All&lt;br /&gt;
| 2 Stars&lt;br /&gt;
| [http://www.gramps-project.org/bugs/my_view_page.php Gramps Bugtracker]&lt;br /&gt;
| [http://gramps.svn.sourceforge.net/viewvc/gramps/branches/gramps31/src/plugins/gramplet/PluginManagerGramplet.py PluginManagerGramplet.py]&lt;br /&gt;
|-&lt;br /&gt;
| [[PythonGramplet|Python Gramplet]]&lt;br /&gt;
| Gramplet&lt;br /&gt;
| 1.0.0&lt;br /&gt;
| Interactive Python Shell&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| Developer&lt;br /&gt;
| 4 Stars&lt;br /&gt;
| [http://www.gramps-project.org/bugs/my_view_page.php Gramps Bugtracker]&lt;br /&gt;
| [http://gramps.svn.sourceforge.net/viewvc/gramps/branches/gramps31/src/plugins/gramplet/PythonGramplet.py PythonGramplet.py]&lt;br /&gt;
|-&lt;br /&gt;
| [[MapSevices|GoogleEarth, Show places with Google Earth]]&lt;br /&gt;
| Map sevice&lt;br /&gt;
| 1.0.1&lt;br /&gt;
| Shows one or more places by creating a kml/kmz file for use by Google Earth&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| All&lt;br /&gt;
| 3 Stars&lt;br /&gt;
| Peter G. Landgren&lt;br /&gt;
| [http://www.gramps-project.org/wiki/images/archive/d/d5/20090413163547%21GoogleEarthWriteKML.zip GoogleEarthWriteKML.py]&lt;br /&gt;
|- &lt;br /&gt;
| [[GraphicalReports|Ancestoral, Personal Descendant, and Familial Descendant Reports]]&lt;br /&gt;
| Report&lt;br /&gt;
| 0.4.5 &amp;lt;BR /&amp;gt; very stable but recoding&lt;br /&gt;
| Updated versions of the standard Graphical Ancestor and Descendant reports&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| All&lt;br /&gt;
| ?&lt;br /&gt;
| Craig J. Anderson&lt;br /&gt;
| [http://ander882.110mb.com/files/Graphical.zip Graphical.zip]&lt;br /&gt;
|- &lt;br /&gt;
| [[FamilyGroups|Family Groups and/or attributes]]&lt;br /&gt;
| Report&lt;br /&gt;
| 1.1.0&lt;br /&gt;
| Lists FamilyGroups and display Identification Number attributes&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| All&lt;br /&gt;
| ?&lt;br /&gt;
| [http://www.jfchasse.fr/contact.html Jean-Francois Chassé]&lt;br /&gt;
| [http://www.jfchasse.fr/FamilyGroups_1_1.py.zip FamilyGroups_1_1.py]&lt;br /&gt;
|- &lt;br /&gt;
| [[LocationsReport|Locations Report]]&lt;br /&gt;
| Report&lt;br /&gt;
| N/A&lt;br /&gt;
| Lists individuals with their locations. Use to clean up locations.&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| All&lt;br /&gt;
| ?&lt;br /&gt;
| Jerome Rapinat&lt;br /&gt;
| [http://gramps-project.org/wiki/images/f/f7/Locations.gz Locations.py]&lt;br /&gt;
|- &lt;br /&gt;
| [[RepositoriesReport|Repositories Report]]&lt;br /&gt;
| Report&lt;br /&gt;
| N/A&lt;br /&gt;
| List sources related to repositories&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| All&lt;br /&gt;
| ?&lt;br /&gt;
| Jerome Rapinat&lt;br /&gt;
| [http://gramps-project.org/wiki/images/e/e6/RepositoriesReport.gz RepositoriesReport.py]&lt;br /&gt;
|- &lt;br /&gt;
| [[Check and Repair Tool]]&lt;br /&gt;
| Tool&lt;br /&gt;
| 3.1.2&lt;br /&gt;
| Fixes dates from 3.1.0&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| All&lt;br /&gt;
| 4 Stars&lt;br /&gt;
| [http://www.gramps-project.org/bugs/my_view_page.php Gramps Bugtracker]&lt;br /&gt;
| See [[Check and Repair Tool]] for details.&lt;br /&gt;
|-&lt;br /&gt;
| [[Place completion tool]]&lt;br /&gt;
| Tool&lt;br /&gt;
| 1.2&lt;br /&gt;
| Work on your places (add latitude, country, ...)&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| All&lt;br /&gt;
| ?&lt;br /&gt;
| see file&lt;br /&gt;
| [http://cage.ugent.be/~bm/varia/placecompletion_1_2.tar.gz placecompletion_1_2.tar.gz]&lt;br /&gt;
|- &lt;br /&gt;
| [[DenominoViso]]&lt;br /&gt;
| Website&lt;br /&gt;
| 2.0&lt;br /&gt;
| Creates interactive graphical ancestor/descendant tree on a webpage.&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| All&lt;br /&gt;
| 3 Stars&lt;br /&gt;
| Michiel Nauta&lt;br /&gt;
| [http://www.home.versatel.nl/m.d.nauta/DenominoViso.py DenominoViso.py]&lt;br /&gt;
|- &lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>JFC</name></author>
		
	</entry>
	<entry>
		<id>https://ftp.gramps-project.org/wiki/index.php?title=Plugins&amp;diff=15228</id>
		<title>Plugins</title>
		<link rel="alternate" type="text/html" href="https://ftp.gramps-project.org/wiki/index.php?title=Plugins&amp;diff=15228"/>
		<updated>2009-03-31T09:00:45Z</updated>

		<summary type="html">&lt;p&gt;JFC: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;5&amp;quot; cellspacing=&amp;quot;0&amp;quot; style=&amp;quot;border-collapse: collapse;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Plugin / Documentation&lt;br /&gt;
! Type&lt;br /&gt;
! Version&lt;br /&gt;
! Description&lt;br /&gt;
! Written for GRAMPS&lt;br /&gt;
! Use&lt;br /&gt;
! Rating (out of 4)&lt;br /&gt;
! Contact&lt;br /&gt;
! Download&lt;br /&gt;
|-&lt;br /&gt;
| [[Check and Repair Tool]]&lt;br /&gt;
| Tool&lt;br /&gt;
| 3.1.2&lt;br /&gt;
| Fixes dates from 3.1.0&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| All&lt;br /&gt;
| 4 Stars&lt;br /&gt;
| [http://www.gramps-project.org/bugs/my_view_page.php Gramps Bugtracker]&lt;br /&gt;
| See [[Check and Repair Tool]] for details.&lt;br /&gt;
|-&lt;br /&gt;
| [[PluginManagerGramplet|Plugin Manager Gramplet]]&lt;br /&gt;
| Gramplet&lt;br /&gt;
| 1.0.0&lt;br /&gt;
| Lists plugins available for GRAMPS&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| All&lt;br /&gt;
| 2 Stars&lt;br /&gt;
| [http://www.gramps-project.org/bugs/my_view_page.php Gramps Bugtracker]&lt;br /&gt;
| [http://gramps.svn.sourceforge.net/viewvc/gramps/branches/gramps31/src/plugins/gramplet/PluginManagerGramplet.py PluginManagerGramplet.py]&lt;br /&gt;
|-&lt;br /&gt;
| [[DeepConnectionsGramplet|Deep Connections Gramplet]]&lt;br /&gt;
| Gramplet&lt;br /&gt;
| 1.0.0&lt;br /&gt;
| Finds deep relationships between home and active people&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| All&lt;br /&gt;
| 3 Stars&lt;br /&gt;
| [http://www.gramps-project.org/bugs/my_view_page.php Gramps Bugtracker]&lt;br /&gt;
| [http://gramps.svn.sourceforge.net/viewvc/gramps/trunk/src/plugins/gramplet/DeepConnections.py DeepConnectionsGramplet.py]&lt;br /&gt;
|-&lt;br /&gt;
| [[DataEntryGramplet|Data Entry Gramplet]]&lt;br /&gt;
| Gramplet&lt;br /&gt;
| 1.0.0&lt;br /&gt;
| Quick Data Entry for People data&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| Expert user&lt;br /&gt;
| 4 Stars&lt;br /&gt;
| [http://www.gramps-project.org/bugs/my_view_page.php Gramps Bugtracker]&lt;br /&gt;
| [http://gramps.svn.sourceforge.net/viewvc/gramps/branches/gramps31/src/plugins/gramplet/DataEntryGramplet.py DataEntryGramplet.py]&lt;br /&gt;
|-&lt;br /&gt;
| [[NoteGramplet|Note Gramplet]]&lt;br /&gt;
| Gramplet&lt;br /&gt;
| 1.0.0&lt;br /&gt;
| Quick Data Entry for Notes&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| Expert user&lt;br /&gt;
| 4 Stars&lt;br /&gt;
| [http://www.gramps-project.org/bugs/my_view_page.php Gramps Bugtracker]&lt;br /&gt;
| [http://gramps.svn.sourceforge.net/viewvc/gramps/branches/gramps31/src/plugins/gramplet/NoteGramplet.py NoteGramplet.py]&lt;br /&gt;
|-&lt;br /&gt;
| [[FaqGramplet|FAQ Gramplet]]&lt;br /&gt;
| Gramplet&lt;br /&gt;
| 1.0.0&lt;br /&gt;
| GRAMPS Frequently Asked Questions&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| Beginner user&lt;br /&gt;
| 0 Stars&lt;br /&gt;
| [http://www.gramps-project.org/bugs/my_view_page.php Gramps Bugtracker]&lt;br /&gt;
| [http://gramps.svn.sourceforge.net/viewvc/gramps/branches/gramps31/src/plugins/gramplet/FaqGramplet.py FaqGramplet.py]&lt;br /&gt;
|-&lt;br /&gt;
| [[HeadlineNewsGramplet|Headline News Gramplet]]&lt;br /&gt;
| Gramplet&lt;br /&gt;
| 1.0.1&lt;br /&gt;
| Shows GRAMPS breaking news, once per hour&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| All&lt;br /&gt;
| 4 Stars&lt;br /&gt;
| [http://www.gramps-project.org/bugs/my_view_page.php Gramps Bugtracker]&lt;br /&gt;
| [http://gramps.svn.sourceforge.net/viewvc/gramps/branches/gramps31/src/plugins/gramplet/HeadlineNewsGramplet.py HeadlineNewsGramplet.py]&lt;br /&gt;
|-&lt;br /&gt;
| [[PythonGramplet|Python Gramplet]]&lt;br /&gt;
| Gramplet&lt;br /&gt;
| 1.0.0&lt;br /&gt;
| Interactive Python Shell&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| Developer&lt;br /&gt;
| 4 Stars&lt;br /&gt;
| [http://www.gramps-project.org/bugs/my_view_page.php Gramps Bugtracker]&lt;br /&gt;
| [http://gramps.svn.sourceforge.net/viewvc/gramps/branches/gramps31/src/plugins/gramplet/PythonGramplet.py PythonGramplet.py]&lt;br /&gt;
|-&lt;br /&gt;
| [[Descendant Count Gramplet]]&lt;br /&gt;
| Gramplet&lt;br /&gt;
| 1.0.0&lt;br /&gt;
| Gives a count of descendants for each person&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| All&lt;br /&gt;
| 4 Stars&lt;br /&gt;
| [mailto:doug.blank@gmail.com]&lt;br /&gt;
| [[Media:DescendantCountGramplet.zip|DescendantCountGramplet.zip]]&lt;br /&gt;
|-&lt;br /&gt;
| [[Gramplets#GUI_Interface|Cairo Clock Gramplet]]&lt;br /&gt;
| Gramplet&lt;br /&gt;
| 1.0.0&lt;br /&gt;
| Example of how to use the Cairo drawing canvas in a gramplet&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| Example&lt;br /&gt;
| 4 Stars&lt;br /&gt;
| [mailto:doug.blank@gmail.com]&lt;br /&gt;
| [http://www.gramps-project.org/wiki/images/f/f4/ClockGramplet.zip ClockGramplet.zip]&lt;br /&gt;
|-&lt;br /&gt;
| [[Place completion tool]]&lt;br /&gt;
| Tool&lt;br /&gt;
| 1.2&lt;br /&gt;
| Work on your places (add latitude, country, ...)&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| All&lt;br /&gt;
| ?&lt;br /&gt;
| see file&lt;br /&gt;
| [http://cage.ugent.be/~bm/varia/placecompletion_1_2.tar.gz placecompletion_1_2.tar.gz]&lt;br /&gt;
|- &lt;br /&gt;
| [[LocationsReport|Locations Report]]&lt;br /&gt;
| Report&lt;br /&gt;
| N/A&lt;br /&gt;
| Lists individuals with their locations. Use to clean up locations.&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| All&lt;br /&gt;
| ?&lt;br /&gt;
| Jerome Rapinat&lt;br /&gt;
| [http://gramps-project.org/wiki/images/f/f7/Locations.gz Locations.py]&lt;br /&gt;
|- &lt;br /&gt;
| [[RepositoriesReport|Repositories Report]]&lt;br /&gt;
| Report&lt;br /&gt;
| N/A&lt;br /&gt;
| List sources related to repositories&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| All&lt;br /&gt;
| ?&lt;br /&gt;
| Jerome Rapinat&lt;br /&gt;
| [http://gramps-project.org/wiki/images/e/e6/RepositoriesReport.gz RepositoriesReport.py]&lt;br /&gt;
|- &lt;br /&gt;
| [[GraphicalReports|Ancestoral, Personal Descendant, and Familial Descendant Reports]]&lt;br /&gt;
| Report&lt;br /&gt;
| 0.4.5 &amp;lt;BR /&amp;gt; very stable but recoding&lt;br /&gt;
| Updated versions of the standard Graphical Ancestor and Descendant reports&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| All&lt;br /&gt;
| ?&lt;br /&gt;
| Craig J. Anderson&lt;br /&gt;
| [http://ander882.110mb.com/files/Graphical.zip Graphical.zip]&lt;br /&gt;
|- &lt;br /&gt;
| [[RelatedPersons]]&lt;br /&gt;
| Filter for Rules/persons&lt;br /&gt;
| 1.0.0&lt;br /&gt;
| People with related home-person&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| All&lt;br /&gt;
| ?&lt;br /&gt;
| [http://www.jfchasse.fr/contact.html Jean-Francois Chassé]&lt;br /&gt;
| [http://www.jfchasse.fr/_RelatedPersons.py.zip _RelatedPersons.py]&lt;br /&gt;
|- &lt;br /&gt;
| [[FamilyGroups|Family Groups and/or attributes]]&lt;br /&gt;
| Report&lt;br /&gt;
| 1.0.0&lt;br /&gt;
| Lists FamilyGroups and display Identification Number attributes&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| All&lt;br /&gt;
| ?&lt;br /&gt;
| [http://www.jfchasse.fr/contact.html Jean-Francois Chassé]&lt;br /&gt;
| [http://www.jfchasse.fr/FamilyGroups_1_0.py.zip FamilyGroups_1_0.py]&lt;br /&gt;
|- &lt;br /&gt;
| [[MapSevices|GoogleEarth, Show places with Google Earth]]&lt;br /&gt;
| Map sevice&lt;br /&gt;
| 1.0.0&lt;br /&gt;
| Shows one or more places by creating a kml/kmz file for use by Google Earth&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| All&lt;br /&gt;
| 3 Stars&lt;br /&gt;
| Peter G. Landgren&lt;br /&gt;
| [http://www.gramps-project.org/wiki/images/d/d5/GoogleEarthWriteKML.zip GoogleEarthWriteKML.py]&lt;br /&gt;
|- &lt;br /&gt;
| [[GeoView]]&lt;br /&gt;
| Experimental View&lt;br /&gt;
| NA&lt;br /&gt;
| An extra view in GRAMPS which shows places, events, info of active person, ... embedded in GRAMPS on a map using different backends (OpenStreetMaps, Google Maps, ...)&lt;br /&gt;
| NA&lt;br /&gt;
| Testing&lt;br /&gt;
| NA&lt;br /&gt;
| [http://www.gramps-project.org/bugs/my_view_page.php Gramps Bugtracker]&lt;br /&gt;
| [[GeoView#Why_GeoView_.3F|GeoView]]&lt;br /&gt;
|- &lt;br /&gt;
| [[DenominoViso]]&lt;br /&gt;
| Website&lt;br /&gt;
| 2.0&lt;br /&gt;
| Creates interactive graphical ancestor/descendant tree on a webpage.&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| All&lt;br /&gt;
| 3 Stars&lt;br /&gt;
| Michiel Nauta&lt;br /&gt;
| [http://www.home.versatel.nl/m.d.nauta/DenominoViso.py DenominoViso.py]&lt;br /&gt;
|- &lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>JFC</name></author>
		
	</entry>
	<entry>
		<id>https://ftp.gramps-project.org/wiki/index.php?title=FamilyGroups&amp;diff=15223</id>
		<title>FamilyGroups</title>
		<link rel="alternate" type="text/html" href="https://ftp.gramps-project.org/wiki/index.php?title=FamilyGroups&amp;diff=15223"/>
		<updated>2009-03-30T23:03:09Z</updated>

		<summary type="html">&lt;p&gt;JFC: /* Main */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Plugins]]&lt;br /&gt;
[[Category:Developers/General]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Main==&lt;br /&gt;
A one-name study is a collection of living person (''address, phone'') and other biographical (''census'') data about persons sharing a particular surname or patronymic name based on the name of one's father, grandfather or an even earlier male ancestor. Some researchers are satisfied to collect information and reconstructed '''lineages'''. By distinct '''branches''', we distinct '''family groups''' which do not appear to have a direct connection. The Data of the different family trees can be manipuled by “FamilyGroups” which distinguish the '''unrelated groups'''.&lt;br /&gt;
&lt;br /&gt;
==Why ?==&lt;br /&gt;
The discovered data of a new married couple (date marriage, place, first and last name of the mother and father marriage) required only one research on gramps database with multiple family groups.&lt;br /&gt;
&lt;br /&gt;
==Complementary information (or function).==&lt;br /&gt;
To select each family group, one different marker is added by group (homogenous related branche with one ancestor). The better used of this marker is in a “Identification Number” ( or &amp;quot;ID&amp;quot;) attribute of each person and one value by ' family' group.&lt;br /&gt;
&lt;br /&gt;
==Programs : “FamilyGroups”==&lt;br /&gt;
The program distinguish between attributes, family groups, surname (name of the home person).&lt;br /&gt;
Description of each family group, total numbers by group, number of individuals which have the surname, number of individuals which have the attribute in the selected group. For each group when a number of individuals is lower than 20, all person is described by first and last name, Gramps ID and attributes&lt;br /&gt;
&lt;br /&gt;
==Examples :==&lt;br /&gt;
&lt;br /&gt;
'''1 / &amp;quot;FamilyGroups&amp;quot; and &amp;quot;Identification Number&amp;quot; attributes'''&lt;br /&gt;
 &lt;br /&gt;
TOTAL NUMBER OF INDIVIDUALS : 2301&lt;br /&gt;
 SURNAME : XXYY is the studied name (Active-Person).&lt;br /&gt;
 ==&amp;gt; When the number is the lower than twenty, persons are precised with surname, ID gramps and attribut.&lt;br /&gt;
 &lt;br /&gt;
New GROUPS N° : 1 . Number of individuals : 2074. &lt;br /&gt;
 425 Of the individuals bear this name : XXYY&lt;br /&gt;
 2069 Of the individuals bear this attribute : NOUS &lt;br /&gt;
 &lt;br /&gt;
New GROUPS N° : 2 . Number of individuals : 142. &lt;br /&gt;
 82 Of the individuals bear this name : XXYY&lt;br /&gt;
 142 Of the individuals bear this attribute : STG &lt;br /&gt;
 &lt;br /&gt;
New GROUPS N° : 3 . Number of individuals : 34. &lt;br /&gt;
 20 Of the individuals bear this name : XXYY&lt;br /&gt;
 34 Of the individuals bear this attribute : STSDL &lt;br /&gt;
&lt;br /&gt;
New GROUPS N° : 4 . Number of individuals : 21. &lt;br /&gt;
 15 Of the individuals bear this name : XXYY&lt;br /&gt;
 21 Of the individuals bear this attribute : RINC &lt;br /&gt;
 &lt;br /&gt;
New GROUPS N° : 5 . Number of individuals : 15. &lt;br /&gt;
 9 Of the individuals bear this name : XXYY&lt;br /&gt;
 15 Of the individuals bear this attribute : BOUJE &lt;br /&gt;
 X1, Jean / IT2248T2435 / BOUJE&lt;br /&gt;
 XXYY, Jeanne / IT2248T2436 / BOUJE&lt;br /&gt;
 XXYY, René / IT2248T2437 / BOUJE&lt;br /&gt;
 X45, Françoise / IT2248T2438 / BOUJE&lt;br /&gt;
 XXYY, René / IT2248T2443 / BOUJE&lt;br /&gt;
 X43, Marie / IT2248T2444 / BOUJE&lt;br /&gt;
 XXYY, René / IT2248T2445 / BOUJE&lt;br /&gt;
 X76, Marie Jeanne / IT2248T2446 / BOUJE&lt;br /&gt;
 XXYY, René / IT2248T2447 / BOUJE&lt;br /&gt;
 X41, Louis / IT2248T2448 / BOUJE&lt;br /&gt;
 XXYY, Marie / IT2248T2449 / BOUJE&lt;br /&gt;
 XXYY, Alexandre / IT2248T2450 / BOUJE&lt;br /&gt;
 X76, Perrine / IT2248T2451 / BOUJE&lt;br /&gt;
 XXYY, René / IT2248T2452 / BOUJE&lt;br /&gt;
 XXYY, Victoire / IT2248T2453 / BOUJE&lt;br /&gt;
 &lt;br /&gt;
New GROUPS N° : 6 . Number of individuals : 12. &lt;br /&gt;
 6 Of the individuals bear this name : XXYY&lt;br /&gt;
 12 Of the individuals bear this attribute : GERPE &lt;br /&gt;
 XXYY, Pierre / IT2248T2421 / GERPE&lt;br /&gt;
 X3, Perrine / IT2248T2422 / GERPE&lt;br /&gt;
 XXYY, Jacques / IT2248T2423 / GERPE&lt;br /&gt;
 X26, Catherine / IT2248T2424 / GERPE&lt;br /&gt;
 XXYY, Jacques / IT2248T2425 / GERPE&lt;br /&gt;
 X29, Antoinette / IT2248T2426 / GERPE&lt;br /&gt;
 XXYY, Louise / IT2248T2427 / GERPE&lt;br /&gt;
 X15, Jacques / IT2248T2428 / GERPE&lt;br /&gt;
 X29, Françoise / IT2248T2429 / GERPE&lt;br /&gt;
 XXYY, Françoise / IT2248T2430 / GERPE&lt;br /&gt;
 X24, Pierre / IT2248T2431 / GERPE&lt;br /&gt;
 XXYY, Marguerite / IT2248T2432 / GERPE&lt;br /&gt;
 &lt;br /&gt;
New GROUPS N° : 7 . Number of individuals : 2. &lt;br /&gt;
 1 Of the individuals bear this name : XXYY&lt;br /&gt;
 2 Of the individuals bear this attribute : MARJA &lt;br /&gt;
 XXYY, François / IT2248T2433 / MARJA&lt;br /&gt;
 X10, Jacquette / IT2248T2434 / MARJA&lt;br /&gt;
 &lt;br /&gt;
New GROUPS N° : 8 . Number of individuals : 1. &lt;br /&gt;
 0 Of the individuals bear this name : XXYY &lt;br /&gt;
 1 Of the individuals bear this attribute : ISOL &lt;br /&gt;
 XXTEST, ISOLE / IT2248T2335 / ISOL&lt;br /&gt;
&lt;br /&gt;
 ========= &amp;gt; BEWARE 5 PERSONS HAVE a empty &amp;quot;ID&amp;quot; attribut or not attribute&lt;br /&gt;
&lt;br /&gt;
'''2 / &amp;quot;FamilyGroups&amp;quot; without &amp;quot;Identification Number&amp;quot; attributes'''&lt;br /&gt;
&lt;br /&gt;
(The Presidents of the United States of America)&lt;br /&gt;
&lt;br /&gt;
TOTAL NUMBER OF INDIVIDUALS : 2145&lt;br /&gt;
 SURNAME : CLINTON is the studied name (Active-Person).&lt;br /&gt;
 ==&amp;gt; When the number is the lower than twenty, persons are precised with surname, ID gramps and attribut.&lt;br /&gt;
 &lt;br /&gt;
New GROUPS N° : 1 . Number of individuals : 1048. &lt;br /&gt;
 0 Of the individuals bear this name : CLINTON&lt;br /&gt;
 1048 Of the individuals bear this attribute : 0NOATTRIB &lt;br /&gt;
 &lt;br /&gt;
New GROUPS N° : 2 . Number of individuals : 172. &lt;br /&gt;
 0 Of the individuals bear this name : CLINTON&lt;br /&gt;
 172 Of the individuals bear this attribute : 0NOATTRIB &lt;br /&gt;
 &lt;br /&gt;
New GROUPS N° : 3 . Number of individuals : 78. &lt;br /&gt;
 0 Of the individuals bear this name : CLINTON&lt;br /&gt;
 78 Of the individuals bear this attribute : 0NOATTRIB &lt;br /&gt;
 &lt;br /&gt;
New GROUPS N° : 4 . Number of individuals : 77. &lt;br /&gt;
 0 Of the individuals bear this name : CLINTON&lt;br /&gt;
 77 Of the individuals bear this attribute : 0NOATTRIB &lt;br /&gt;
 &lt;br /&gt;
New GROUPS N° : 5 . Number of individuals : 71. &lt;br /&gt;
 0 Of the individuals bear this name : CLINTON&lt;br /&gt;
 71 Of the individuals bear this attribute : 0NOATTRIB &lt;br /&gt;
&lt;br /&gt;
…-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.--....&lt;br /&gt;
 &lt;br /&gt;
New GROUPS N° : 34 . Number of individuals : 6. &lt;br /&gt;
 0 Of the individuals bear this name : CLINTON&lt;br /&gt;
 6 Of the individuals bear this attribute : 0NOATTRIB &lt;br /&gt;
 Jackson, Andrew / I2207 / 0NOATTRIB&lt;br /&gt;
 Robards, Rachel Donelson / I2208 / 0NOATTRIB&lt;br /&gt;
 Jackson, Andrew / I2209 / 0NOATTRIB&lt;br /&gt;
 Hutchinson, Elizabeth / I2210 / 0NOATTRIB&lt;br /&gt;
 Jackson, Hugh / I2211 / 0NOATTRIB&lt;br /&gt;
 Jackson, Robert / I2212 / 0NOATTRIB&lt;br /&gt;
 &lt;br /&gt;
New GROUPS N° : 35 . Number of individuals : 5. &lt;br /&gt;
 0 Of the individuals bear this name : CLINTON&lt;br /&gt;
 5 Of the individuals bear this attribute : 0NOATTRIB &lt;br /&gt;
 FILLMORE, Millard / I2259 / 0NOATTRIB&lt;br /&gt;
 POWERS, Abigail / I2260 / 0NOATTRIB&lt;br /&gt;
 MCINTOSH, Caroline C / I2261 / 0NOATTRIB&lt;br /&gt;
 FILLMORE, Nathaniel / I2262 / 0NOATTRIB&lt;br /&gt;
 MILLARD, Phoebe / I2263 / 0NOATTRIB&lt;br /&gt;
 &lt;br /&gt;
New GROUPS N° : 36 . Number of individuals : 1. &lt;br /&gt;
 0 Of the individuals bear this name : CLINTON&lt;br /&gt;
 1 Of the individuals bear this attribute : 0NOATTRIB &lt;br /&gt;
 Faircloe, Thomas / I262 / 0NOATTRIB&lt;br /&gt;
&lt;br /&gt;
 ========= &amp;gt; BEWARE 2145 PERSONS HAVE a empty &amp;quot;ID&amp;quot; attribut or not attribute&lt;br /&gt;
&lt;br /&gt;
==Limitations:==&lt;br /&gt;
No changes on database.&lt;br /&gt;
The program uses memory for calculations.&lt;br /&gt;
&lt;br /&gt;
==Self-interest==&lt;br /&gt;
If you have multiple databases, join data in one file and test.&lt;br /&gt;
If there is an error, then there is a valid mail at the end of the plugin or in the plugin list.&lt;br /&gt;
&lt;br /&gt;
== Future versions ==&lt;br /&gt;
&lt;br /&gt;
 ==&amp;gt; The oldest event (marriage, date, married couple) by FamilyGroups  (without attribute calculation)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 OTHER PROGRAMS AROUND FAMILYGROUPS :&lt;br /&gt;
 &lt;br /&gt;
    1/ Filter RelatedPersons =&amp;gt; select one FamilyGroup and each related person  ( for Filter ou export)   - soon _ testing&lt;br /&gt;
    .&lt;br /&gt;
    2/ Change Attributes Values  =&amp;gt; Allows all the attributes of a certain name to be renamed to a new name&lt;/div&gt;</summary>
		<author><name>JFC</name></author>
		
	</entry>
	<entry>
		<id>https://ftp.gramps-project.org/wiki/index.php?title=FamilyGroups&amp;diff=15218</id>
		<title>FamilyGroups</title>
		<link rel="alternate" type="text/html" href="https://ftp.gramps-project.org/wiki/index.php?title=FamilyGroups&amp;diff=15218"/>
		<updated>2009-03-30T12:30:20Z</updated>

		<summary type="html">&lt;p&gt;JFC: /* Programs : “FamilyGroups” */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Main==&lt;br /&gt;
A one-name study is a collection of living person (''address, phone'') and other biographical (''census'') data about persons sharing a particular surname or patronymic name based on the name of one's father, grandfather or an even earlier male ancestor. Some researchers are satisfied to collect information and reconstructed '''lineages'''. By distinct '''branches''', we distinct '''family groups''' which do not appear to have a direct connection. The Data of the different family trees can be manipuled by “FamilyGroups” which distinguish the '''unrelated groups'''.&lt;br /&gt;
&lt;br /&gt;
==Why ?==&lt;br /&gt;
The discovered data of a new married couple (date marriage, place, first and last name of the mother and father marriage) required only one research on gramps database with multiple family groups.&lt;br /&gt;
&lt;br /&gt;
==Complementary information (or function).==&lt;br /&gt;
To select each family group, one different marker is added by group (homogenous related branche with one ancestor). The better used of this marker is in a “Identification Number” ( or &amp;quot;ID&amp;quot;) attribute of each person and one value by ' family' group.&lt;br /&gt;
&lt;br /&gt;
==Programs : “FamilyGroups”==&lt;br /&gt;
The program distinguish between attributes, family groups, surname (name of the home person).&lt;br /&gt;
Description of each family group, total numbers by group, number of individuals which have the surname, number of individuals which have the attribute in the selected group. For each group when a number of individuals is lower than 20, all person is described by first and last name, Gramps ID and attributes&lt;br /&gt;
&lt;br /&gt;
==Examples :==&lt;br /&gt;
&lt;br /&gt;
'''1 / &amp;quot;FamilyGroups&amp;quot; and &amp;quot;Identification Number&amp;quot; attributes'''&lt;br /&gt;
 &lt;br /&gt;
TOTAL NUMBER OF INDIVIDUALS : 2301&lt;br /&gt;
 SURNAME : XXYY is the studied name (Active-Person).&lt;br /&gt;
 ==&amp;gt; When the number is the lower than twenty, persons are precised with surname, ID gramps and attribut.&lt;br /&gt;
 &lt;br /&gt;
New GROUPS N° : 1 . Number of individuals : 2074. &lt;br /&gt;
 425 Of the individuals bear this name : XXYY&lt;br /&gt;
 2069 Of the individuals bear this attribute : NOUS &lt;br /&gt;
 &lt;br /&gt;
New GROUPS N° : 2 . Number of individuals : 142. &lt;br /&gt;
 82 Of the individuals bear this name : XXYY&lt;br /&gt;
 142 Of the individuals bear this attribute : STG &lt;br /&gt;
 &lt;br /&gt;
New GROUPS N° : 3 . Number of individuals : 34. &lt;br /&gt;
 20 Of the individuals bear this name : XXYY&lt;br /&gt;
 34 Of the individuals bear this attribute : STSDL &lt;br /&gt;
&lt;br /&gt;
New GROUPS N° : 4 . Number of individuals : 21. &lt;br /&gt;
 15 Of the individuals bear this name : XXYY&lt;br /&gt;
 21 Of the individuals bear this attribute : RINC &lt;br /&gt;
 &lt;br /&gt;
New GROUPS N° : 5 . Number of individuals : 15. &lt;br /&gt;
 9 Of the individuals bear this name : XXYY&lt;br /&gt;
 15 Of the individuals bear this attribute : BOUJE &lt;br /&gt;
 X1, Jean / IT2248T2435 / BOUJE&lt;br /&gt;
 XXYY, Jeanne / IT2248T2436 / BOUJE&lt;br /&gt;
 XXYY, René / IT2248T2437 / BOUJE&lt;br /&gt;
 X45, Françoise / IT2248T2438 / BOUJE&lt;br /&gt;
 XXYY, René / IT2248T2443 / BOUJE&lt;br /&gt;
 X43, Marie / IT2248T2444 / BOUJE&lt;br /&gt;
 XXYY, René / IT2248T2445 / BOUJE&lt;br /&gt;
 X76, Marie Jeanne / IT2248T2446 / BOUJE&lt;br /&gt;
 XXYY, René / IT2248T2447 / BOUJE&lt;br /&gt;
 X41, Louis / IT2248T2448 / BOUJE&lt;br /&gt;
 XXYY, Marie / IT2248T2449 / BOUJE&lt;br /&gt;
 XXYY, Alexandre / IT2248T2450 / BOUJE&lt;br /&gt;
 X76, Perrine / IT2248T2451 / BOUJE&lt;br /&gt;
 XXYY, René / IT2248T2452 / BOUJE&lt;br /&gt;
 XXYY, Victoire / IT2248T2453 / BOUJE&lt;br /&gt;
 &lt;br /&gt;
New GROUPS N° : 6 . Number of individuals : 12. &lt;br /&gt;
 6 Of the individuals bear this name : XXYY&lt;br /&gt;
 12 Of the individuals bear this attribute : GERPE &lt;br /&gt;
 XXYY, Pierre / IT2248T2421 / GERPE&lt;br /&gt;
 X3, Perrine / IT2248T2422 / GERPE&lt;br /&gt;
 XXYY, Jacques / IT2248T2423 / GERPE&lt;br /&gt;
 X26, Catherine / IT2248T2424 / GERPE&lt;br /&gt;
 XXYY, Jacques / IT2248T2425 / GERPE&lt;br /&gt;
 X29, Antoinette / IT2248T2426 / GERPE&lt;br /&gt;
 XXYY, Louise / IT2248T2427 / GERPE&lt;br /&gt;
 X15, Jacques / IT2248T2428 / GERPE&lt;br /&gt;
 X29, Françoise / IT2248T2429 / GERPE&lt;br /&gt;
 XXYY, Françoise / IT2248T2430 / GERPE&lt;br /&gt;
 X24, Pierre / IT2248T2431 / GERPE&lt;br /&gt;
 XXYY, Marguerite / IT2248T2432 / GERPE&lt;br /&gt;
 &lt;br /&gt;
New GROUPS N° : 7 . Number of individuals : 2. &lt;br /&gt;
 1 Of the individuals bear this name : XXYY&lt;br /&gt;
 2 Of the individuals bear this attribute : MARJA &lt;br /&gt;
 XXYY, François / IT2248T2433 / MARJA&lt;br /&gt;
 X10, Jacquette / IT2248T2434 / MARJA&lt;br /&gt;
 &lt;br /&gt;
New GROUPS N° : 8 . Number of individuals : 1. &lt;br /&gt;
 0 Of the individuals bear this name : XXYY &lt;br /&gt;
 1 Of the individuals bear this attribute : ISOL &lt;br /&gt;
 XXTEST, ISOLE / IT2248T2335 / ISOL&lt;br /&gt;
&lt;br /&gt;
 ========= &amp;gt; BEWARE 5 PERSONS HAVE a empty &amp;quot;ID&amp;quot; attribut or not attribute&lt;br /&gt;
&lt;br /&gt;
'''2 / &amp;quot;FamilyGroups&amp;quot; without &amp;quot;Identification Number&amp;quot; attributes'''&lt;br /&gt;
&lt;br /&gt;
(The Presidents of the United States of America)&lt;br /&gt;
&lt;br /&gt;
TOTAL NUMBER OF INDIVIDUALS : 2145&lt;br /&gt;
 SURNAME : CLINTON is the studied name (Active-Person).&lt;br /&gt;
 ==&amp;gt; When the number is the lower than twenty, persons are precised with surname, ID gramps and attribut.&lt;br /&gt;
 &lt;br /&gt;
New GROUPS N° : 1 . Number of individuals : 1048. &lt;br /&gt;
 0 Of the individuals bear this name : CLINTON&lt;br /&gt;
 1048 Of the individuals bear this attribute : 0NOATTRIB &lt;br /&gt;
 &lt;br /&gt;
New GROUPS N° : 2 . Number of individuals : 172. &lt;br /&gt;
 0 Of the individuals bear this name : CLINTON&lt;br /&gt;
 172 Of the individuals bear this attribute : 0NOATTRIB &lt;br /&gt;
 &lt;br /&gt;
New GROUPS N° : 3 . Number of individuals : 78. &lt;br /&gt;
 0 Of the individuals bear this name : CLINTON&lt;br /&gt;
 78 Of the individuals bear this attribute : 0NOATTRIB &lt;br /&gt;
 &lt;br /&gt;
New GROUPS N° : 4 . Number of individuals : 77. &lt;br /&gt;
 0 Of the individuals bear this name : CLINTON&lt;br /&gt;
 77 Of the individuals bear this attribute : 0NOATTRIB &lt;br /&gt;
 &lt;br /&gt;
New GROUPS N° : 5 . Number of individuals : 71. &lt;br /&gt;
 0 Of the individuals bear this name : CLINTON&lt;br /&gt;
 71 Of the individuals bear this attribute : 0NOATTRIB &lt;br /&gt;
&lt;br /&gt;
…-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.--....&lt;br /&gt;
 &lt;br /&gt;
New GROUPS N° : 34 . Number of individuals : 6. &lt;br /&gt;
 0 Of the individuals bear this name : CLINTON&lt;br /&gt;
 6 Of the individuals bear this attribute : 0NOATTRIB &lt;br /&gt;
 Jackson, Andrew / I2207 / 0NOATTRIB&lt;br /&gt;
 Robards, Rachel Donelson / I2208 / 0NOATTRIB&lt;br /&gt;
 Jackson, Andrew / I2209 / 0NOATTRIB&lt;br /&gt;
 Hutchinson, Elizabeth / I2210 / 0NOATTRIB&lt;br /&gt;
 Jackson, Hugh / I2211 / 0NOATTRIB&lt;br /&gt;
 Jackson, Robert / I2212 / 0NOATTRIB&lt;br /&gt;
 &lt;br /&gt;
New GROUPS N° : 35 . Number of individuals : 5. &lt;br /&gt;
 0 Of the individuals bear this name : CLINTON&lt;br /&gt;
 5 Of the individuals bear this attribute : 0NOATTRIB &lt;br /&gt;
 FILLMORE, Millard / I2259 / 0NOATTRIB&lt;br /&gt;
 POWERS, Abigail / I2260 / 0NOATTRIB&lt;br /&gt;
 MCINTOSH, Caroline C / I2261 / 0NOATTRIB&lt;br /&gt;
 FILLMORE, Nathaniel / I2262 / 0NOATTRIB&lt;br /&gt;
 MILLARD, Phoebe / I2263 / 0NOATTRIB&lt;br /&gt;
 &lt;br /&gt;
New GROUPS N° : 36 . Number of individuals : 1. &lt;br /&gt;
 0 Of the individuals bear this name : CLINTON&lt;br /&gt;
 1 Of the individuals bear this attribute : 0NOATTRIB &lt;br /&gt;
 Faircloe, Thomas / I262 / 0NOATTRIB&lt;br /&gt;
&lt;br /&gt;
 ========= &amp;gt; BEWARE 2145 PERSONS HAVE a empty &amp;quot;ID&amp;quot; attribut or not attribute&lt;br /&gt;
&lt;br /&gt;
==Limitations:==&lt;br /&gt;
No changes on database.&lt;br /&gt;
The program uses memory for calculations.&lt;br /&gt;
&lt;br /&gt;
==Self-interest==&lt;br /&gt;
If you have multiple databases, join data in one file and test.&lt;br /&gt;
If there is an error, then there is a valid mail at the end of the plugin or in the plugin list.&lt;br /&gt;
&lt;br /&gt;
== Future versions ==&lt;br /&gt;
&lt;br /&gt;
 ==&amp;gt; The oldest event (marriage, date, married couple) by FamilyGroups  (without attribute calculation)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 OTHER PROGRAMS AROUND FAMILYGROUPS :&lt;br /&gt;
 &lt;br /&gt;
    1/ Filter RelatedPersons =&amp;gt; select one FamilyGroup and each related person  ( for Filter ou export)   - soon _ testing&lt;br /&gt;
    .&lt;br /&gt;
    2/ Change Attributes Values  =&amp;gt; Allows all the attributes of a certain name to be renamed to a new name&lt;/div&gt;</summary>
		<author><name>JFC</name></author>
		
	</entry>
	<entry>
		<id>https://ftp.gramps-project.org/wiki/index.php?title=FamilyGroups&amp;diff=15217</id>
		<title>FamilyGroups</title>
		<link rel="alternate" type="text/html" href="https://ftp.gramps-project.org/wiki/index.php?title=FamilyGroups&amp;diff=15217"/>
		<updated>2009-03-30T12:23:49Z</updated>

		<summary type="html">&lt;p&gt;JFC: New page: ==Main== A one-name study is a collection of living person (''address, phone'') and other biographical (''census'') data about persons sharing a particular surname or patronymic name based...&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Main==&lt;br /&gt;
A one-name study is a collection of living person (''address, phone'') and other biographical (''census'') data about persons sharing a particular surname or patronymic name based on the name of one's father, grandfather or an even earlier male ancestor. Some researchers are satisfied to collect information and reconstructed '''lineages'''. By distinct '''branches''', we distinct '''family groups''' which do not appear to have a direct connection. The Data of the different family trees can be manipuled by “FamilyGroups” which distinguish the '''unrelated groups'''.&lt;/div&gt;</summary>
		<author><name>JFC</name></author>
		
	</entry>
	<entry>
		<id>https://ftp.gramps-project.org/wiki/index.php?title=RelatedPersons&amp;diff=15208</id>
		<title>RelatedPersons</title>
		<link rel="alternate" type="text/html" href="https://ftp.gramps-project.org/wiki/index.php?title=RelatedPersons&amp;diff=15208"/>
		<updated>2009-03-29T17:55:59Z</updated>

		<summary type="html">&lt;p&gt;JFC: /* MAIN */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== MAIN ==&lt;br /&gt;
&lt;br /&gt;
 The Data of the different family trees can be manipuled by “FamilyGroups” which distinguish the '''unrelated groups'''.&lt;br /&gt;
  &lt;br /&gt;
 &amp;quot;'''_RelatedPersons'''&amp;quot; is the new General filter  for &amp;quot; Matches people with related home-person &amp;quot;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 On root,&lt;br /&gt;
 .&lt;br /&gt;
 Copy &amp;quot;_RelatedPerson&amp;quot; in gramps/Filters/rules/Person&lt;br /&gt;
 .&lt;br /&gt;
 AND&lt;br /&gt;
 .&lt;br /&gt;
 Modify the &amp;quot;__init__.py&amp;quot; in gramps/Filters/rules/Person&lt;br /&gt;
 .&lt;br /&gt;
 add two lines&lt;br /&gt;
 ..... from _RelatedPersons import RelatedPersons (first party)&lt;br /&gt;
 ..... RelatedPersons,                            (second party)&lt;br /&gt;
 .&lt;br /&gt;
 and test the '''unrelated groups''' for filtering  or exporting&lt;br /&gt;
    ( Matches people with related home-person )&lt;/div&gt;</summary>
		<author><name>JFC</name></author>
		
	</entry>
	<entry>
		<id>https://ftp.gramps-project.org/wiki/index.php?title=RelatedPersons&amp;diff=15207</id>
		<title>RelatedPersons</title>
		<link rel="alternate" type="text/html" href="https://ftp.gramps-project.org/wiki/index.php?title=RelatedPersons&amp;diff=15207"/>
		<updated>2009-03-29T17:55:06Z</updated>

		<summary type="html">&lt;p&gt;JFC: /* MAIN */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== MAIN ==&lt;br /&gt;
&lt;br /&gt;
 The Data of the different family trees can be manipuled by “[[FamilyGroups]]” which distinguish the '''unrelated groups'''.&lt;br /&gt;
  &lt;br /&gt;
 &amp;quot;'''_RelatedPersons'''&amp;quot; is the new General filter  for &amp;quot; Matches people with related home-person &amp;quot;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 On root,&lt;br /&gt;
 .&lt;br /&gt;
 Copy &amp;quot;_RelatedPerson&amp;quot; in gramps/Filters/rules/Person&lt;br /&gt;
 .&lt;br /&gt;
 AND&lt;br /&gt;
 .&lt;br /&gt;
 Modify the &amp;quot;__init__.py&amp;quot; in gramps/Filters/rules/Person&lt;br /&gt;
 .&lt;br /&gt;
 add two lines&lt;br /&gt;
 ..... from _RelatedPersons import RelatedPersons (first party)&lt;br /&gt;
 ..... RelatedPersons,                            (second party)&lt;br /&gt;
 .&lt;br /&gt;
 and test the '''unrelated groups''' for filtering  or exporting&lt;br /&gt;
    ( Matches people with related home-person )&lt;/div&gt;</summary>
		<author><name>JFC</name></author>
		
	</entry>
	<entry>
		<id>https://ftp.gramps-project.org/wiki/index.php?title=Plugins&amp;diff=15206</id>
		<title>Plugins</title>
		<link rel="alternate" type="text/html" href="https://ftp.gramps-project.org/wiki/index.php?title=Plugins&amp;diff=15206"/>
		<updated>2009-03-29T17:52:16Z</updated>

		<summary type="html">&lt;p&gt;JFC: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;5&amp;quot; cellspacing=&amp;quot;0&amp;quot; style=&amp;quot;border-collapse: collapse;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Plugin / Documentation&lt;br /&gt;
! Type&lt;br /&gt;
! Version&lt;br /&gt;
! Description&lt;br /&gt;
! Written for GRAMPS&lt;br /&gt;
! Use&lt;br /&gt;
! Rating (out of 4)&lt;br /&gt;
! Contact&lt;br /&gt;
! Download&lt;br /&gt;
|-&lt;br /&gt;
| [[Check and Repair Tool]]&lt;br /&gt;
| Tool&lt;br /&gt;
| 3.1.2&lt;br /&gt;
| Fixes dates from 3.1.0&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| All&lt;br /&gt;
| 4 Stars&lt;br /&gt;
| [http://www.gramps-project.org/bugs/my_view_page.php Gramps Bugtracker]&lt;br /&gt;
| See [[Check and Repair Tool]] for details.&lt;br /&gt;
|-&lt;br /&gt;
| [[PluginManagerGramplet|Plugin Manager Gramplet]]&lt;br /&gt;
| Gramplet&lt;br /&gt;
| 1.0.0&lt;br /&gt;
| Lists plugins available for GRAMPS&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| All&lt;br /&gt;
| 2 Stars&lt;br /&gt;
| [http://www.gramps-project.org/bugs/my_view_page.php Gramps Bugtracker]&lt;br /&gt;
| [http://gramps.svn.sourceforge.net/viewvc/gramps/branches/gramps31/src/plugins/gramplet/PluginManagerGramplet.py PluginManagerGramplet.py]&lt;br /&gt;
|-&lt;br /&gt;
| [[DeepConnectionsGramplet|Deep Connections Gramplet]]&lt;br /&gt;
| Gramplet&lt;br /&gt;
| 1.0.0&lt;br /&gt;
| Finds deep relationships between home and active people&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| All&lt;br /&gt;
| 3 Stars&lt;br /&gt;
| [http://www.gramps-project.org/bugs/my_view_page.php Gramps Bugtracker]&lt;br /&gt;
| [http://gramps.svn.sourceforge.net/viewvc/gramps/trunk/src/plugins/gramplet/DeepConnections.py DeepConnectionsGramplet.py]&lt;br /&gt;
|-&lt;br /&gt;
| [[DataEntryGramplet|Data Entry Gramplet]]&lt;br /&gt;
| Gramplet&lt;br /&gt;
| 1.0.0&lt;br /&gt;
| Quick Data Entry for People data&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| Expert user&lt;br /&gt;
| 4 Stars&lt;br /&gt;
| [http://www.gramps-project.org/bugs/my_view_page.php Gramps Bugtracker]&lt;br /&gt;
| [http://gramps.svn.sourceforge.net/viewvc/gramps/branches/gramps31/src/plugins/gramplet/DataEntryGramplet.py DataEntryGramplet.py]&lt;br /&gt;
|-&lt;br /&gt;
| [[NoteGramplet|Note Gramplet]]&lt;br /&gt;
| Gramplet&lt;br /&gt;
| 1.0.0&lt;br /&gt;
| Quick Data Entry for Notes&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| Expert user&lt;br /&gt;
| 4 Stars&lt;br /&gt;
| [http://www.gramps-project.org/bugs/my_view_page.php Gramps Bugtracker]&lt;br /&gt;
| [http://gramps.svn.sourceforge.net/viewvc/gramps/branches/gramps31/src/plugins/gramplet/NoteGramplet.py NoteGramplet.py]&lt;br /&gt;
|-&lt;br /&gt;
| [[FaqGramplet|FAQ Gramplet]]&lt;br /&gt;
| Gramplet&lt;br /&gt;
| 1.0.0&lt;br /&gt;
| GRAMPS Frequently Asked Questions&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| Beginner user&lt;br /&gt;
| 0 Stars&lt;br /&gt;
| [http://www.gramps-project.org/bugs/my_view_page.php Gramps Bugtracker]&lt;br /&gt;
| [http://gramps.svn.sourceforge.net/viewvc/gramps/branches/gramps31/src/plugins/gramplet/FaqGramplet.py FaqGramplet.py]&lt;br /&gt;
|-&lt;br /&gt;
| [[HeadlineNewsGramplet|Headline News Gramplet]]&lt;br /&gt;
| Gramplet&lt;br /&gt;
| 1.0.1&lt;br /&gt;
| Shows GRAMPS breaking news, once per hour&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| All&lt;br /&gt;
| 4 Stars&lt;br /&gt;
| [http://www.gramps-project.org/bugs/my_view_page.php Gramps Bugtracker]&lt;br /&gt;
| [http://gramps.svn.sourceforge.net/viewvc/gramps/branches/gramps31/src/plugins/gramplet/HeadlineNewsGramplet.py HeadlineNewsGramplet.py]&lt;br /&gt;
|-&lt;br /&gt;
| [[PythonGramplet|Python Gramplet]]&lt;br /&gt;
| Gramplet&lt;br /&gt;
| 1.0.0&lt;br /&gt;
| Interactive Python Shell&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| Developer&lt;br /&gt;
| 4 Stars&lt;br /&gt;
| [http://www.gramps-project.org/bugs/my_view_page.php Gramps Bugtracker]&lt;br /&gt;
| [http://gramps.svn.sourceforge.net/viewvc/gramps/branches/gramps31/src/plugins/gramplet/PythonGramplet.py PythonGramplet.py]&lt;br /&gt;
|-&lt;br /&gt;
| [[Descendant Count Gramplet]]&lt;br /&gt;
| Gramplet&lt;br /&gt;
| 1.0.0&lt;br /&gt;
| Gives a count of descendants for each person&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| All&lt;br /&gt;
| 4 Stars&lt;br /&gt;
| [mailto:doug.blank@gmail.com]&lt;br /&gt;
| [[Media:DescendantCountGramplet.zip|DescendantCountGramplet.zip]]&lt;br /&gt;
|-&lt;br /&gt;
| [[Gramplets#GUI_Interface|Cairo Clock Gramplet]]&lt;br /&gt;
| Gramplet&lt;br /&gt;
| 1.0.0&lt;br /&gt;
| Example of how to use the Cairo drawing canvas in a gramplet&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| Example&lt;br /&gt;
| 4 Stars&lt;br /&gt;
| [mailto:doug.blank@gmail.com]&lt;br /&gt;
| [http://www.gramps-project.org/wiki/images/f/f4/ClockGramplet.zip ClockGramplet.zip]&lt;br /&gt;
|-&lt;br /&gt;
| [[Place completion tool]]&lt;br /&gt;
| Tool&lt;br /&gt;
| 1.2&lt;br /&gt;
| Work on your places (add latitude, country, ...)&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| All&lt;br /&gt;
| ?&lt;br /&gt;
| see file&lt;br /&gt;
| [http://cage.ugent.be/~bm/varia/placecompletion_1_2.tar.gz placecompletion_1_2.tar.gz]&lt;br /&gt;
|- &lt;br /&gt;
| [[LocationsReport|Locations Report]]&lt;br /&gt;
| Report&lt;br /&gt;
| N/A&lt;br /&gt;
| Lists individuals with their locations. Use to clean up locations.&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| All&lt;br /&gt;
| ?&lt;br /&gt;
| Jerome Rapinat&lt;br /&gt;
| [http://gramps-project.org/wiki/images/f/f7/Locations.gz Locations.py]&lt;br /&gt;
|- &lt;br /&gt;
| [[RepositoriesReport|Repositories Report]]&lt;br /&gt;
| Report&lt;br /&gt;
| N/A&lt;br /&gt;
| List sources related to repositories&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| All&lt;br /&gt;
| ?&lt;br /&gt;
| Jerome Rapinat&lt;br /&gt;
| [http://gramps-project.org/wiki/images/e/e6/RepositoriesReport.gz RepositoriesReport.py]&lt;br /&gt;
|- &lt;br /&gt;
| [[GraphicalReports|Ancestoral, Personal Descendant, and Familial Descendant Reports]]&lt;br /&gt;
| Report&lt;br /&gt;
| 0.4.5 &amp;lt;BR /&amp;gt; very stable but recoding&lt;br /&gt;
| Updated versions of the standard Graphical Ancestor and Descendant reports&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| All&lt;br /&gt;
| ?&lt;br /&gt;
| Craig J. Anderson&lt;br /&gt;
| [http://ander882.110mb.com/files/Graphical.zip Graphical.zip]&lt;br /&gt;
|- &lt;br /&gt;
| [[RelatedPersons]]&lt;br /&gt;
| Filter for Rules/persons&lt;br /&gt;
| 1.0.0&lt;br /&gt;
| People with related home-person&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| All&lt;br /&gt;
| ?&lt;br /&gt;
| [http://www.jfchasse.fr/contact.html Jean-Francois Chassé]&lt;br /&gt;
| [http://www.jfchasse.fr/_RelatedPersons.py.zip _RelatedPersons.py]&lt;br /&gt;
|- &lt;br /&gt;
| [[Groups|Family Groups and/or attributes]]&lt;br /&gt;
| Report&lt;br /&gt;
| 1.0.0&lt;br /&gt;
| Lists FamilyGroups and display Identification Number attributes&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| All&lt;br /&gt;
| ?&lt;br /&gt;
| [http://www.jfchasse.fr/contact.html Jean-Francois Chassé]&lt;br /&gt;
| [http://www.jfchasse.fr/FamilyGroups_1_0.py.zip FamilyGroups_1_0.py]&lt;br /&gt;
|- &lt;br /&gt;
| [[MapSevices|GoogleEarth, Show places with Google Earth]]&lt;br /&gt;
| Map sevice&lt;br /&gt;
| 1.0.0&lt;br /&gt;
| Shows one or more places by creating a kml/kmz file for use by Google Earth&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| All&lt;br /&gt;
| 3 Stars&lt;br /&gt;
| Peter G. Landgren&lt;br /&gt;
| [http://www.gramps-project.org/wiki/images/d/d5/GoogleEarthWriteKML.zip GoogleEarthWriteKML.py]&lt;br /&gt;
|- &lt;br /&gt;
| [[GeoView]]&lt;br /&gt;
| Experimental View&lt;br /&gt;
| NA&lt;br /&gt;
| An extra view in GRAMPS which shows places, events, info of active person, ... embedded in GRAMPS on a map using different backends (OpenStreetMaps, Google Maps, ...)&lt;br /&gt;
| NA&lt;br /&gt;
| Testing&lt;br /&gt;
| NA&lt;br /&gt;
| [http://www.gramps-project.org/bugs/my_view_page.php Gramps Bugtracker]&lt;br /&gt;
| [[GeoView#Why_GeoView_.3F|GeoView]]&lt;br /&gt;
|- &lt;br /&gt;
| [[DenominoViso]]&lt;br /&gt;
| Website&lt;br /&gt;
| 2.0&lt;br /&gt;
| Creates interactive graphical ancestor/descendant tree on a webpage.&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| All&lt;br /&gt;
| 3 Stars&lt;br /&gt;
| Michiel Nauta&lt;br /&gt;
| [http://www.home.versatel.nl/m.d.nauta/DenominoViso.py DenominoViso.py]&lt;br /&gt;
|- &lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>JFC</name></author>
		
	</entry>
	<entry>
		<id>https://ftp.gramps-project.org/wiki/index.php?title=RelatedPersons&amp;diff=15205</id>
		<title>RelatedPersons</title>
		<link rel="alternate" type="text/html" href="https://ftp.gramps-project.org/wiki/index.php?title=RelatedPersons&amp;diff=15205"/>
		<updated>2009-03-29T17:44:46Z</updated>

		<summary type="html">&lt;p&gt;JFC: New page: == MAIN ==   The Data of the different family trees can be manipuled by “FamilyGroups” which distinguish the '''unrelated groups'''.     &amp;quot;'''_RelatedPersons'''&amp;quot; is the new General filt...&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== MAIN ==&lt;br /&gt;
&lt;br /&gt;
 The Data of the different family trees can be manipuled by “FamilyGroups” which distinguish the '''unrelated groups'''.&lt;br /&gt;
  &lt;br /&gt;
 &amp;quot;'''_RelatedPersons'''&amp;quot; is the new General filter  for &amp;quot; Matches people with related home-person &amp;quot;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 On root,&lt;br /&gt;
 .&lt;br /&gt;
 Copy &amp;quot;_RelatedPerson&amp;quot; in gramps/Filters/rules/Person&lt;br /&gt;
 .&lt;br /&gt;
 AND&lt;br /&gt;
 .&lt;br /&gt;
 Modify the &amp;quot;__init__.py&amp;quot; in gramps/Filters/rules/Person&lt;br /&gt;
 .&lt;br /&gt;
 add two lines&lt;br /&gt;
 ..... from _RelatedPersons import RelatedPersons (first party)&lt;br /&gt;
 ..... RelatedPersons,                            (second party)&lt;br /&gt;
 .&lt;br /&gt;
 and test the '''unrelated groups''' for filtering  or exporting&lt;br /&gt;
    ( Matches people with related home-person )&lt;/div&gt;</summary>
		<author><name>JFC</name></author>
		
	</entry>
	<entry>
		<id>https://ftp.gramps-project.org/wiki/index.php?title=Plugins&amp;diff=15032</id>
		<title>Plugins</title>
		<link rel="alternate" type="text/html" href="https://ftp.gramps-project.org/wiki/index.php?title=Plugins&amp;diff=15032"/>
		<updated>2009-03-20T21:41:27Z</updated>

		<summary type="html">&lt;p&gt;JFC: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;5&amp;quot; cellspacing=&amp;quot;0&amp;quot; style=&amp;quot;border-collapse: collapse;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Plugin / Documentation&lt;br /&gt;
! Type&lt;br /&gt;
! Version&lt;br /&gt;
! Description&lt;br /&gt;
! Written for GRAMPS&lt;br /&gt;
! Use&lt;br /&gt;
! Rating (out of 4)&lt;br /&gt;
! Contact&lt;br /&gt;
! Download&lt;br /&gt;
|-&lt;br /&gt;
| [[Check and Repair Tool]]&lt;br /&gt;
| Tool&lt;br /&gt;
| 3.1.2&lt;br /&gt;
| Fixes dates from 3.1.0&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| All&lt;br /&gt;
| 4 Stars&lt;br /&gt;
| [http://www.gramps-project.org/bugs/my_view_page.php Gramps Bugtracker]&lt;br /&gt;
| See [[Check and Repair Tool]] for details.&lt;br /&gt;
|-&lt;br /&gt;
| [[PluginManagerGramplet|Plugin Manager Gramplet]]&lt;br /&gt;
| Gramplet&lt;br /&gt;
| 1.0.0&lt;br /&gt;
| Lists plugins available for GRAMPS&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| All&lt;br /&gt;
| 2 Stars&lt;br /&gt;
| [http://www.gramps-project.org/bugs/my_view_page.php Gramps Bugtracker]&lt;br /&gt;
| [http://gramps.svn.sourceforge.net/viewvc/gramps/branches/gramps31/src/plugins/gramplet/PluginManagerGramplet.py PluginManagerGramplet.py]&lt;br /&gt;
|-&lt;br /&gt;
| [[DeepConnectionsGramplet|Deep Connections Gramplet]]&lt;br /&gt;
| Gramplet&lt;br /&gt;
| 1.0.0&lt;br /&gt;
| Finds deep relationships between home and active people&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| All&lt;br /&gt;
| 3 Stars&lt;br /&gt;
| [http://www.gramps-project.org/bugs/my_view_page.php Gramps Bugtracker]&lt;br /&gt;
| [http://gramps.svn.sourceforge.net/viewvc/gramps/trunk/src/plugins/gramplet/DeepConnections.py DeepConnectionsGramplet.py]&lt;br /&gt;
|-&lt;br /&gt;
| [[DataEntryGramplet|Data Entry Gramplet]]&lt;br /&gt;
| Gramplet&lt;br /&gt;
| 1.0.0&lt;br /&gt;
| Quick Data Entry for People data&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| Expert user&lt;br /&gt;
| 4 Stars&lt;br /&gt;
| [http://www.gramps-project.org/bugs/my_view_page.php Gramps Bugtracker]&lt;br /&gt;
| [http://gramps.svn.sourceforge.net/viewvc/gramps/branches/gramps31/src/plugins/gramplet/DataEntryGramplet.py DataEntryGramplet.py]&lt;br /&gt;
|-&lt;br /&gt;
| [[NoteGramplet|Note Gramplet]]&lt;br /&gt;
| Gramplet&lt;br /&gt;
| 1.0.0&lt;br /&gt;
| Quick Data Entry for Notes&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| Expert user&lt;br /&gt;
| 4 Stars&lt;br /&gt;
| [http://www.gramps-project.org/bugs/my_view_page.php Gramps Bugtracker]&lt;br /&gt;
| [http://gramps.svn.sourceforge.net/viewvc/gramps/branches/gramps31/src/plugins/gramplet/NoteGramplet.py NoteGramplet.py]&lt;br /&gt;
|-&lt;br /&gt;
| [[FaqGramplet|FAQ Gramplet]]&lt;br /&gt;
| Gramplet&lt;br /&gt;
| 1.0.0&lt;br /&gt;
| GRAMPS Frequently Asked Questions&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| Beginner user&lt;br /&gt;
| 0 Stars&lt;br /&gt;
| [http://www.gramps-project.org/bugs/my_view_page.php Gramps Bugtracker]&lt;br /&gt;
| [http://gramps.svn.sourceforge.net/viewvc/gramps/branches/gramps31/src/plugins/gramplet/FaqGramplet.py FaqGramplet.py]&lt;br /&gt;
|-&lt;br /&gt;
| [[HeadlineNewsGramplet|Headline News Gramplet]]&lt;br /&gt;
| Gramplet&lt;br /&gt;
| 1.0.1&lt;br /&gt;
| Shows GRAMPS breaking news, once per hour&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| All&lt;br /&gt;
| 4 Stars&lt;br /&gt;
| [http://www.gramps-project.org/bugs/my_view_page.php Gramps Bugtracker]&lt;br /&gt;
| [http://gramps.svn.sourceforge.net/viewvc/gramps/branches/gramps31/src/plugins/gramplet/HeadlineNewsGramplet.py HeadlineNewsGramplet.py]&lt;br /&gt;
|-&lt;br /&gt;
| [[PythonGramplet|Python Gramplet]]&lt;br /&gt;
| Gramplet&lt;br /&gt;
| 1.0.0&lt;br /&gt;
| Interactive Python Shell&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| Developer&lt;br /&gt;
| 4 Stars&lt;br /&gt;
| [http://www.gramps-project.org/bugs/my_view_page.php Gramps Bugtracker]&lt;br /&gt;
| [http://gramps.svn.sourceforge.net/viewvc/gramps/branches/gramps31/src/plugins/gramplet/PythonGramplet.py PythonGramplet.py]&lt;br /&gt;
|-&lt;br /&gt;
| [[Descendant Count Gramplet]]&lt;br /&gt;
| Gramplet&lt;br /&gt;
| 1.0.0&lt;br /&gt;
| Gives a count of descendants for each person&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| All&lt;br /&gt;
| 4 Stars&lt;br /&gt;
| [mailto:doug.blank@gmail.com]&lt;br /&gt;
| [[Media:DescendantCountGramplet.zip|DescendantCountGramplet.zip]]&lt;br /&gt;
|-&lt;br /&gt;
| [[Gramplets#GUI_Interface|Cairo Clock Gramplet]]&lt;br /&gt;
| Gramplet&lt;br /&gt;
| 1.0.0&lt;br /&gt;
| Example of how to use the Cairo drawing canvas in a gramplet&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| Example&lt;br /&gt;
| 4 Stars&lt;br /&gt;
| [mailto:doug.blank@gmail.com]&lt;br /&gt;
| [http://www.gramps-project.org/wiki/images/f/f4/ClockGramplet.zip ClockGramplet.zip]&lt;br /&gt;
|-&lt;br /&gt;
| [[Place completion tool]]&lt;br /&gt;
| Tool&lt;br /&gt;
| 1.2&lt;br /&gt;
| Work on your places (add latitude, country, ...)&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| All&lt;br /&gt;
| ?&lt;br /&gt;
| see file&lt;br /&gt;
| [http://cage.ugent.be/~bm/varia/placecompletion_1_2.tar.gz placecompletion_1_2.tar.gz]&lt;br /&gt;
|- &lt;br /&gt;
| [[LocationsReport|Locations Report]]&lt;br /&gt;
| Report&lt;br /&gt;
| N/A&lt;br /&gt;
| Lists individuals with their locations. Use to clean up locations.&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| All&lt;br /&gt;
| ?&lt;br /&gt;
| Jerome Rapinat&lt;br /&gt;
| [http://gramps-project.org/wiki/images/f/f7/Locations.gz Locations.py]&lt;br /&gt;
|- &lt;br /&gt;
| [[RepositoriesReport|Repositories Report]]&lt;br /&gt;
| Report&lt;br /&gt;
| N/A&lt;br /&gt;
| List sources related to repositories&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| All&lt;br /&gt;
| ?&lt;br /&gt;
| Jerome Rapinat&lt;br /&gt;
| [http://gramps-project.org/wiki/images/e/e6/RepositoriesReport.gz RepositoriesReport.py]&lt;br /&gt;
|- &lt;br /&gt;
| [[GraphicalReports|Ancestoral, Personal Descendant, and Familial Descendant Reports]]&lt;br /&gt;
| Report&lt;br /&gt;
| 0.4.5 &amp;lt;BR /&amp;gt; very stable but recoding&lt;br /&gt;
| Updated versions of the standard Graphical Ancestor and Descendant reports&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| All&lt;br /&gt;
| ?&lt;br /&gt;
| Craig J. Anderson&lt;br /&gt;
| [http://ander882.110mb.com/files/Graphical.zip Graphical.zip]&lt;br /&gt;
|- &lt;br /&gt;
| [[Groups|Family Groups and/or attributes]]&lt;br /&gt;
| Report&lt;br /&gt;
| 1.0.0&lt;br /&gt;
| Lists FamilyGroups and display Identification Number attributes&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| All&lt;br /&gt;
| ?&lt;br /&gt;
| [http://www.jfchasse.fr/contact.html Jean-Francois Chassé]&lt;br /&gt;
| [http://www.jfchasse.fr/FamilyGroups_1_0.py.zip FamilyGroups_1_0.py]&lt;br /&gt;
|- &lt;br /&gt;
| [[MapSevices|GoogleEarth, Show places with Google Earth]]&lt;br /&gt;
| Map sevice&lt;br /&gt;
| 1.0.0&lt;br /&gt;
| Shows one or more places by creating a kml/kmz file for use by Google Earth&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| All&lt;br /&gt;
| 3 Stars&lt;br /&gt;
| Peter G. Landgren&lt;br /&gt;
| [http://www.gramps-project.org/wiki/images/d/d5/GoogleEarthWriteKML.zip GoogleEarthWriteKML.py]&lt;br /&gt;
|- &lt;br /&gt;
| [[GeoView]]&lt;br /&gt;
| Experimental View&lt;br /&gt;
| NA&lt;br /&gt;
| An extra view in GRAMPS which shows places, events, info of active person, ... embedded in GRAMPS on a map using different backends (OpenStreetMaps, Google Maps, ...)&lt;br /&gt;
| NA&lt;br /&gt;
| Testing&lt;br /&gt;
| NA&lt;br /&gt;
| [http://www.gramps-project.org/bugs/my_view_page.php Gramps Bugtracker]&lt;br /&gt;
| [[GeoView#Why_GeoView_.3F|GeoView]]&lt;br /&gt;
|- &lt;br /&gt;
| [[DenominoViso]]&lt;br /&gt;
| Website&lt;br /&gt;
| 2.0&lt;br /&gt;
| Creates interactive graphical ancestor/descendant tree on a webpage.&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| All&lt;br /&gt;
| 3 Stars&lt;br /&gt;
| Michiel Nauta&lt;br /&gt;
| [http://www.home.versatel.nl/m.d.nauta/DenominoViso.py DenominoViso.py]&lt;br /&gt;
|- &lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>JFC</name></author>
		
	</entry>
	<entry>
		<id>https://ftp.gramps-project.org/wiki/index.php?title=Plugins&amp;diff=14888</id>
		<title>Plugins</title>
		<link rel="alternate" type="text/html" href="https://ftp.gramps-project.org/wiki/index.php?title=Plugins&amp;diff=14888"/>
		<updated>2009-03-13T15:31:37Z</updated>

		<summary type="html">&lt;p&gt;JFC: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;5&amp;quot; cellspacing=&amp;quot;0&amp;quot; style=&amp;quot;border-collapse: collapse;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Plugin / Documentation&lt;br /&gt;
! Type&lt;br /&gt;
! Version&lt;br /&gt;
! Description&lt;br /&gt;
! Written for GRAMPS&lt;br /&gt;
! Use&lt;br /&gt;
! Rating (out of 4)&lt;br /&gt;
! Contact&lt;br /&gt;
! Download&lt;br /&gt;
|-&lt;br /&gt;
| [[Check and Repair Tool]]&lt;br /&gt;
| Tool&lt;br /&gt;
| 3.1.2&lt;br /&gt;
| Fixes dates from 3.1.0&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| All&lt;br /&gt;
| 4 Stars&lt;br /&gt;
| [http://www.gramps-project.org/bugs/my_view_page.php Gramps Bugtracker]&lt;br /&gt;
| See [[Check and Repair Tool]] for details.&lt;br /&gt;
|-&lt;br /&gt;
| [[PluginManagerGramplet|Plugin Manager Gramplet]]&lt;br /&gt;
| Gramplet&lt;br /&gt;
| 1.0.0&lt;br /&gt;
| Lists plugins available for GRAMPS&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| All&lt;br /&gt;
| 2 Stars&lt;br /&gt;
| [http://www.gramps-project.org/bugs/my_view_page.php Gramps Bugtracker]&lt;br /&gt;
| [http://gramps.svn.sourceforge.net/viewvc/gramps/branches/gramps31/src/plugins/gramplet/PluginManagerGramplet.py PluginManagerGramplet.py]&lt;br /&gt;
|-&lt;br /&gt;
| [[DeepConnectionsGramplet|Deep Connections Gramplet]]&lt;br /&gt;
| Gramplet&lt;br /&gt;
| 1.0.0&lt;br /&gt;
| Finds deep relationships between home and active people&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| All&lt;br /&gt;
| 3 Stars&lt;br /&gt;
| [http://www.gramps-project.org/bugs/my_view_page.php Gramps Bugtracker]&lt;br /&gt;
| [http://gramps.svn.sourceforge.net/viewvc/gramps/trunk/src/plugins/gramplet/DeepConnections.py DeepConnectionsGramplet.py]&lt;br /&gt;
|-&lt;br /&gt;
| [[DataEntryGramplet|Data Entry Gramplet]]&lt;br /&gt;
| Gramplet&lt;br /&gt;
| 1.0.0&lt;br /&gt;
| Quick Data Entry for People data&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| Expert user&lt;br /&gt;
| 4 Stars&lt;br /&gt;
| [http://www.gramps-project.org/bugs/my_view_page.php Gramps Bugtracker]&lt;br /&gt;
| [http://gramps.svn.sourceforge.net/viewvc/gramps/branches/gramps31/src/plugins/gramplet/DataEntryGramplet.py DataEntryGramplet.py]&lt;br /&gt;
|-&lt;br /&gt;
| [[NoteGramplet|Note Gramplet]]&lt;br /&gt;
| Gramplet&lt;br /&gt;
| 1.0.0&lt;br /&gt;
| Quick Data Entry for Notes&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| Expert user&lt;br /&gt;
| 4 Stars&lt;br /&gt;
| [http://www.gramps-project.org/bugs/my_view_page.php Gramps Bugtracker]&lt;br /&gt;
| [http://gramps.svn.sourceforge.net/viewvc/gramps/branches/gramps31/src/plugins/gramplet/NoteGramplet.py NoteGramplet.py]&lt;br /&gt;
|-&lt;br /&gt;
| [[FaqGramplet|FAQ Gramplet]]&lt;br /&gt;
| Gramplet&lt;br /&gt;
| 1.0.0&lt;br /&gt;
| GRAMPS Frequently Asked Questions&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| Beginner user&lt;br /&gt;
| 0 Stars&lt;br /&gt;
| [http://www.gramps-project.org/bugs/my_view_page.php Gramps Bugtracker]&lt;br /&gt;
| [http://gramps.svn.sourceforge.net/viewvc/gramps/branches/gramps31/src/plugins/gramplet/FaqGramplet.py FaqGramplet.py]&lt;br /&gt;
|-&lt;br /&gt;
| [[HeadlineNewsGramplet|Headline News Gramplet]]&lt;br /&gt;
| Gramplet&lt;br /&gt;
| 1.0.1&lt;br /&gt;
| Shows GRAMPS breaking news, once per hour&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| All&lt;br /&gt;
| 4 Stars&lt;br /&gt;
| [http://www.gramps-project.org/bugs/my_view_page.php Gramps Bugtracker]&lt;br /&gt;
| [http://gramps.svn.sourceforge.net/viewvc/gramps/branches/gramps31/src/plugins/gramplet/HeadlineNewsGramplet.py HeadlineNewsGramplet.py]&lt;br /&gt;
|-&lt;br /&gt;
| [[PythonGramplet|Python Gramplet]]&lt;br /&gt;
| Gramplet&lt;br /&gt;
| 1.0.0&lt;br /&gt;
| Interactive Python Shell&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| Developer&lt;br /&gt;
| 4 Stars&lt;br /&gt;
| [http://www.gramps-project.org/bugs/my_view_page.php Gramps Bugtracker]&lt;br /&gt;
| [http://gramps.svn.sourceforge.net/viewvc/gramps/branches/gramps31/src/plugins/gramplet/PythonGramplet.py PythonGramplet.py]&lt;br /&gt;
|-&lt;br /&gt;
| [[Descendant Count Gramplet]]&lt;br /&gt;
| Gramplet&lt;br /&gt;
| 1.0.0&lt;br /&gt;
| Gives a count of descendants for each person&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| All&lt;br /&gt;
| 4 Stars&lt;br /&gt;
| [mailto:doug.blank@gmail.com]&lt;br /&gt;
| [[Media:DescendantCountGramplet.zip|DescendantCountGramplet.zip]]&lt;br /&gt;
|-&lt;br /&gt;
| [[Gramplets#GUI_Interface|Cairo Clock Gramplet]]&lt;br /&gt;
| Gramplet&lt;br /&gt;
| 1.0.0&lt;br /&gt;
| Example of how to use the Cairo drawing canvas in a gramplet&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| Example&lt;br /&gt;
| 4 Stars&lt;br /&gt;
| [mailto:doug.blank@gmail.com]&lt;br /&gt;
| [http://www.gramps-project.org/wiki/images/f/f4/ClockGramplet.zip ClockGramplet.zip]&lt;br /&gt;
|-&lt;br /&gt;
| [[Place completion tool]]&lt;br /&gt;
| Tool&lt;br /&gt;
| 1.2&lt;br /&gt;
| Work on your places (add latitude, country, ...)&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| All&lt;br /&gt;
| ?&lt;br /&gt;
| see file&lt;br /&gt;
| [http://cage.ugent.be/~bm/varia/placecompletion_1_2.tar.gz placecompletion_1_2.tar.gz]&lt;br /&gt;
|- &lt;br /&gt;
| [[LocationsReport|Locations Report]]&lt;br /&gt;
| Report&lt;br /&gt;
| N/A&lt;br /&gt;
| Lists individuals with their locations. Use to clean up locations.&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| All&lt;br /&gt;
| ?&lt;br /&gt;
| Jerome Rapinat&lt;br /&gt;
| [http://gramps-project.org/wiki/images/f/f7/Locations.gz Locations.py]&lt;br /&gt;
|- &lt;br /&gt;
| [[RepositoriesReport|Repositories Report]]&lt;br /&gt;
| Report&lt;br /&gt;
| N/A&lt;br /&gt;
| List sources related to repositories&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| All&lt;br /&gt;
| ?&lt;br /&gt;
| Jerome Rapinat&lt;br /&gt;
| [http://gramps-project.org/wiki/images/e/e6/RepositoriesReport.gz RepositoriesReport.py]&lt;br /&gt;
|- &lt;br /&gt;
| [[GraphicalReports|Ancestoral, Personal Descendant, and Familial Descendant Reports]]&lt;br /&gt;
| Report&lt;br /&gt;
| 0.4.5 &amp;lt;BR /&amp;gt; very stable but recoding&lt;br /&gt;
| Updated versions of the standard Graphical Ancestor and Descendant reports&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| All&lt;br /&gt;
| ?&lt;br /&gt;
| Craig J. Anderson&lt;br /&gt;
| [http://ander882.110mb.com/files/Graphical.zip Graphical.zip]&lt;br /&gt;
|- &lt;br /&gt;
| [[MapSevices|GoogleEarth, Show places with Google Earth]]&lt;br /&gt;
| Map sevice&lt;br /&gt;
| 1.0.0&lt;br /&gt;
| Shows one or more places by creating a kml/kmz file for use by Google Earth&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| All&lt;br /&gt;
| 3 Stars&lt;br /&gt;
| Peter G. Landgren&lt;br /&gt;
| [http://www.gramps-project.org/wiki/images/d/d5/GoogleEarthWriteKML.zip GoogleEarthWriteKML.py]&lt;br /&gt;
|- &lt;br /&gt;
| [[Groups|Family Groups and/or attributes]]&lt;br /&gt;
| Report&lt;br /&gt;
| 1.0.0&lt;br /&gt;
| Lists FamilyGroups and display Identification Number attributes&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| All&lt;br /&gt;
| ?&lt;br /&gt;
| [http://www.jfchasse.fr/contact.html Jean-Francois Chassé]&lt;br /&gt;
| soon&lt;br /&gt;
|- &lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>JFC</name></author>
		
	</entry>
	<entry>
		<id>https://ftp.gramps-project.org/wiki/index.php?title=Plugins&amp;diff=14887</id>
		<title>Plugins</title>
		<link rel="alternate" type="text/html" href="https://ftp.gramps-project.org/wiki/index.php?title=Plugins&amp;diff=14887"/>
		<updated>2009-03-13T15:27:17Z</updated>

		<summary type="html">&lt;p&gt;JFC: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;5&amp;quot; cellspacing=&amp;quot;0&amp;quot; style=&amp;quot;border-collapse: collapse;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Plugin / Documentation&lt;br /&gt;
! Type&lt;br /&gt;
! Version&lt;br /&gt;
! Description&lt;br /&gt;
! Written for GRAMPS&lt;br /&gt;
! Use&lt;br /&gt;
! Rating (out of 4)&lt;br /&gt;
! Contact&lt;br /&gt;
! Download&lt;br /&gt;
|-&lt;br /&gt;
| [[Check and Repair Tool]]&lt;br /&gt;
| Tool&lt;br /&gt;
| 3.1.2&lt;br /&gt;
| Fixes dates from 3.1.0&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| All&lt;br /&gt;
| 4 Stars&lt;br /&gt;
| [http://www.gramps-project.org/bugs/my_view_page.php Gramps Bugtracker]&lt;br /&gt;
| See [[Check and Repair Tool]] for details.&lt;br /&gt;
|-&lt;br /&gt;
| [[PluginManagerGramplet|Plugin Manager Gramplet]]&lt;br /&gt;
| Gramplet&lt;br /&gt;
| 1.0.0&lt;br /&gt;
| Lists plugins available for GRAMPS&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| All&lt;br /&gt;
| 2 Stars&lt;br /&gt;
| [http://www.gramps-project.org/bugs/my_view_page.php Gramps Bugtracker]&lt;br /&gt;
| [http://gramps.svn.sourceforge.net/viewvc/gramps/branches/gramps31/src/plugins/gramplet/PluginManagerGramplet.py PluginManagerGramplet.py]&lt;br /&gt;
|-&lt;br /&gt;
| [[DeepConnectionsGramplet|Deep Connections Gramplet]]&lt;br /&gt;
| Gramplet&lt;br /&gt;
| 1.0.0&lt;br /&gt;
| Finds deep relationships between home and active people&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| All&lt;br /&gt;
| 3 Stars&lt;br /&gt;
| [http://www.gramps-project.org/bugs/my_view_page.php Gramps Bugtracker]&lt;br /&gt;
| [http://gramps.svn.sourceforge.net/viewvc/gramps/trunk/src/plugins/gramplet/DeepConnections.py DeepConnectionsGramplet.py]&lt;br /&gt;
|-&lt;br /&gt;
| [[DataEntryGramplet|Data Entry Gramplet]]&lt;br /&gt;
| Gramplet&lt;br /&gt;
| 1.0.0&lt;br /&gt;
| Quick Data Entry for People data&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| Expert user&lt;br /&gt;
| 4 Stars&lt;br /&gt;
| [http://www.gramps-project.org/bugs/my_view_page.php Gramps Bugtracker]&lt;br /&gt;
| [http://gramps.svn.sourceforge.net/viewvc/gramps/branches/gramps31/src/plugins/gramplet/DataEntryGramplet.py DataEntryGramplet.py]&lt;br /&gt;
|-&lt;br /&gt;
| [[NoteGramplet|Note Gramplet]]&lt;br /&gt;
| Gramplet&lt;br /&gt;
| 1.0.0&lt;br /&gt;
| Quick Data Entry for Notes&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| Expert user&lt;br /&gt;
| 4 Stars&lt;br /&gt;
| [http://www.gramps-project.org/bugs/my_view_page.php Gramps Bugtracker]&lt;br /&gt;
| [http://gramps.svn.sourceforge.net/viewvc/gramps/branches/gramps31/src/plugins/gramplet/NoteGramplet.py NoteGramplet.py]&lt;br /&gt;
|-&lt;br /&gt;
| [[FaqGramplet|FAQ Gramplet]]&lt;br /&gt;
| Gramplet&lt;br /&gt;
| 1.0.0&lt;br /&gt;
| GRAMPS Frequently Asked Questions&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| Beginner user&lt;br /&gt;
| 0 Stars&lt;br /&gt;
| [http://www.gramps-project.org/bugs/my_view_page.php Gramps Bugtracker]&lt;br /&gt;
| [http://gramps.svn.sourceforge.net/viewvc/gramps/branches/gramps31/src/plugins/gramplet/FaqGramplet.py FaqGramplet.py]&lt;br /&gt;
|-&lt;br /&gt;
| [[HeadlineNewsGramplet|Headline News Gramplet]]&lt;br /&gt;
| Gramplet&lt;br /&gt;
| 1.0.1&lt;br /&gt;
| Shows GRAMPS breaking news, once per hour&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| All&lt;br /&gt;
| 4 Stars&lt;br /&gt;
| [http://www.gramps-project.org/bugs/my_view_page.php Gramps Bugtracker]&lt;br /&gt;
| [http://gramps.svn.sourceforge.net/viewvc/gramps/branches/gramps31/src/plugins/gramplet/HeadlineNewsGramplet.py HeadlineNewsGramplet.py]&lt;br /&gt;
|-&lt;br /&gt;
| [[PythonGramplet|Python Gramplet]]&lt;br /&gt;
| Gramplet&lt;br /&gt;
| 1.0.0&lt;br /&gt;
| Interactive Python Shell&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| Developer&lt;br /&gt;
| 4 Stars&lt;br /&gt;
| [http://www.gramps-project.org/bugs/my_view_page.php Gramps Bugtracker]&lt;br /&gt;
| [http://gramps.svn.sourceforge.net/viewvc/gramps/branches/gramps31/src/plugins/gramplet/PythonGramplet.py PythonGramplet.py]&lt;br /&gt;
|-&lt;br /&gt;
| [[Descendant Count Gramplet]]&lt;br /&gt;
| Gramplet&lt;br /&gt;
| 1.0.0&lt;br /&gt;
| Gives a count of descendants for each person&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| All&lt;br /&gt;
| 4 Stars&lt;br /&gt;
| [mailto:doug.blank@gmail.com]&lt;br /&gt;
| [[Media:DescendantCountGramplet.zip|DescendantCountGramplet.zip]]&lt;br /&gt;
|-&lt;br /&gt;
| [[Gramplets#GUI_Interface|Cairo Clock Gramplet]]&lt;br /&gt;
| Gramplet&lt;br /&gt;
| 1.0.0&lt;br /&gt;
| Example of how to use the Cairo drawing canvas in a gramplet&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| Example&lt;br /&gt;
| 4 Stars&lt;br /&gt;
| [mailto:doug.blank@gmail.com]&lt;br /&gt;
| [http://www.gramps-project.org/wiki/images/f/f4/ClockGramplet.zip ClockGramplet.zip]&lt;br /&gt;
|-&lt;br /&gt;
| [[Place completion tool]]&lt;br /&gt;
| Tool&lt;br /&gt;
| 1.2&lt;br /&gt;
| Work on your places (add latitude, country, ...)&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| All&lt;br /&gt;
| ?&lt;br /&gt;
| see file&lt;br /&gt;
| [http://cage.ugent.be/~bm/varia/placecompletion_1_2.tar.gz placecompletion_1_2.tar.gz]&lt;br /&gt;
|- &lt;br /&gt;
| [[LocationsReport|Locations Report]]&lt;br /&gt;
| Report&lt;br /&gt;
| N/A&lt;br /&gt;
| Lists individuals with their locations. Use to clean up locations.&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| All&lt;br /&gt;
| ?&lt;br /&gt;
| Jerome Rapinat&lt;br /&gt;
| [http://gramps-project.org/wiki/images/f/f7/Locations.gz Locations.py]&lt;br /&gt;
|- &lt;br /&gt;
| [[RepositoriesReport|Repositories Report]]&lt;br /&gt;
| Report&lt;br /&gt;
| N/A&lt;br /&gt;
| List sources related to repositories&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| All&lt;br /&gt;
| ?&lt;br /&gt;
| Jerome Rapinat&lt;br /&gt;
| [http://gramps-project.org/wiki/images/e/e6/RepositoriesReport.gz RepositoriesReport.py]&lt;br /&gt;
|- &lt;br /&gt;
| [[GraphicalReports|Ancestoral, Personal Descendant, and Familial Descendant Reports]]&lt;br /&gt;
| Report&lt;br /&gt;
| 0.4.5 &amp;lt;BR /&amp;gt; very stable but recoding&lt;br /&gt;
| Updated versions of the standard Graphical Ancestor and Descendant reports&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| All&lt;br /&gt;
| ?&lt;br /&gt;
| Craig J. Anderson&lt;br /&gt;
| [http://ander882.110mb.com/files/Graphical.zip Graphical.zip]&lt;br /&gt;
|- &lt;br /&gt;
| [[MapSevices|GoogleEarth, Show places with Google Earth]]&lt;br /&gt;
| Map sevice&lt;br /&gt;
| 1.0.0&lt;br /&gt;
| Shows one or more places by creating a kml/kmz file for use by Google Earth&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| All&lt;br /&gt;
| 3 Stars&lt;br /&gt;
| Peter G. Landgren&lt;br /&gt;
| [http://www.gramps-project.org/wiki/images/d/d5/GoogleEarthWriteKML.zip GoogleEarthWriteKML.py]&lt;br /&gt;
|- &lt;br /&gt;
| [[Groups|Family Groups and/or attributes]]&lt;br /&gt;
| Report&lt;br /&gt;
| N/A&lt;br /&gt;
| Lists FamilyGroups and display Identification Number attributes&lt;br /&gt;
| 3.1.0&lt;br /&gt;
| All&lt;br /&gt;
| ?&lt;br /&gt;
| [http://www.jfchasse.fr/contact.html Jean-Francois Chassé]&lt;br /&gt;
| soon&lt;br /&gt;
|- &lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>JFC</name></author>
		
	</entry>
</feed>