Extension:Semantic Genealogy
This extension is currently not actively maintained! Although it may still work, any bug reports or feature requests will more than likely be ignored. If you are interested in taking on the task of developing and maintaining this extension, you can request repository ownership. As a courtesy, you may want to contact the author. You should also remove this template and list yourself as maintaining the extension in the page's {{extension}} infobox. |
![]() Release status: unmaintained |
|
---|---|
Implementation | Special page |
Description | Provides the ability to view genealogy trees and export GEDCOM files |
Author(s) | |
Latest version | 0.3.0 (2017-08-11) |
MediaWiki | 1.23+ |
PHP | 5.4+ |
Database changes | No |
License | GNU General Public License 2.0 or later |
Download | README RELEASE-NOTES |
|
|
Translate the Semantic Genealogy extension if it is available at translatewiki.net | |
The Semantic Genealogy extension provides the ability to view genealogy trees and export GEDCOM files.
InstallationEdit
- Download and place the file(s) in a directory called
SemanticGenealogy
in yourextensions/
folder. - Add the following code at the bottom of your
LocalSettings.php
:require_once "$IP/extensions/SemanticGenealogy/SemanticGenealogy.php";
- Configure as required.
- Done – Navigate to Special:Version on your wiki to verify that the extension is successfully installed.
ConfigurationEdit
In your "LocalSettings.php" add e.g. the following statement after the inclusion of this extension:
$wgGenealogicalProperties = [
'givenname' => 'Vorname',
'surname' => 'Nachname',
'nickname' => 'Kosename',
'sex' => 'Geschlecht',
'birthdate' => 'GebDatum',
'birthplace' => 'GebOrt',
'deathdate' => 'TodDatum',
'deathplace' => 'TodOrt',
'father' => 'Vater',
'mother' => 'Mutter'
];
Replace the field values with the appropriate field names in your wiki. (The keywords in the second column probably need to be capitalized, so as to match the properties view of the pages.) The most importing obviously is to define the 'father' and 'mother' relationships correctly.
UsageEdit
Go to special page "Special:FamilyTree", select a person and display either a tree of ancestors or descendants or a relationship to another person.