<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.phpgedview.net/en/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Elliott1961</id>
	<title>PGVWiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.phpgedview.net/en/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Elliott1961"/>
	<link rel="alternate" type="text/html" href="https://wiki.phpgedview.net/en/index.php/Special:Contributions/Elliott1961"/>
	<updated>2026-06-05T23:03:20Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.34.2</generator>
	<entry>
		<id>https://wiki.phpgedview.net/en/index.php?title=Build_a_New_Menu&amp;diff=11254</id>
		<title>Build a New Menu</title>
		<link rel="alternate" type="text/html" href="https://wiki.phpgedview.net/en/index.php?title=Build_a_New_Menu&amp;diff=11254"/>
		<updated>2008-12-06T14:11:01Z</updated>

		<summary type="html">&lt;p&gt;Elliott1961: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Genealogy is what is in your database; the names, facts, and events.  Of course, you can put stories in notes, but sometimes you wish to have separate pages where you can, for example, detail a family history, present images with commentary, or have a links page.  With this tutorial, you will learn how to modify PhpGedView to show a custom menu linking to custom pages with the standard PhpGedView header and footer.&lt;br /&gt;
&lt;br /&gt;
== Add a new Menu ==&lt;br /&gt;
&amp;lt;font color=red&amp;gt;Before you make any changes, please [[How_To:Customize_Themes|save]] the theme &amp;quot;Cloudy&amp;quot; and work only on a renamed copy of it.&amp;lt;/font&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You will find the relevant PHP-code in the file &amp;quot;'''header.html'''&amp;quot;. &amp;lt;br&amp;gt;&lt;br /&gt;
Because every theme has its own menu-system, we will show you the essential changes as an example for the theme &amp;quot;'''Cloudy'''&amp;quot;. &amp;lt;br&amp;gt;&lt;br /&gt;
In my case, I have set the variable for User-may-change-Themes to &amp;quot;no&amp;quot; and Standard-Theme to &amp;quot;Cloudy&amp;quot;.&amp;lt;br&amp;gt;&lt;br /&gt;
The &amp;quot;header.html&amp;quot; for &amp;quot;Cloudy&amp;quot; you will find in the following path: &lt;br /&gt;
&lt;br /&gt;
 /phpGedView/themes/cloudy/header.html&lt;br /&gt;
&lt;br /&gt;
Open the file with an html-editor or with a simple text-editor.&amp;lt;br&amp;gt;&lt;br /&gt;
Search for the first entry like:&lt;br /&gt;
&lt;br /&gt;
 $my_temp_menu= array();&lt;br /&gt;
 &lt;br /&gt;
The following lines build the first menu-point in PGV, shown in the PGV-page by the &amp;quot;Home&amp;quot;-icon.&amp;lt;br/&amp;gt;&lt;br /&gt;
All the stuff from this Home-menu (plus its submenus) is enclosed between &amp;quot;&amp;lt;nowiki&amp;gt;&amp;lt;td&amp;gt;&amp;lt;/nowiki&amp;gt;&amp;quot; and &amp;quot;&amp;lt;nowiki&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/nowiki&amp;gt;&amp;quot; -tags. &amp;lt;br&amp;gt;&lt;br /&gt;
Every next &amp;quot;&amp;lt;nowiki&amp;gt;&amp;lt;td&amp;gt;&amp;lt;/nowiki&amp;gt;...&amp;lt;nowiki&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/nowiki&amp;gt;&amp;quot; -block encloses such a menu-icon with the concerning submenus.&amp;lt;br&amp;gt;&lt;br /&gt;
A dozen menu-items are enclosed in a &amp;quot;&amp;lt;nowiki&amp;gt;&amp;lt;table&amp;gt;&amp;lt;/nowiki&amp;gt;...&amp;lt;nowiki&amp;gt;&amp;lt;/table&amp;gt;&amp;lt;/nowiki&amp;gt;&amp;quot; -tag.&amp;lt;br/&amp;gt;&lt;br /&gt;
The general '''menu-structure''' looks like this:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
 &amp;lt;table&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
       &amp;lt;td&amp;gt;&lt;br /&gt;
          1. menu-item (with all submenu-items)&lt;br /&gt;
       &amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
       &amp;lt;td&amp;gt;&lt;br /&gt;
          2. menu-item (with all submenu-items)&lt;br /&gt;
       &amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
       &amp;lt;td&amp;gt;&lt;br /&gt;
          maybe your own new menu-item (with all submenu-items)&lt;br /&gt;
       &amp;lt;/td&amp;gt;&lt;br /&gt;
     &amp;lt;/tr&amp;gt;&lt;br /&gt;
     &amp;lt;tr&amp;gt;  &lt;br /&gt;
       &amp;lt;td&amp;gt;&lt;br /&gt;
          last menu-item (with all submenu-items)&lt;br /&gt;
       &amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
 &amp;lt;/table&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The code for the '''menu''' and the '''submenus''' looks like this:&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;!-- here starts a menu --&amp;gt;&lt;br /&gt;
     &amp;lt;td valign=&amp;quot;middle&amp;quot; width=&amp;quot;1&amp;quot; &amp;gt;&lt;br /&gt;
         &amp;lt;?php&lt;br /&gt;
             $menu = array();&lt;br /&gt;
             $menu[&amp;quot;label&amp;quot;] = &amp;quot;&amp;lt;font color=green&amp;gt;...............&amp;lt;/font&amp;gt;&amp;quot;;&lt;br /&gt;
             $menu[&amp;quot;labelpos&amp;quot;] = &amp;quot;none&amp;quot;;&lt;br /&gt;
             $menu[&amp;quot;icon&amp;quot;] = &amp;quot;&amp;lt;font color=green&amp;gt;...............&amp;lt;/font&amp;gt;&amp;quot;;&lt;br /&gt;
             $menu[&amp;quot;class&amp;quot;] = &amp;quot;menuitem&amp;quot;;&lt;br /&gt;
             $menu[&amp;quot;hoverclass&amp;quot;] = &amp;quot;menuitem_hover&amp;quot;;&lt;br /&gt;
             $menu[&amp;quot;flyout&amp;quot;] = &amp;quot;down&amp;quot;;&lt;br /&gt;
             $menu[&amp;quot;submenuclass&amp;quot;] = &amp;quot;submenu$ff&amp;quot;;&lt;br /&gt;
             $menu[&amp;quot;items&amp;quot;] = array();&lt;br /&gt;
 &lt;br /&gt;
             $submenu = array();&lt;br /&gt;
             $submenu[&amp;quot;label&amp;quot;] = &amp;quot;&amp;lt;font color=green&amp;gt;...............&amp;lt;/font&amp;gt;&amp;quot;;&lt;br /&gt;
             $submenu[&amp;quot;labelpos&amp;quot;] = &amp;quot;right&amp;quot;;&lt;br /&gt;
             $submenu[&amp;quot;icon&amp;quot;] = &amp;quot;&amp;lt;font color=green&amp;gt;...............&amp;lt;/font&amp;gt;&amp;quot;;&lt;br /&gt;
             $submenu[&amp;quot;link&amp;quot;] = &amp;quot;&amp;lt;font color=green&amp;gt;...............&amp;lt;/font&amp;gt;&amp;quot;;&lt;br /&gt;
             $submenu[&amp;quot;class&amp;quot;] = &amp;quot;submenuitem$ff&amp;quot;;&lt;br /&gt;
             $submenu[&amp;quot;hoverclass&amp;quot;] = &amp;quot;submenuitem_hover$ff&amp;quot;;&lt;br /&gt;
&lt;br /&gt;
             print_menu($menu);&lt;br /&gt;
         ?&amp;gt;&lt;br /&gt;
     &amp;lt;/td&amp;gt;&lt;br /&gt;
 &amp;lt;!-- here ends a menu --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
With &amp;quot;copy and paste&amp;quot; take this code above and put it between two &amp;lt;td&amp;gt;-blocks, where you would place your new menu-item, as shown in the general menu-structure above. &amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Now we will learn how you can change the essental code-lines to do what you want to do. &amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You have the '''$menu'''-block, which builds the upper-icon you will see on the PGV-page&lt;br /&gt;
and the '''$submenu'''-block, which builds the popup-menu with the submenu-entries on the PGV-page.&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You can copy this $submenu-block as many times as you need, there is one block for every submenu-entry.&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The print_menu-line prints the menu-item (including the submenu-items) to the PGV-page.&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Find an meaningful '''label''' for every menu and submenu-entry, for example &amp;quot;my Family&amp;quot; and &amp;quot;where they came from&amp;quot; and write it like this:&lt;br /&gt;
&lt;br /&gt;
             $menu[&amp;quot;label&amp;quot;] = &amp;quot;&amp;lt;font color=green&amp;gt;my Family&amp;lt;/font&amp;gt;&amp;quot;;&lt;br /&gt;
&lt;br /&gt;
             $submenu[&amp;quot;label&amp;quot;] = &amp;quot;&amp;lt;font color=green&amp;gt;where they came from&amp;lt;/font&amp;gt;&amp;quot;;&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Design a '''new menu-icon''' with a drawing-program or you will find an existing one with Google.&amp;lt;br&amp;gt;&amp;lt;br&amp;gt; Store it with a new name for example &amp;quot;newmenuicon.gif&amp;quot; in the following path:&lt;br /&gt;
&lt;br /&gt;
 /phpGedView/themes/cloudy/images/newmenuicon.gif&lt;br /&gt;
&lt;br /&gt;
and call it in the code like this:&lt;br /&gt;
&lt;br /&gt;
             $menu[&amp;quot;icon&amp;quot;] = &amp;quot;&amp;lt;font color=green&amp;gt;themes/cloudy/images/newmenuicon.gif&amp;lt;/font&amp;gt;&amp;quot;;&lt;br /&gt;
&lt;br /&gt;
You can also just use the icon PhpGedView uses for the Welcome Page.&lt;br /&gt;
&lt;br /&gt;
== Open an External Link ==&lt;br /&gt;
&lt;br /&gt;
To open an external link in the '''same browser-window''':&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
            $submenu[&amp;quot;link&amp;quot;] = &amp;quot;http://www.frappr.com&amp;quot;;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
To open an external link in a '''new browser-window''':&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
            $submenu[&amp;quot;link&amp;quot;] = &amp;quot;http://www.frappr.com\&amp;quot; target=\&amp;quot;_blank\&amp;quot;&amp;quot;;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
To open an external link in a '''popup-window''':&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
            $submenu[&amp;quot;link&amp;quot;] = &amp;quot;#\&amp;quot; onclick=\&amp;quot;window.open('http://www.frappr.com','','&lt;br /&gt;
               left=50,top=50,width=600,height=320,resizable=1,scroll bars=1'); \&amp;quot;&amp;quot;;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
left = distance of the windows from left sideborder&amp;lt;br /&amp;gt;&lt;br /&gt;
top = distance of the windows from upper sideborder&amp;lt;br /&amp;gt;&lt;br /&gt;
width = width of the windows&amp;lt;br /&amp;gt;&lt;br /&gt;
height = height of the windows&amp;lt;br /&amp;gt;&lt;br /&gt;
scrollbars = 1 with scrollbars&amp;lt;br /&amp;gt;&lt;br /&gt;
scrollbars = 0 without scrollbars&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Build a new HTML page ==&lt;br /&gt;
Write an HTML (or PHP) page in the usual manner and include all the stories about your family you want to show your users.  Create a &amp;quot;pages&amp;quot; directory in your PhpGedView installation, and place the file here.  For example, save it as http://www.mysite.com/phpgedview/pages/mypage.html.&lt;br /&gt;
&lt;br /&gt;
== Display the HTML page ==&lt;br /&gt;
&amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;I am not a PHP developer and cannot vouch for the security of this method.  Alternately, you can create a separate page containing all the surrounding code for each page you want to make.&amp;lt;/font&amp;gt;&lt;br /&gt;
Create a file named page.php in your PGV base installation directory, containing this text:&lt;br /&gt;
&lt;br /&gt;
    &amp;lt;?php&lt;br /&gt;
    require(&amp;quot;config.php&amp;quot;);&lt;br /&gt;
    print_header(&amp;quot;PhpGedView Page&amp;quot;); ?&amp;gt;&lt;br /&gt;
    include(&amp;quot;pages/&amp;quot;.$_GET[&amp;quot;page&amp;quot;]);&lt;br /&gt;
    print_footer(); &lt;br /&gt;
    ?&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You can then display your pages by going to http://www.mysite.com/phpgedview/page.php?page=mypage.html.  It will be shown with the standard PGV header and footer.  If you want to format all your pages a certain way, like with a block similar to those on the Welcome Page, you can put the code around the include(&amp;quot;pages/&amp;quot;.$_GET[&amp;quot;page&amp;quot;]); line, so you don't have to write it in every html file.&lt;br /&gt;
&lt;br /&gt;
== Examples ==&lt;br /&gt;
&amp;lt;b&amp;gt;PGV-Sites&amp;lt;/b&amp;gt; with new Menu and Stories around&lt;br /&gt;
* [http://www.lau-net.de/baerlocher/phpGedView Example from Markus (Theme &amp;quot;Cloudy&amp;quot;)]&lt;br /&gt;
* [http://www.finison.com Example from Michael (Theme: slightly-modified Myst)]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;CMS-Sites&amp;lt;/b&amp;gt; with PGV inside &lt;br /&gt;
(see also an [[How_to:Integrate_with_CMS|introduction]] of this)&lt;br /&gt;
* [http://www.thelewisfamily.id.au Example from Laurie (Joomla!)]&lt;br /&gt;
* [http://www.zeisberg-laudert.de Example from Bernd (Joomla!)]&lt;br /&gt;
* [http://www.colt49.com/familyhistory Example from Nigelo (HTML, Theme &amp;quot;Wooden&amp;quot;)] &lt;br /&gt;
* [http://www.our-families.info Example from Nigelo (Joomla!)]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
**********&amp;lt;br/&amp;gt;&lt;br /&gt;
For Markus &amp;lt;br/&amp;gt;&lt;br /&gt;
[[How To:Customize Themes|This is a link to How to customise themes]]&amp;lt;br/&amp;gt;&lt;br /&gt;
[[How To:Customize Themes#Tutorials|This is a link to How to customise themes - Tutorials]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[How To:Build a New Menu#Open a HTML-Text|This will take you to another sub heading item]]&amp;lt;br /&amp;gt;&lt;br /&gt;
--[[User:Laurie|Laurie Lewis]] 17:34, 12 May 2006 (EST)&lt;br /&gt;
&lt;br /&gt;
[[Category:How To]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Language links...DO NOT DELETE --&amp;gt;&lt;br /&gt;
[[fr: Comment construire un nouveau menu]]&lt;/div&gt;</summary>
		<author><name>Elliott1961</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.phpgedview.net/en/index.php?title=SOURCE_CITATION&amp;diff=11217</id>
		<title>SOURCE CITATION</title>
		<link rel="alternate" type="text/html" href="https://wiki.phpgedview.net/en/index.php?title=SOURCE_CITATION&amp;diff=11217"/>
		<updated>2008-11-01T20:08:56Z</updated>

		<summary type="html">&lt;p&gt;Elliott1961: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A [[SOURCE CITATION]] is a reference to a [[SOURCE RECORD]] within another record type.  A source record is an actual item which can be found within a library or other repository.  A source citation references this source record, specifying the details of the citation like a chapter, page, or line.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 SOURCE_CITATION: = &lt;br /&gt;
  [  &lt;br /&gt;
  n SOUR @&amp;lt;[[XREF:SOUR]]&amp;gt;@                           {1:1}&lt;br /&gt;
    +1 PAGE &amp;lt;[[WHERE_WITHIN_SOURCE|WHERE_WITHIN_SOURCE]]&amp;gt;                {0:1}&lt;br /&gt;
    +1 EVEN &amp;lt;[[EVENT_TYPE_CITED_FROM|EVENT_TYPE_CITED_FROM]]&amp;gt;            {0:1}&lt;br /&gt;
      +2 ROLE &amp;lt;[[ROLE_IN_EVENT|ROLE_IN_EVENT]]&amp;gt;                          {0:1}&lt;br /&gt;
    +1 DATA                                      {0:1}&lt;br /&gt;
      +2 DATE &amp;lt;[[ENTRY_RECORDING_DATE|ENTRY_RECORDING_DATE]]&amp;gt;            {0:1}&lt;br /&gt;
      +2 TEXT &amp;lt;[[TEXT_FROM_SOURCE|TEXT_FROM_SOURCE]]&amp;gt;                    {0:M}&lt;br /&gt;
        +3 [ CONC | CONT ] &amp;lt;[[TEXT_FROM_SOURCE|TEXT_FROM_SOURCE]]&amp;gt;       {0:M}&lt;br /&gt;
    +1 QUAY &amp;lt;[[CERTAINTY_ASSESSMENT|CERTAINTY_ASSESSMENT]]&amp;gt;              {0:1}&lt;br /&gt;
    +1 &amp;lt;&amp;lt;[[MULTIMEDIA_LINK|MULTIMEDIA_LINK]]&amp;gt;&amp;gt;                     {0:M}&lt;br /&gt;
    +1 &amp;lt;&amp;lt;[[NOTE_STRUCTURE|NOTE_STRUCTURE]]&amp;gt;&amp;gt;                       {0:M}&lt;br /&gt;
&lt;br /&gt;
or on systems using embedded sources (not used in PGV)&lt;br /&gt;
&lt;br /&gt;
  n SOUR &amp;lt;[[SOURCE_DESCRIPTION|SOURCE_DESCRIPTION]]&amp;gt;  {1:1}&lt;br /&gt;
    +1 [ CONC | CONT ] &amp;lt;[[SOURCE_DESCRIPTION|SOURCE_DESCRIPTION]]&amp;gt; {0:M}&lt;br /&gt;
    +1 TEXT &amp;lt;[[TEXT_FROM_SOURCE|TEXT_FROM_SOURCE]]&amp;gt;                {0:M}&lt;br /&gt;
       +2 [CONC | CONT ] &amp;lt;[[TEXT_FROM_SOURCE|TEXT_FROM_SOURCE]]&amp;gt;   {0:M}&lt;br /&gt;
    +1 &amp;lt;&amp;lt;[[NOTE_STRUCTURE|NOTE_STRUCTURE]]&amp;gt;&amp;gt;                       {0:M}&lt;br /&gt;
  ]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:GEDCOM]]&lt;br /&gt;
[[Category: Gedcom Structures]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Language links...DO NOT DELETE --&amp;gt;&lt;br /&gt;
[[fr:CITATION D'UNE SOURCE]]&lt;/div&gt;</summary>
		<author><name>Elliott1961</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.phpgedview.net/en/index.php?title=XREF:FAM&amp;diff=11215</id>
		<title>XREF:FAM</title>
		<link rel="alternate" type="text/html" href="https://wiki.phpgedview.net/en/index.php?title=XREF:FAM&amp;diff=11215"/>
		<updated>2008-10-30T09:45:01Z</updated>

		<summary type="html">&lt;p&gt;Elliott1961: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;An [[XREF:FAM]] is a pointer to, or an unique identifier of, a [[FAM RECORD|family record]], for example ''F123''. In Gedcom it always appears  enclosed in @ symbols, e.g. ''@F123@''&lt;br /&gt;
&lt;br /&gt;
 XREF:FAM &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:GEDCOM]]&lt;br /&gt;
&lt;br /&gt;
[[fr: XREF:FAM]]&lt;/div&gt;</summary>
		<author><name>Elliott1961</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.phpgedview.net/en/index.php?title=CHILD_LINKAGE_STATUS&amp;diff=11214</id>
		<title>CHILD LINKAGE STATUS</title>
		<link rel="alternate" type="text/html" href="https://wiki.phpgedview.net/en/index.php?title=CHILD_LINKAGE_STATUS&amp;diff=11214"/>
		<updated>2008-10-30T09:35:42Z</updated>

		<summary type="html">&lt;p&gt;Elliott1961: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A status code on opinion of the status of a child to family link.&lt;br /&gt;
&lt;br /&gt;
* challenged = Linking is suspect, but the linkage has been neither proven nor disproven.&lt;br /&gt;
* disproven = There has been a claim by some that this child belongs to this family, but the linkage has been disproven.&lt;br /&gt;
* proven = There has been a claim by some that this child does not belongs to this family, but the linkage has been proven.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:GEDCOM]]&lt;br /&gt;
&lt;br /&gt;
[[fr: STATUT DU LIEN FILIAL]]&lt;/div&gt;</summary>
		<author><name>Elliott1961</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.phpgedview.net/en/index.php?title=SPOUSE_TO_FAMILY_LINK&amp;diff=11213</id>
		<title>SPOUSE TO FAMILY LINK</title>
		<link rel="alternate" type="text/html" href="https://wiki.phpgedview.net/en/index.php?title=SPOUSE_TO_FAMILY_LINK&amp;diff=11213"/>
		<updated>2008-10-29T07:12:39Z</updated>

		<summary type="html">&lt;p&gt;Elliott1961: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The Spouse to Family Link Structure links the person to a family in his/her role as spouse, using the &amp;lt;u&amp;gt;FAMS&amp;lt;/u&amp;gt; = &amp;lt;u&amp;gt;FAM&amp;lt;/u&amp;gt;ily as &amp;lt;u&amp;gt;S&amp;lt;/u&amp;gt;pouse tag. See also [[CHILD TO FAMILY LINK]]&lt;br /&gt;
&lt;br /&gt;
 SPOUSE_TO_FAMILY_LINK:=&lt;br /&gt;
   n FAMS @&amp;lt;XREF:FAM&amp;gt;@ {1:1}&lt;br /&gt;
    +1 &amp;lt;&amp;lt;[[NOTE_STRUCTURE]]&amp;gt;&amp;gt; {0:M}&lt;br /&gt;
&lt;br /&gt;
[[Category:GEDCOM]]&lt;br /&gt;
[[Category: Gedcom Structures]]&lt;br /&gt;
&lt;br /&gt;
[[fr: LIEN UNION]]&lt;/div&gt;</summary>
		<author><name>Elliott1961</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.phpgedview.net/en/index.php?title=CHILD_TO_FAMILY_LINK&amp;diff=11208</id>
		<title>CHILD TO FAMILY LINK</title>
		<link rel="alternate" type="text/html" href="https://wiki.phpgedview.net/en/index.php?title=CHILD_TO_FAMILY_LINK&amp;diff=11208"/>
		<updated>2008-10-27T17:10:56Z</updated>

		<summary type="html">&lt;p&gt;Elliott1961: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The Spouse to Family Link Structure links the person to a family in his/her role as child, using the &amp;lt;u&amp;gt;FAMS&amp;lt;/u&amp;gt; = &amp;lt;u&amp;gt;FAM&amp;lt;/u&amp;gt;ily as &amp;lt;u&amp;gt;C&amp;lt;/u&amp;gt;hild tag. The child can be born in the family but also adopted, foster etc. - see [[PEDIGREE_LINKAGE_TYPE]]. See also [[SPOUSE TO FAMILY LINK]]&lt;br /&gt;
&lt;br /&gt;
 CHILD_TO_FAMILY_LINK:=&lt;br /&gt;
   n FAMC @&amp;lt;[[XREF:FAM]]&amp;gt;@ {1:1} &lt;br /&gt;
    +1 PEDI &amp;lt;[[PEDIGREE_LINKAGE_TYPE]]&amp;gt; {0:1}&lt;br /&gt;
    +1 STAT &amp;lt;[[CHILD_LINKAGE_STATUS]]&amp;gt; {0:1}&lt;br /&gt;
    +1 &amp;lt;&amp;lt;[[NOTE_STRUCTURE]]&amp;gt;&amp;gt; {0:M}&lt;br /&gt;
&lt;br /&gt;
[[Category:GEDCOM]]&lt;br /&gt;
[[Category: Gedcom Structures]]&lt;br /&gt;
&lt;br /&gt;
[[fr: LIEN PARENTAL]]&lt;/div&gt;</summary>
		<author><name>Elliott1961</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.phpgedview.net/en/index.php?title=FAM_RECORD&amp;diff=11207</id>
		<title>FAM RECORD</title>
		<link rel="alternate" type="text/html" href="https://wiki.phpgedview.net/en/index.php?title=FAM_RECORD&amp;diff=11207"/>
		<updated>2008-10-26T16:27:35Z</updated>

		<summary type="html">&lt;p&gt;Elliott1961: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The '''FAMily record''' is used to record marriages, common law marriages, and family unions caused by two people becoming the parents of a child. There can be no more than one HUSB/father and one WIFE/mother listed in each FAM_RECORD. If, for example, a man participated in more than one family union, then he would appear in more than one FAM_RECORD. The family record structure assumes that the HUSB/father is male and WIFE/mother is female.  The preferred order of the CHILdren pointers within a FAMily structure is chronological by birth.&lt;br /&gt;
&lt;br /&gt;
 FAM_RECORD: = &lt;br /&gt;
  n @&amp;lt;[[XREF:FAM]]&amp;gt;@   FAM   {1:1}&lt;br /&gt;
    +1 &amp;lt;&amp;lt;[[FAMILY_EVENT_STRUCTURE|FAMILY_EVENT_STRUCTURE]]&amp;gt;&amp;gt;  {0:M}&lt;br /&gt;
      +2 HUSB      {0:1}&lt;br /&gt;
        +3 AGE &amp;lt;[[AGE_AT_EVENT|AGE_AT_EVENT]]&amp;gt;  {1:1}&lt;br /&gt;
      +2 WIFE      {0:1}&lt;br /&gt;
        +3 AGE &amp;lt;[[AGE_AT_EVENT|AGE_AT_EVENT]]&amp;gt;  {1:1}&lt;br /&gt;
    +1 HUSB @&amp;lt;[[XREF:INDI]]&amp;gt;@  {0:1}&lt;br /&gt;
    +1 WIFE @&amp;lt;[[XREF:INDI]]&amp;gt;@  {0:1}&lt;br /&gt;
    +1 CHIL @&amp;lt;[[XREF:INDI]]&amp;gt;@  {0:M}&lt;br /&gt;
    +1 NCHI &amp;lt;[[COUNT_OF_CHILDREN|COUNT_OF_CHILDREN]]&amp;gt;  {0:1}&lt;br /&gt;
    +1 SUBM @&amp;lt;[[XREF:SUBM]]&amp;gt;@  {0:M}&lt;br /&gt;
    +1 &amp;lt;&amp;lt;[[LDS_SPOUSE_SEALING|LDS_SPOUSE_SEALING]]&amp;gt;&amp;gt;  {0:M}&lt;br /&gt;
    +1 REFN &amp;lt;[[USER_REFERENCE_NUMBER|USER_REFERENCE_NUMBER]]&amp;gt;  {0:M}&lt;br /&gt;
      +2 TYPE &amp;lt;[[USER_REFERENCE_TYPE|USER_REFERENCE_TYPE]]&amp;gt;  {0:1}&lt;br /&gt;
    +1 RIN &amp;lt;[[AUTOMATED_RECORD_ID|AUTOMATED_RECORD_ID]]&amp;gt;  {0:1}&lt;br /&gt;
    +1 &amp;lt;&amp;lt;[[CHANGE_DATE|CHANGE_DATE]]&amp;gt;&amp;gt;  {0:1}&lt;br /&gt;
    +1 &amp;lt;&amp;lt;[[NOTE_STRUCTURE|NOTE_STRUCTURE]]&amp;gt;&amp;gt;  {0:M}&lt;br /&gt;
    +1 &amp;lt;&amp;lt;[[SOURCE_CITATION|SOURCE_CITATION]]&amp;gt;&amp;gt;  {0:M}&lt;br /&gt;
    +1 &amp;lt;&amp;lt;[[MULTIMEDIA_LINK|MULTIMEDIA_LINK]]&amp;gt;&amp;gt;  {0:M}&lt;br /&gt;
&lt;br /&gt;
[[Category:GEDCOM]]&lt;br /&gt;
[[Category: Gedcom Structures]]&lt;br /&gt;
&lt;br /&gt;
[[fr: ENREGISTREMENT FAMILLE]]&lt;/div&gt;</summary>
		<author><name>Elliott1961</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.phpgedview.net/en/index.php?title=MULTIMEDIA_RECORD&amp;diff=11206</id>
		<title>MULTIMEDIA RECORD</title>
		<link rel="alternate" type="text/html" href="https://wiki.phpgedview.net/en/index.php?title=MULTIMEDIA_RECORD&amp;diff=11206"/>
		<updated>2008-10-26T16:09:44Z</updated>

		<summary type="html">&lt;p&gt;Elliott1961: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The [[MULTIMEDIA_RECORD]] collects the details for a multimedia file or a collection of multimedia files.&lt;br /&gt;
&lt;br /&gt;
The BLOB context of the multimedia record was removed in version 5.5.1. A reference to a multimedia file was added to the record structure.  The file reference occurs one to many times so that multiple files can be grouped together, each pertaining to the same context. For example, if you wanted to associate a sound clip and a photo, you would reference each multimedia file and indicate the format using the FORM tag subordinate to each file reference.&lt;br /&gt;
&lt;br /&gt;
 MULTIMEDIA_RECORD:= &lt;br /&gt;
 n @XREF:OBJE@ OBJE {1:1} &lt;br /&gt;
  +1 FILE &amp;lt;[[MULTIMEDIA_FILE_REFN|MULTIMEDIA_FILE_REFN]]&amp;gt; {1:M}&lt;br /&gt;
   +2 FORM &amp;lt;[[MULTIMEDIA_FORMAT|MULTIMEDIA_FORMAT]]&amp;gt; {1:1}&lt;br /&gt;
    +3 TYPE &amp;lt;[[SOURCE_MEDIA_TYPE|SOURCE_MEDIA_TYPE]]&amp;gt; {0:1}&lt;br /&gt;
   +2 TITL &amp;lt;[[DESCRIPTIVE_TITLE|DESCRIPTIVE_TITLE]]&amp;gt; {0:1}&lt;br /&gt;
  +1 REFN &amp;lt;[[USER_REFERENCE_NUMBER|USER_REFERENCE_NUMBER]]&amp;gt; {0:M}&lt;br /&gt;
   +2 TYPE &amp;lt;[[USER_REFERENCE_TYPE|USER_REFERENCE_TYPE]]&amp;gt; {0:1}&lt;br /&gt;
  +1 RIN &amp;lt;[[AUTOMATED_RECORD_ID|AUTOMATED_RECORD_ID]]&amp;gt; {0:1}&lt;br /&gt;
  +1 &amp;lt;&amp;lt;[[NOTE_STRUCTURE|NOTE_STRUCTURE]]&amp;gt;&amp;gt; {0:M}&lt;br /&gt;
  +1 &amp;lt;&amp;lt;[[SOURCE_CITATION|SOURCE_CITATION]]&amp;gt;&amp;gt; {0:M}&lt;br /&gt;
  +1 &amp;lt;&amp;lt;[[CHANGE_DATE|CHANGE_DATE]]&amp;gt;&amp;gt; {0:1}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:GEDCOM]]&lt;br /&gt;
[[Category: Gedcom Structures]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Language links...DO NOT DELETE --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[fr:ENREGISTREMENT MULTIMEDIA]&lt;/div&gt;</summary>
		<author><name>Elliott1961</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.phpgedview.net/en/index.php?title=MULTIMEDIA_LINK&amp;diff=11203</id>
		<title>MULTIMEDIA LINK</title>
		<link rel="alternate" type="text/html" href="https://wiki.phpgedview.net/en/index.php?title=MULTIMEDIA_LINK&amp;diff=11203"/>
		<updated>2008-10-25T11:36:37Z</updated>

		<summary type="html">&lt;p&gt;Elliott1961: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The [[MULTIMEDIA LINK]] structure provides a link to a the top level [[MULTIMEDIA_RECORD]] within any other record or substructure. Note that all information is included in the Media Object, no details are added in the link itself. &lt;br /&gt;
&lt;br /&gt;
 MULTIMEDIA_LINK: = &lt;br /&gt;
  n  OBJE @&amp;lt;[[XREF:OBJE]]&amp;gt;@  {1:1}&lt;br /&gt;
&lt;br /&gt;
The alternative (embedded) form is used in some systems, but not in PGV&lt;br /&gt;
&lt;br /&gt;
  n  OBJE           {1:1}&lt;br /&gt;
    +1 FORM &amp;lt;[[MULTIMEDIA_FORMAT|MULTIMEDIA_FORMAT]]&amp;gt;  {1:1}&lt;br /&gt;
    +1 TITL &amp;lt;[[DESCRIPTIVE_TITLE]]&amp;gt;  {0:1}&lt;br /&gt;
    +1 FILE &amp;lt;[[MULTIMEDIA_FILE_REFERENCE]]&amp;gt;  {1:1}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:GEDCOM]]&lt;br /&gt;
[[Category: Gedcom Structures]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Language links...DO NOT DELETE --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[fr: LIEN MULTIMEDIA]]&lt;/div&gt;</summary>
		<author><name>Elliott1961</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.phpgedview.net/en/index.php?title=XREF:SUBM&amp;diff=11199</id>
		<title>XREF:SUBM</title>
		<link rel="alternate" type="text/html" href="https://wiki.phpgedview.net/en/index.php?title=XREF:SUBM&amp;diff=11199"/>
		<updated>2008-10-20T19:45:24Z</updated>

		<summary type="html">&lt;p&gt;Elliott1961: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;An [[XREF:SUBM]] is a pointer to, or an unique identifier of, a [[SUBMITTER RECORD|submitter record]], for example ''U123''. In Gedcom it always appears  enclosed in @ symbols, e.g. ''@U123@''&lt;br /&gt;
&lt;br /&gt;
 [[XREF:SUBM]] &lt;br /&gt;
&lt;br /&gt;
[[Category:GEDCOM]]&lt;br /&gt;
&lt;br /&gt;
[[fr: XREF:SUBM]]&lt;/div&gt;</summary>
		<author><name>Elliott1961</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.phpgedview.net/en/index.php?title=SUBMITTER_RECORD&amp;diff=11196</id>
		<title>SUBMITTER RECORD</title>
		<link rel="alternate" type="text/html" href="https://wiki.phpgedview.net/en/index.php?title=SUBMITTER_RECORD&amp;diff=11196"/>
		<updated>2008-10-19T13:21:27Z</updated>

		<summary type="html">&lt;p&gt;Elliott1961: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The [[SUBMITTER RECORD]] identifies an individual or organization that contributed information contained in the GEDCOM file. &lt;br /&gt;
&lt;br /&gt;
 SUBMITTER_RECORD:=&lt;br /&gt;
   n @&amp;lt;[[XREF:SUBM]]&amp;gt;@ SUBM {1:1}&lt;br /&gt;
    +1 NAME &amp;lt;[[SUBMITTER_NAME]]&amp;gt; {1:1}&lt;br /&gt;
    +1 &amp;lt;&amp;lt;[[ADDRESS_STRUCTURE]]&amp;gt;&amp;gt; {0:1}&lt;br /&gt;
    +1 &amp;lt;&amp;lt;[[MULTIMEDIA_LINK]]&amp;gt;&amp;gt; {0:M} &lt;br /&gt;
    +1 LANG &amp;lt;[[LANGUAGE_PREFERENCE]]&amp;gt; {0:3} &lt;br /&gt;
    +1 RFN &amp;lt;[[SUBMITTER_REGISTERED_RFN]]&amp;gt; {0:1} &lt;br /&gt;
    +1 RIN &amp;lt;[[AUTOMATED_RECORD_ID]]&amp;gt; {0:1} &lt;br /&gt;
    +1 &amp;lt;&amp;lt;[[NOTE_STRUCTURE]]&amp;gt;&amp;gt; {0:M} &lt;br /&gt;
    +1 &amp;lt;&amp;lt;[[CHANGE_DATE]]&amp;gt;&amp;gt; {0:1} &lt;br /&gt;
&lt;br /&gt;
[[Category:GEDCOM]]&lt;br /&gt;
[[Category: Gedcom Structures]]&lt;br /&gt;
&lt;br /&gt;
[[fr: ENREGISTREMENT SOUMETTEUR]]&lt;/div&gt;</summary>
		<author><name>Elliott1961</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.phpgedview.net/en/index.php?title=RECORD&amp;diff=11195</id>
		<title>RECORD</title>
		<link rel="alternate" type="text/html" href="https://wiki.phpgedview.net/en/index.php?title=RECORD&amp;diff=11195"/>
		<updated>2008-10-19T07:18:41Z</updated>

		<summary type="html">&lt;p&gt;Elliott1961: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The [[RECORD]] structure is the most used section of the [[GEDCOM]] file because this is where all the genealogical information is recorded.  There are 7 types of records, but PhpGedView does not support the [[NOTE_RECORD|Note Record]] nor the [[SUBMITTER_RECORD|Submitter Record]]. In addition to one Header and one Trailer the Gedcom file contains nothing but records. The structures within records describe the record content and can reference other records.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 RECORD: = &lt;br /&gt;
 [ &lt;br /&gt;
 n &amp;lt;&amp;lt;[[FAM_RECORD|FAM_RECORD]]&amp;gt;&amp;gt; {1:1} &lt;br /&gt;
 | &lt;br /&gt;
 n &amp;lt;&amp;lt;[[INDIVIDUAL_RECORD|INDIVIDUAL_RECORD]]&amp;gt;&amp;gt; {1:1} &lt;br /&gt;
 | &lt;br /&gt;
 n &amp;lt;&amp;lt;[[MULTIMEDIA_RECORD|MULTIMEDIA_RECORD]]&amp;gt;&amp;gt; {1:M} &lt;br /&gt;
 | &lt;br /&gt;
 n &amp;lt;&amp;lt;[[NOTE_RECORD|NOTE_RECORD]]&amp;gt;&amp;gt; {1:1} &lt;br /&gt;
 | &lt;br /&gt;
 n &amp;lt;&amp;lt;[[REPOSITORY_RECORD|REPOSITORY_RECORD]]&amp;gt;&amp;gt; {1:1} &lt;br /&gt;
 | &lt;br /&gt;
 n &amp;lt;&amp;lt;[[SOURCE_RECORD|SOURCE_RECORD]]&amp;gt;&amp;gt; {1:1} &lt;br /&gt;
 | &lt;br /&gt;
 n &amp;lt;&amp;lt;[[SUBMITTER_RECORD|SUBMITTER_RECORD]]&amp;gt;&amp;gt; {1:1} &lt;br /&gt;
 ]&lt;br /&gt;
&lt;br /&gt;
''See also:''&lt;br /&gt;
[[Gedcom data structure]]&lt;br /&gt;
&lt;br /&gt;
[[Category:GEDCOM]]&lt;br /&gt;
[[Category: Gedcom Structures]]&lt;br /&gt;
&lt;br /&gt;
[[fr: RECORD]]&lt;/div&gt;</summary>
		<author><name>Elliott1961</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.phpgedview.net/en/index.php?title=Category:Gedcom_Structures&amp;diff=11193</id>
		<title>Category:Gedcom Structures</title>
		<link rel="alternate" type="text/html" href="https://wiki.phpgedview.net/en/index.php?title=Category:Gedcom_Structures&amp;diff=11193"/>
		<updated>2008-10-18T20:34:41Z</updated>

		<summary type="html">&lt;p&gt;Elliott1961: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;GEDCOM Standard defines a number of structures used in different combinations, top level structures as well as substructures that can be embedded at different levels.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:GEDCOM]]&lt;br /&gt;
&lt;br /&gt;
[[fr: Catégorie:Structure d'un Gedcom]]&lt;/div&gt;</summary>
		<author><name>Elliott1961</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.phpgedview.net/en/index.php?title=SUBM&amp;diff=11192</id>
		<title>SUBM</title>
		<link rel="alternate" type="text/html" href="https://wiki.phpgedview.net/en/index.php?title=SUBM&amp;diff=11192"/>
		<updated>2008-10-18T20:27:19Z</updated>

		<summary type="html">&lt;p&gt;Elliott1961: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{glossary&lt;br /&gt;
 | meaning = Submitter&lt;br /&gt;
 | description = An individual or organization who contributes genealogical data to a file or transfers it to someone else.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[Category:GEDCOM]]&lt;br /&gt;
&lt;br /&gt;
[[fr: SUBM]]&lt;/div&gt;</summary>
		<author><name>Elliott1961</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.phpgedview.net/en/index.php?title=SUBN&amp;diff=11191</id>
		<title>SUBN</title>
		<link rel="alternate" type="text/html" href="https://wiki.phpgedview.net/en/index.php?title=SUBN&amp;diff=11191"/>
		<updated>2008-10-18T08:06:46Z</updated>

		<summary type="html">&lt;p&gt;Elliott1961: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{glossary&lt;br /&gt;
 | meaning = Submission&lt;br /&gt;
 | description = Pertains to a collection of data issued for processing.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[Category:GEDCOM]]&lt;br /&gt;
&lt;br /&gt;
[[fr: SUBN]]&lt;/div&gt;</summary>
		<author><name>Elliott1961</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.phpgedview.net/en/index.php?title=FAM&amp;diff=11190</id>
		<title>FAM</title>
		<link rel="alternate" type="text/html" href="https://wiki.phpgedview.net/en/index.php?title=FAM&amp;diff=11190"/>
		<updated>2008-10-18T07:50:37Z</updated>

		<summary type="html">&lt;p&gt;Elliott1961: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{glossary&lt;br /&gt;
 | meaning = Family&lt;br /&gt;
 | description = Identifies a legal, common law, or other customary relationship of man and woman and their children, if any, or a family created by virtue of the birth of a child to its biological father and mother.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[Category:GEDCOM]]&lt;br /&gt;
[[Category:GEDCOM tags]]&lt;br /&gt;
&lt;br /&gt;
[[fr: FAM]]&lt;/div&gt;</summary>
		<author><name>Elliott1961</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.phpgedview.net/en/index.php?title=INDI&amp;diff=11189</id>
		<title>INDI</title>
		<link rel="alternate" type="text/html" href="https://wiki.phpgedview.net/en/index.php?title=INDI&amp;diff=11189"/>
		<updated>2008-10-18T07:50:24Z</updated>

		<summary type="html">&lt;p&gt;Elliott1961: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{glossary&lt;br /&gt;
 | meaning = Individual&lt;br /&gt;
 | description = A person.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[Category:GEDCOM]]&lt;br /&gt;
[[Category:GEDCOM tags]]&lt;br /&gt;
&lt;br /&gt;
[[fr: INDI]]&lt;/div&gt;</summary>
		<author><name>Elliott1961</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.phpgedview.net/en/index.php?title=Gedcom_data_structure&amp;diff=11181</id>
		<title>Gedcom data structure</title>
		<link rel="alternate" type="text/html" href="https://wiki.phpgedview.net/en/index.php?title=Gedcom_data_structure&amp;diff=11181"/>
		<updated>2008-10-04T20:54:44Z</updated>

		<summary type="html">&lt;p&gt;Elliott1961: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Although this topic appears rather technical, it is very often helpful in working with genealogy to visualize the basic data structure in the ''Lineage-Linked Gedcom Form'', which is the underlying structure in PGV. The data in Gedcom are confined to Records, which can have sub-elements enclosed in them. The top level records live an independent life, and are referenced in other records. &lt;br /&gt;
&lt;br /&gt;
The best example is an Individual (INDI) record, which describes an individual. Each individual has only a single record, all data and references are saved within. The individual can then be shown as a mother in a family, a child in another, an adopted child in a third family, etc., and each time we deal with the same individual (and a single record). Similarly, Family is a top level record. &lt;br /&gt;
&lt;br /&gt;
==Top level records in Gedcom==&lt;br /&gt;
&lt;br /&gt;
; Individual ([[INDI]])&lt;br /&gt;
: Each person has its own unique record&lt;br /&gt;
;Family ([[FAM]])&lt;br /&gt;
: Family record: family consists of at least one parent, typically two, and can have children in different roles. &lt;br /&gt;
; Multimedia ([[OBJE]])&lt;br /&gt;
: Each time you add a photograph, document, voice recording or other multimedia file, you are creating a Multimedia Object. The object has a file reference, as well as other attributes like Title, Description, Source etc. The Media visible at different locations (by the person, family, source etc) are in fact references to this single object. You can add more references by editing the Media Object. &lt;br /&gt;
;Source ([[SOUR]])&lt;br /&gt;
:Source object contains a description of the source of genealogical data in Gedcom. A book, article, document, email etc. can be a source. While editing individual, family and other records, you always add  Source Citation, quoting the Source record and possibly adding the details. Many citations can point to the same source. &lt;br /&gt;
;Repository ([[REPO]])&lt;br /&gt;
:Repository is a location where one or many sources are located. It can be an archive, library or your home. The repository record describes how to locate the source, would anybody need to reach it. Multiple sources can point to the same repository. &lt;br /&gt;
&lt;br /&gt;
There are four other top level records: '''Note ([[NOTE]])''', '''Submission ([[SUBN]])''', '''Submitter([[SUBM]]) '''and '''Header ([[HEAD]])''', but they do not perform such universal role as those listed above. The Note can be cross-referenced, but in PGV an alternative form is used, embedded in lower level entity. The Submission and Sumbitter play a role only in the file Header to indicate the details in submitting the file to LDS, and are not used in PGV. &lt;br /&gt;
&lt;br /&gt;
While adding the top level records one should always consider, whether the record already exists, and only a reference is needed. In many places an option is presented to either create a new top level record (Multimedia, Source, Repository etc.) or to provide a link to an existing one (with a search function to help). Similarly, an existing person can be linked to a new family (as parent or child) or to an event (as associate) with different roles.&lt;br /&gt;
&lt;br /&gt;
==Lower level elements and structures==&lt;br /&gt;
All other information, dates, facts, addresses, events etc. are entered each time they are needed to describe or complement any of the top level records. In other words, while a Person or Source is unique and described only once in a Gedcom file, the same Location, Residence, School, Fact etc.  will be repeated as many times as needed. This suggess some tediousness in entering the same data many times, but PGV has tools to let you search and select some of them (e.g. places) and to copy and paste others (e.g. events and facts). &lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
*[[:Category:Gedcom Structures|Gedcom Structures]]&lt;br /&gt;
*[[GEDCOM|Introduction to Gedcom]]&lt;br /&gt;
*[[RECORD|Gedcom record structure]]&lt;br /&gt;
*[[Edit raw GEDCOM record]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Users Guide]]&lt;br /&gt;
[[Category:PhpGedView]]&lt;br /&gt;
&lt;br /&gt;
[[fr: Structure des données d'un fichier Gedcom]]&lt;/div&gt;</summary>
		<author><name>Elliott1961</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.phpgedview.net/en/index.php?title=Setting_a_Restriction&amp;diff=11046</id>
		<title>Setting a Restriction</title>
		<link rel="alternate" type="text/html" href="https://wiki.phpgedview.net/en/index.php?title=Setting_a_Restriction&amp;diff=11046"/>
		<updated>2008-07-18T06:11:57Z</updated>

		<summary type="html">&lt;p&gt;Elliott1961: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[PGV]] has extensive privacy settings, which allow the administrator to set detailed rules on who can see which data, living and dead people, persons not related (or distant relations), and more. An administrator [[Privacy File|guide to privacy settings]] gives instructions on this topic. In addition, a privacy settings can be attached to each fact or event. This is especially important if the specific data is sensitive (like ID or Social Security numbers), or the user does not wish for the fact to be visible to all. Instead deleting the fact, one can set appropriate privacy restriction (Gedcom tag [[RESN]]) for this individual fact. Restriction works with the global privacy setting, which can further restrict (but not relax) the restriction. The settings are:&lt;br /&gt;
; None&lt;br /&gt;
: Everybody with editing privileges can edit information, everybody can see if global privacy settings allow it. &lt;br /&gt;
; Do not change&lt;br /&gt;
: Only administrators and Gedcom administrators can edit; no change to visibility. &lt;br /&gt;
; Privacy&lt;br /&gt;
: The information is visible only to the user himself, and to Administrator and Gedcom administrator, and is hidden from everybody else, regardless of their status. Only user (if allowed editing) and admins can edit the information.  &lt;br /&gt;
; Confidential&lt;br /&gt;
: Only administrators can view/edit the information, it is hidden from all other users.&lt;br /&gt;
&lt;br /&gt;
[[Category:Users Guide]]&lt;br /&gt;
[[Category:PhpGedView]]&lt;br /&gt;
&lt;br /&gt;
[[fr: Etablir une restriction]]&lt;/div&gt;</summary>
		<author><name>Elliott1961</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.phpgedview.net/en/index.php?title=Common_Data_Elements&amp;diff=11045</id>
		<title>Common Data Elements</title>
		<link rel="alternate" type="text/html" href="https://wiki.phpgedview.net/en/index.php?title=Common_Data_Elements&amp;diff=11045"/>
		<updated>2008-07-18T06:10:00Z</updated>

		<summary type="html">&lt;p&gt;Elliott1961: Undo revision 11044 by Elliott1961 (Talk)&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This article describes common data elements: fields and structures, that are encountered in creating most [[Facts and Events]] concerning an individual or family. &lt;br /&gt;
&lt;br /&gt;
;Type ([[TYPE]])&lt;br /&gt;
:Type categorizes facts and events. It is mandatory while using generic FACT or EVEN tags, and useful in some other cases. In general Type is not structured, and what you put here depends on context, for example Ordination of a buddhist monk can be ''lay'' or ''priest'' type, and Marriage can be ''religious'' or ''civil'' type, etc. Some common types are pre-defined and presented as choices. &lt;br /&gt;
&lt;br /&gt;
;Date ([[DATE]])&lt;br /&gt;
{{main|Dates}}&lt;br /&gt;
:Dates must be entered in English, even if displayed in other languages, for example ''12 Jan 1824''. The user interface provides a calendar helper and will attempt to guess  common date formats, for example if you enter ''2/17/2003'' or ''17.2.2003'', it will be corectly transformed into 12 FEB 2003. The Date field accepts both points in time and intervals, as well as approximate dates. Read the [[Dates]] article for details.&lt;br /&gt;
&lt;br /&gt;
;Time ([[TIME]])&lt;br /&gt;
:Time complements date when important, for example when describing the Birth event. Enter time as hh:mm:ss, for example ''14:24:15'', using 24 hour clock (military time in the US). You can skip seconds and/or minutes, if unknown. &lt;br /&gt;
&lt;br /&gt;
;Place ([[PLACE]])&lt;br /&gt;
{{main|Place data}}&lt;br /&gt;
:The convention requires that places are entered with fulll details, including the city or village, county, state or other higher level division, and country. This convention not only helps identify the place on a map, but is also used by PGV for some useful things like providing a hierarchy of places, displaying locations on Google maps and more. Read about the places in a separate article on [[Place data|Place data]].&lt;br /&gt;
&lt;br /&gt;
;Address ([[ADDR]])&lt;br /&gt;
: The Address sctructure is used wherever the address information is relevant, for example in describing place of birth, marriage, education, etc. Enter the address just like it would appear on a mailing label, using multiple lines. There is another, structured form of Address, with fields for City, State, Code etc, which will be displayed by PGV if found in Gedcom. Address is also part of a Residence (RESI) fact for individual and family; it is recomended that the Residence fact is used to note the personal/family address information. The Address structure has also tags to indicate  phone, fax, www and email address. PGV is flexible in reading the data, and it will also display the address, phone, email etc. if attached to individual directly (not in Residence structure). &lt;br /&gt;
&lt;br /&gt;
;Agency ([[AGNC]])&lt;br /&gt;
: Agency is used wherever an institution is mentioned in describing a fact ot event. It can be a school or university for an Education fact, the employer for Occupation fact, etc. &lt;br /&gt;
&lt;br /&gt;
;Associate ([[ASSO]])&lt;br /&gt;
: Associate is a person performing a role in the described event. It can be a priest, witness, best man, godmother,  friend, etc., and may be part of the family or not. Keeping with Gedcom structure, this person has her/his own record, and it is only mentioned as associate (with corresponding role) by the event. In order to be so referenced the person must already exist in the database. Adding an unlinked person comes handy here (you need Admin privileges to do it) if the Associate is not part of the family.&lt;br /&gt;
&lt;br /&gt;
;Source Citation ([[SOUR]])&lt;br /&gt;
{{main|Proper use of sources}}&lt;br /&gt;
: If possible, you should always quote the source of the information. The Source Citation structure helps you find and existing Source record or create one, and add details for this citation, including citation details (page in the surce), relevant text and even a Media Object. For details see article on [[Proper use of sources]].&lt;br /&gt;
&lt;br /&gt;
;Note ([[NOTE]])&lt;br /&gt;
: Can be attached to virtually anything - a place to add notes and comments related to the item  in question  (person, fact, object, etc.). &lt;br /&gt;
&lt;br /&gt;
;Multimedia Object ([[OBJE]])&lt;br /&gt;
{{main| Adding / Editing Media}}&lt;br /&gt;
:Media enliven and illustrate your family tree. You can create a new Media Object or make a reference to an existing one. See [[Adding / Editing Media]] for details. &lt;br /&gt;
&lt;br /&gt;
;Restriction ([[RESN]])&lt;br /&gt;
{{main|Setting a Restriction}}&lt;br /&gt;
: In addition to PGV global privacy settings, you can set restrictions on each event adn fact, preventing others from editing or seeing the event. See [[Setting a Restriction]] for details.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Users Guide]]&lt;br /&gt;
[[Category:PhpGedView]]&lt;br /&gt;
&lt;br /&gt;
[[fr:Informations couramment rencontrées]]&lt;/div&gt;</summary>
		<author><name>Elliott1961</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.phpgedview.net/en/index.php?title=RESN&amp;diff=11043</id>
		<title>RESN</title>
		<link rel="alternate" type="text/html" href="https://wiki.phpgedview.net/en/index.php?title=RESN&amp;diff=11043"/>
		<updated>2008-07-18T06:06:05Z</updated>

		<summary type="html">&lt;p&gt;Elliott1961: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{glossary&lt;br /&gt;
 | meaning = Restriction&lt;br /&gt;
 | description = A processing indicator signifying access to information has been denied or otherwise restricted.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[Category:GEDCOM]]&lt;br /&gt;
&lt;br /&gt;
[[fr: RESN]]&lt;/div&gt;</summary>
		<author><name>Elliott1961</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.phpgedview.net/en/index.php?title=NOTE&amp;diff=11042</id>
		<title>NOTE</title>
		<link rel="alternate" type="text/html" href="https://wiki.phpgedview.net/en/index.php?title=NOTE&amp;diff=11042"/>
		<updated>2008-07-17T06:05:45Z</updated>

		<summary type="html">&lt;p&gt;Elliott1961: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{glossary&lt;br /&gt;
 | meaning = Note&lt;br /&gt;
 | description = Additional information provided by the submitter for understanding the enclosing data.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[Category:GEDCOM]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[fr: Note]]&lt;/div&gt;</summary>
		<author><name>Elliott1961</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.phpgedview.net/en/index.php?title=ASSO&amp;diff=11039</id>
		<title>ASSO</title>
		<link rel="alternate" type="text/html" href="https://wiki.phpgedview.net/en/index.php?title=ASSO&amp;diff=11039"/>
		<updated>2008-07-07T05:37:53Z</updated>

		<summary type="html">&lt;p&gt;Elliott1961: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{glossary&lt;br /&gt;
 | meaning = Associates&lt;br /&gt;
 | description = An indicator to link friends, neighbors, relatives, or associates of an individual.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[Category:GEDCOM]]&lt;br /&gt;
[[Category:GEDCOM tags]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Language links...DO NOT DELETE --&amp;gt;&lt;br /&gt;
[[fr:ASSO]]&lt;/div&gt;</summary>
		<author><name>Elliott1961</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.phpgedview.net/en/index.php?title=TYPE&amp;diff=11038</id>
		<title>TYPE</title>
		<link rel="alternate" type="text/html" href="https://wiki.phpgedview.net/en/index.php?title=TYPE&amp;diff=11038"/>
		<updated>2008-07-06T19:31:09Z</updated>

		<summary type="html">&lt;p&gt;Elliott1961: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{glossary&lt;br /&gt;
 | meaning = Type&lt;br /&gt;
 | description = A further qualification to the meaning of the associated superior tag. The value does not have any computer processing reliability. It is more in the form of a short one or two word note that should be displayed any time the associated data is displayed. In PGV it is used to categorize some events, for example Marriage ([[MARR]]) types are:&lt;br /&gt;
:* Religious&lt;br /&gt;
:* Civil&lt;br /&gt;
:* Registered partnership&lt;br /&gt;
:* Unknown&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[Category:GEDCOM]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Language links...DO NOT DELETE --&amp;gt;&lt;br /&gt;
[[fr:TYPE]]&lt;/div&gt;</summary>
		<author><name>Elliott1961</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.phpgedview.net/en/index.php?title=TIME&amp;diff=11037</id>
		<title>TIME</title>
		<link rel="alternate" type="text/html" href="https://wiki.phpgedview.net/en/index.php?title=TIME&amp;diff=11037"/>
		<updated>2008-07-06T19:30:54Z</updated>

		<summary type="html">&lt;p&gt;Elliott1961: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{glossary&lt;br /&gt;
 | meaning = Time&lt;br /&gt;
 | description = A time value in a 24-hour clock format, including hours, minutes, and optional seconds, separated by a colon (:). Fractions of seconds are shown in decimal notation.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[Category:GEDCOM]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Language links...DO NOT DELETE --&amp;gt;&lt;br /&gt;
[[fr:TIME]]&lt;/div&gt;</summary>
		<author><name>Elliott1961</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.phpgedview.net/en/index.php?title=ADDR&amp;diff=11036</id>
		<title>ADDR</title>
		<link rel="alternate" type="text/html" href="https://wiki.phpgedview.net/en/index.php?title=ADDR&amp;diff=11036"/>
		<updated>2008-07-06T19:30:37Z</updated>

		<summary type="html">&lt;p&gt;Elliott1961: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{glossary&lt;br /&gt;
 | meaning = Address&lt;br /&gt;
 | description = The contemporary place, usually required for postal purposes, of an individual, a submitter of information, a repository, a business, a school, or a company.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[Category:GEDCOM]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Language links...DO NOT DELETE --&amp;gt;&lt;br /&gt;
[[fr:ADDR]]&lt;/div&gt;</summary>
		<author><name>Elliott1961</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.phpgedview.net/en/index.php?title=Evaluating_Evidence_Article&amp;diff=11026</id>
		<title>Evaluating Evidence Article</title>
		<link rel="alternate" type="text/html" href="https://wiki.phpgedview.net/en/index.php?title=Evaluating_Evidence_Article&amp;diff=11026"/>
		<updated>2008-07-04T05:49:10Z</updated>

		<summary type="html">&lt;p&gt;Elliott1961: /* The Genealogical Proof Standard: A Five-Step Process */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Evaluating Evidence==&lt;br /&gt;
&lt;br /&gt;
'''Barbara Krasner-Khait asks Elizabeth Shown Mills about the&lt;br /&gt;
best practices for high-quality research.&lt;br /&gt;
'''&lt;br /&gt;
In modern times, when genealogists can access an incredible amount of records through compiled family trees available on the web and on CD, how will you know that information you see will meet the quality standards of genealogical research? Have you taken steps in your own research to cite your sources? Have you made any leaps of faith without documenting how and why you drew your conclusion?&lt;br /&gt;
&lt;br /&gt;
For more than 20 years, Elizabeth Shown Mills has been educating family historians on techniques for proper documentation. Her first article on evidence, entitled “How to Properly Document Your Research Notes”, appeared in the September/October 1979 issue of Everton’s Genealogical Helper. With her husband’s help, she worked out patterns for evaluating evidence, listing 13 guidelines for analyzing evidence and another 13 for documentation, published in Evidence! Citation and Analysis for Family Historian (Genealogical Publishing Co., 1997).&lt;br /&gt;
&lt;br /&gt;
Says Mills, “If we don’t know where something came from, we don’t know its value. We have no way of knowing what to believe or how to evaluate it versus another piece of information.”&lt;br /&gt;
&lt;br /&gt;
===Evidence Defined===&lt;br /&gt;
Evidence is the information we use to reach our conclusions. We start out with “raw” data, analyze it to see how close it comes to reality, how it relates to the problem, and how it relates to the person we’re researching. This process produces evidence — the best information we have that allows us to draw a certain set of conclusions, while screening others out. Tom Jones, Virginia-based professional genealogist and president of the Board of Certification for Genealogists, says, “Typically researchers start with a research question, for example, who was the mother of John Smith, or where was Jane Johnson born. They search for sources and evidence that might shed light on the question, evaluate the evidence and, if the findings meet the Genealogical Proof — come to a conclusion about the answer to the research question.”&lt;br /&gt;
&lt;br /&gt;
===Tie Each Detail to a Source===&lt;br /&gt;
Each bit of information has to carry its own weight. To Mills, the most important criterion is the one she lists first in her “Guidelines for Documentation”: “Any statement of fact that is not common knowledge must carry its own individual statement of source.” She says, “Tiny little facts are crucial to our needs.”&lt;br /&gt;
&lt;br /&gt;
Sources can be original or derivative. And it’s this latter group that can be especially problematic. If a derivative source contains an error, that error can be amplified each time the source is copied. Carefully check citations to determine how close the information is to the original source.&lt;br /&gt;
&lt;br /&gt;
Information can be either primary or secondary. Primary information represents first-hand knowledge of the recorder or the informant. Secondary information is everything else. Let’s say you have an ancestor’s death record. This can be considered a primary source on the physician, because he provided the information himself. The death record is also a secondary source for information on the decedent’s parentage and birth information, since the informant was naturally someone other than the person who died.&lt;br /&gt;
&lt;br /&gt;
Not all sources are created equal. Jones warns, “Sources can be right or wrong and the evidence gleaned from them can be of excellent or poor quality. Analysis of the evidence helps the genealogist determine whether the source is correct or not. Analysis should be very careful, because sources of apparent high quality can be wrong or vice versa.” When you thoroughly analyze the evidence and place it in the context of all the available evidence you have regarding the particular research question you’re trying to answer, you can confidently state your conclusion.&lt;br /&gt;
&lt;br /&gt;
===Assessing An Ancestor’s Identity===&lt;br /&gt;
Three situations may arise in evaluating an ancestor’s identity:&lt;br /&gt;
'''&lt;br /&gt;
Multiple sources agree''' — All available evidence from sources such as death records and marriage records agree, such as indicating an ancestor’s parentage. Fortunately, this situation applies to most cases.&lt;br /&gt;
&lt;br /&gt;
'''Evidence conflicts''' — Evidence from different sources do not agree, making the case more complicated and needing careful evaluation. Says Jones, “I found evidence of four different men as having been the father of my ancestor, Amzi Leach. Evaluating the evidence helped me conclude which of the men was the actual father.”&lt;br /&gt;
&lt;br /&gt;
'''No direct source directly answers the question''' — A thorough search yields no source directly identifying an ancestor or ancestral fact. You can correlate all available evidence and draw a conclusion that meets the Genealogical Proof Standard. Jones says, “This was the case with identifying the parents of a client’s ancestor. While no record identifies the ancestor’s father directly, a combination of marriage, probate, and tax records in combination with an undocumented publication that by itself wouldn’t carry much weight, yielded an incontrovertible conclusion identifying the father.”&lt;br /&gt;
&lt;br /&gt;
As you trace your ancestry, it’s likely you’ll run into the second and third situation at one time or another. I’ve run into the “Evidence conflicts” situation myself in the case of Chaim Ber Dvorkin and his relationship to my great-grandmother, Breina Dvorkin Krasner. Chaim Ber’s parents were Elias Meyer and Chaya according to his 1915 death certificate. Breina’s parents were Hillel and Michla according to her 1937 death certificate. Were Elias Meyer and Hillel Meyer the same person? I’ve evaluated naming traditions (following the eastern European practice of naming after the deceased) and tax records (no vital records exist for their ancestral home in Belarus) and came to the conclusion that Elias Meyer and Hillel Meyer are indeed the same person and father to Chaim Ber and Breina. I have not found enough evidence to draw any conclusions about the connection between mothers Chaya and Michla.&lt;br /&gt;
&lt;br /&gt;
===Negative Evidence===&lt;br /&gt;
“As Sherlock Holmes famously pointed out, the key to a case can be the fact that a dog doesn’t bark,” wrote Mills in her June 2000 NGS Quarterly editorial. We have to know what we didn’t find but maybe should have. Donn Devine, cg, cgi of Wilmington, Delaware adds, “When you have negative evidence, you have to account for it. All too often, evidence conflicts. You need to weigh and evaluate the information. That’s a process that calls for experience.”&lt;br /&gt;
&lt;br /&gt;
One example comes from Jones. He couldn’t find any Overtons in Spotsylvania Country land tax lists, even though deed records showed they owned land. His application of negative evidence resulted in: (1) the conclusion that the surname had evolved recently from Howerton; (2) the organization of seemingly unrelated individuals into family groups; and (3) the identification of earlier generations of the family.&lt;br /&gt;
&lt;br /&gt;
===Importance of Citation===&lt;br /&gt;
I’ve always believed that citation should allow someone else to replicate your research. I’ve relied on this many times to check out some detail in my original sources. Citation also helps to organize what evidence we’ve accumulated. Says Jones, “With many sources bearing on every genealogical question, citation helps the researcher to ‘keep them straight,’ that is, to maintain a record of where each item of information and evidence comes from.”&lt;br /&gt;
&lt;br /&gt;
Source citation helps evaluate the quality of the information used. For instance, a source created in the last few years about a genealogical fact from the 1820s would not seem to have much credibility.&lt;br /&gt;
&lt;br /&gt;
Detailed citation can lead us to additional information. This was the case when a citation led Jones to uncatalogued manuscript material at the Cincinnati Historical Society, far from where his ancestors lived. It held a key to identifying one of his ancestors and even included letters another ancestor had written.&lt;br /&gt;
&lt;br /&gt;
===Question, Question, Question===&lt;br /&gt;
“Don’t be afraid to question everything,” says Mills. “If no source is given, it’s obvious something’s wrong. If it doesn’t seem to hang together, find out why.” It’s all too easy to accept information as a given, without checking out the sources. It’s also helpful to learn the environmental context around your ancestors — migrations, neighbors, economic situation, etc. The amount of available secondary information has skyrocketed with the explosion of the Internet. And a lot of it has no source information. Devine says, “You have to dig deeper and replicate what someone else did. Sometimes you don’t even know where to start. If images are involved, you don’t know it they’ve been altered with a photoediting program.” Adds Jones, “If the Internet is to fulfill its potential as a valuable resource for genealogists, individuals and businesses posting information for genealogists need to provide clear and detailed source citations. Only with such citations will consumers know whether the information is useful or whether it is bunk.”&lt;br /&gt;
&lt;br /&gt;
===Put It On Paper===&lt;br /&gt;
“It’s always good to put your reasoning on paper, especially if you’re dealing with a complicated problem,” says Devine. In addition, he often shares his thinking with fellow genealogists. “Sometimes you can convince yourself, but others say otherwise.” It’s also a good idea to photocopy information whenever possible and cite the source directly on it, so if it’s copied again, the source is there.&lt;br /&gt;
&lt;br /&gt;
Devine also recommends naming the source first, before beginning to write down the information. “Otherwise it’s easy to overlook recording the citation,” he says, “and it’s also the natural way to attribute information: ‘Aunt Minnie told me…’ rather than ‘The foregoing information was provided by Aunt Minnie.’”&lt;br /&gt;
&lt;br /&gt;
Jones agrees and says, “Be extremely careful to note in great detail the source for every scrap of information concerning your ancestors. While it may seem time-consuming to do this, it will save you time in the long run. The detailed source citations will enable you to evaluate and re-evaluate your evidence and come to accurate conclusions without having to search for the sources again and again.”&lt;br /&gt;
&lt;br /&gt;
===Review Your Information===&lt;br /&gt;
I was examining my grandfather’s ship passenger record one day and noticed another passenger on the manifest from the same town. This passenger bore a surname that seemed to be linked to mine. As you gain experience, you can — and should — go back to your sources. You may make additional observations that can aid your research. And citations can make it easier to make the most of the evidence you have. Says Jones, “Typically with thorny problems, genealogists may have to go over the same ground more than once. The citations make it easier to do that.”&lt;br /&gt;
&lt;br /&gt;
So take the time now to cite your sources and continue to do so as you research. Document your conclusions according to the Genealogical Proof Standard. The methodology will help you make the most of your research, while allowing other researchers to understand and replicate your work.&lt;br /&gt;
&lt;br /&gt;
===The Genealogical Proof Standard: A Five-Step Process===&lt;br /&gt;
1. We conduct a reasonably exhaustive search for all information that is or may be pertinent to the identity, relationship, event, or situation in question;&lt;br /&gt;
&lt;br /&gt;
2. We collect and include in our compilation a complete, accurate citation to the source or sources of each item of information we use;&lt;br /&gt;
&lt;br /&gt;
3. We analyze and correlate the collected information to assess its quality as evidence;&lt;br /&gt;
&lt;br /&gt;
4. We resolve any conflicts caused by items of evidence that contradict each other or are contrary to a proposed (hypothetically) solution to the question; and&lt;br /&gt;
&lt;br /&gt;
5. We arrive at a soundly reasoned, coherently written conclusion.&lt;br /&gt;
&lt;br /&gt;
Source: The BCG Standards Manual, Millennium Edition (Ancestry, 2000)&lt;br /&gt;
&lt;br /&gt;
This article originally appeared in the January/February 2001 issue of Family Chronicle.&lt;br /&gt;
Last Updated ( Friday, 11 November 2005 )&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Genealogy|Evaluating Evidence Article]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Language links...DO NOT DELETE --&amp;gt;&lt;br /&gt;
[[fr:Evaluer la fiabilité d'une source]]&lt;/div&gt;</summary>
		<author><name>Elliott1961</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.phpgedview.net/en/index.php?title=QUAY&amp;diff=11010</id>
		<title>QUAY</title>
		<link rel="alternate" type="text/html" href="https://wiki.phpgedview.net/en/index.php?title=QUAY&amp;diff=11010"/>
		<updated>2008-06-07T16:32:52Z</updated>

		<summary type="html">&lt;p&gt;Elliott1961: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{glossary&lt;br /&gt;
 | meaning = Quality of Data&lt;br /&gt;
 | description = An assessment of the certainty of the evidence to support the conclusion drawn from evidence. Values: [0;1;2;3]&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[Category:GEDCOM]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Language links...DO NOT DELETE --&amp;gt;&lt;br /&gt;
[[fr:QUAY]]&lt;/div&gt;</summary>
		<author><name>Elliott1961</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.phpgedview.net/en/index.php?title=PAGE&amp;diff=11008</id>
		<title>PAGE</title>
		<link rel="alternate" type="text/html" href="https://wiki.phpgedview.net/en/index.php?title=PAGE&amp;diff=11008"/>
		<updated>2008-06-07T16:28:12Z</updated>

		<summary type="html">&lt;p&gt;Elliott1961: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{glossary&lt;br /&gt;
 | meaning = Page&lt;br /&gt;
 | description = A number or description to identify where information can be found in a referenced work.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[Category:GEDCOM]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Language links...DO NOT DELETE --&amp;gt;&lt;br /&gt;
[[fr:PAGE]]&lt;/div&gt;</summary>
		<author><name>Elliott1961</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.phpgedview.net/en/index.php?title=NOTE_RECORD&amp;diff=10995</id>
		<title>NOTE RECORD</title>
		<link rel="alternate" type="text/html" href="https://wiki.phpgedview.net/en/index.php?title=NOTE_RECORD&amp;diff=10995"/>
		<updated>2008-05-28T05:40:28Z</updated>

		<summary type="html">&lt;p&gt;Elliott1961: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The Note Record Structure is a top lever entity '''not''' used in PGV. It is a structure with possible uses where notes are aplicable to multiple records or their substructures. In PGV the [[NOTE STRUCTURE]] is always embedded in higher level entity. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 NOTE_RECORD:=&lt;br /&gt;
   n @&amp;lt;[[XREF:NOTE]]&amp;gt;@ NOTE &amp;lt;[[SUBMITTER_TEXT]]&amp;gt; {1:1}&lt;br /&gt;
    +1 [CONC|CONT] &amp;lt;[[SUBMITTER_TEXT]]&amp;gt; {0:M}&lt;br /&gt;
    +1 REFN &amp;lt;[[USER_REFERENCE_NUMBER]]&amp;gt; {0:M}&lt;br /&gt;
     +2 TYPE &amp;lt;[[USER_REFERENCE_TYPE]]&amp;gt; {0:1}&lt;br /&gt;
    +1 RIN &amp;lt;[[AUTOMATED_RECORD_ID]]&amp;gt; {0:1} &lt;br /&gt;
    +1 &amp;lt;&amp;lt;[[SOURCE_CITATION]]&amp;gt;&amp;gt; {0:M} &lt;br /&gt;
    +1 &amp;lt;&amp;lt;[[CHANGE_DATE]]&amp;gt;&amp;gt; {0:1}&lt;br /&gt;
&lt;br /&gt;
[[Category:GEDCOM]]&lt;br /&gt;
[[Category: Gedcom Structures]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Language links...DO NOT DELETE --&amp;gt;&lt;br /&gt;
[[fr: ENREGISTREMENT_NOTE]]&lt;/div&gt;</summary>
		<author><name>Elliott1961</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.phpgedview.net/en/index.php?title=CHANGE_DATE&amp;diff=10994</id>
		<title>CHANGE DATE</title>
		<link rel="alternate" type="text/html" href="https://wiki.phpgedview.net/en/index.php?title=CHANGE_DATE&amp;diff=10994"/>
		<updated>2008-05-26T05:43:35Z</updated>

		<summary type="html">&lt;p&gt;Elliott1961: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The Change Date Structure is intended to record the last change to the record.&lt;br /&gt;
&lt;br /&gt;
 CHANGE_DATE:=&lt;br /&gt;
  n CHAN {1:1}&lt;br /&gt;
   +1 DATE &amp;lt;[[CHANGE_DATE]]&amp;gt; {1:1}&lt;br /&gt;
    +2 TIME &amp;lt;[[TIME_VALUE]]&amp;gt; {0:1}&lt;br /&gt;
   +1 &amp;lt;&amp;lt;[[NOTE_STRUCTURE]]&amp;gt;&amp;gt; {0:M}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:GEDCOM]]&lt;br /&gt;
[[Category: Gedcom Structures]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Language links...DO NOT DELETE --&amp;gt;&lt;br /&gt;
[[fr: DATE MODIFICATION]]&lt;/div&gt;</summary>
		<author><name>Elliott1961</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.phpgedview.net/en/index.php?title=ADDRESS_STRUCTURE&amp;diff=10993</id>
		<title>ADDRESS STRUCTURE</title>
		<link rel="alternate" type="text/html" href="https://wiki.phpgedview.net/en/index.php?title=ADDRESS_STRUCTURE&amp;diff=10993"/>
		<updated>2008-05-25T12:02:19Z</updated>

		<summary type="html">&lt;p&gt;Elliott1961: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The address should be formed as it would appear on a mailing label using the ADDR and the CONT lines, which are required, as the address is not expected to have only one line. The additional, optional tags (ADDR1...CTRY) can be used in systems that have structured Address indexing. &lt;br /&gt;
&lt;br /&gt;
The Address Structure as defined in the GEDCOM 5.5.1 standard, should be used in as substructure of Residence (RESI) event, and well as of other events, not as a ''standalone'' Event:&lt;br /&gt;
&lt;br /&gt;
 ADDRESS_STRUCTURE:=&lt;br /&gt;
 n ADDR &amp;lt;[[ADDRESS_LINE]]&amp;gt;          {1:1} &lt;br /&gt;
  +1 CONT &amp;lt;[[ADDRESS_LINE]]&amp;gt;        {0:3} &lt;br /&gt;
  +1 ADR1 &amp;lt;[[ADDRESS_LINE1]]&amp;gt;       {0:1} &lt;br /&gt;
  +1 ADR2 &amp;lt;[[ADDRESS_LINE2]]&amp;gt;       {0:1} &lt;br /&gt;
  +1 ADR3 &amp;lt;[[ADDRESS_LINE3]]&amp;gt;       {0:1} &lt;br /&gt;
  +1 CITY &amp;lt;[[ADDRESS_CITY]]&amp;gt;        {0:1} &lt;br /&gt;
  +1 STAE &amp;lt;[[ADDRESS_STATE]]&amp;gt;       {0:1}&lt;br /&gt;
  +1 POST &amp;lt;[[ADDRESS_POSTAL_CODE]]&amp;gt; {0:1} &lt;br /&gt;
  +1 CTRY &amp;lt;[[ADDRESS_COUNTRY]]&amp;gt;     {0:1} &lt;br /&gt;
 n PHON &amp;lt;[[PHONE_NUMBER]]&amp;gt;          {0:3} &lt;br /&gt;
 n EMAIL &amp;lt;[[ADDRESS_EMAIL]]&amp;gt;        {0:3} &lt;br /&gt;
 n FAX &amp;lt;[[ADDRESS_FAX]]&amp;gt;            {0:3} &lt;br /&gt;
 n WWW &amp;lt;[[ADDRESS_WEB_PAGE]]&amp;gt;       {0:3} &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:GEDCOM]]&lt;br /&gt;
[[Category: Gedcom Structures]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Language links...DO NOT DELETE --&amp;gt;&lt;br /&gt;
[[fr: STRUCTURE DE L'ADRESSE]]&lt;/div&gt;</summary>
		<author><name>Elliott1961</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.phpgedview.net/en/index.php?title=XREF:REPO&amp;diff=10991</id>
		<title>XREF:REPO</title>
		<link rel="alternate" type="text/html" href="https://wiki.phpgedview.net/en/index.php?title=XREF:REPO&amp;diff=10991"/>
		<updated>2008-05-25T11:54:28Z</updated>

		<summary type="html">&lt;p&gt;Elliott1961: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;An [[XREF:REPO]] is a pointer to, or an unique identifier of, a [[REPOSITORY RECORD|repository record]], for example ''R123''. In Gedcom it always appears  enclosed in @ symbols, e.g. ''@R123@''&lt;br /&gt;
&lt;br /&gt;
 [[XREF:REPO]] &lt;br /&gt;
&lt;br /&gt;
[[Category:GEDCOM]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Language links...DO NOT DELETE --&amp;gt;&lt;br /&gt;
[[fr: XREF:REPO]]&lt;/div&gt;</summary>
		<author><name>Elliott1961</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.phpgedview.net/en/index.php?title=REPOSITORY_RECORD&amp;diff=10990</id>
		<title>REPOSITORY RECORD</title>
		<link rel="alternate" type="text/html" href="https://wiki.phpgedview.net/en/index.php?title=REPOSITORY_RECORD&amp;diff=10990"/>
		<updated>2008-05-25T07:15:07Z</updated>

		<summary type="html">&lt;p&gt;Elliott1961: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The [[REPOSITORY RECORD]] collects the information relating to a location where a source may be found.  This repository could be almost anything, including a library, home, website, or government agency.&lt;br /&gt;
&lt;br /&gt;
 REPOSITORY_RECORD: = &lt;br /&gt;
  n  @&amp;lt;[[XREF:REPO]]&amp;gt;@ REPO  {1:1}&lt;br /&gt;
    +1 NAME &amp;lt;[[NAME_OF_REPOSITORY|NAME_OF_REPOSITORY]]&amp;gt;   {0:1}&lt;br /&gt;
    +1 &amp;lt;&amp;lt;[[ADDRESS_STRUCTURE|ADDRESS_STRUCTURE]]&amp;gt;&amp;gt;  {0:1}&lt;br /&gt;
    +1 &amp;lt;&amp;lt;[[NOTE_STRUCTURE|NOTE_STRUCTURE]]&amp;gt;&amp;gt;  {0:M}&lt;br /&gt;
    +1 REFN &amp;lt;[[USER_REFERENCE_NUMBER|USER_REFERENCE_NUMBER]]&amp;gt;  {0:M}&lt;br /&gt;
      +2 TYPE &amp;lt;[[USER_REFERENCE_TYPE|USER_REFERENCE_TYPE]]&amp;gt;  {0:1}&lt;br /&gt;
    +1 RIN &amp;lt;[[AUTOMATED_RECORD_ID|AUTOMATED_RECORD_ID]]&amp;gt;  {0:1}&lt;br /&gt;
    +1 &amp;lt;&amp;lt;[[CHANGE_DATE|CHANGE_DATE]]&amp;gt;&amp;gt;  {0:1}&lt;br /&gt;
&lt;br /&gt;
[[Category:GEDCOM]]&lt;br /&gt;
[[Category: Gedcom Structures]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Language links...DO NOT DELETE --&amp;gt;&lt;br /&gt;
[[fr: ENREGISTREMENT DU DEPOT D'ARCHIVES]]&lt;/div&gt;</summary>
		<author><name>Elliott1961</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.phpgedview.net/en/index.php?title=SOURCE_REPOSITORY_CITATION&amp;diff=10989</id>
		<title>SOURCE REPOSITORY CITATION</title>
		<link rel="alternate" type="text/html" href="https://wiki.phpgedview.net/en/index.php?title=SOURCE_REPOSITORY_CITATION&amp;diff=10989"/>
		<updated>2008-05-24T21:01:51Z</updated>

		<summary type="html">&lt;p&gt;Elliott1961: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The Source Repository Citation structure is used within a source record to point to the [[REPOSITORY RECORD]], specifying in addition a possible call number or other formal ID of the source within repository. &lt;br /&gt;
&lt;br /&gt;
 SOURCE_REPOSITORY_CITATION:=&lt;br /&gt;
   n REPO [ @XREF:REPO@ | &amp;lt;NULL&amp;gt;] {1:1}&lt;br /&gt;
    +1 &amp;lt;&amp;lt;[[NOTE_STRUCTURE]]&amp;gt;&amp;gt; {0:M} &lt;br /&gt;
    +1 CALN &amp;lt;[[SOURCE_CALL_NUMBER]]&amp;gt; {0:M} &lt;br /&gt;
     +2 MEDI &amp;lt;[[SOURCE_MEDIA_TYPE]]&amp;gt; {0:1} &lt;br /&gt;
&lt;br /&gt;
[[Category:GEDCOM]]&lt;br /&gt;
[[Category: Gedcom Structures]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Language links...DO NOT DELETE --&amp;gt;&lt;br /&gt;
[[fr: CITATION DU DEPOT D'ARCHIVES DE LA SOURCE]]&lt;/div&gt;</summary>
		<author><name>Elliott1961</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.phpgedview.net/en/index.php?title=NOTE_STRUCTURE&amp;diff=10988</id>
		<title>NOTE STRUCTURE</title>
		<link rel="alternate" type="text/html" href="https://wiki.phpgedview.net/en/index.php?title=NOTE_STRUCTURE&amp;diff=10988"/>
		<updated>2008-05-19T05:42:40Z</updated>

		<summary type="html">&lt;p&gt;Elliott1961: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A NOTE_STRUCTURE is a free form field for adding any comments or notes on a piece of data in the GEDCOM file.  There are two possible formats for this structure:&lt;br /&gt;
* embedded - the entire note structure is embedded within the piece of data it supports and 'n' is one higher than the level of the supported data.&lt;br /&gt;
* linked - the subrecord is merely a link to a [[NOTE_RECORD]], which is like an embedded NOTE_STRUCTURE but stands alone at level zero.  &lt;br /&gt;
PhpGedView uses the embedded style exclusively.  On import of a linked style, PhpGedView will .....&lt;br /&gt;
&lt;br /&gt;
 NOTE_STRUCTURE:= &lt;br /&gt;
  [ &lt;br /&gt;
   n NOTE @&amp;lt;[[XREF:NOTE]]&amp;gt;@ {1:1}                          (linked)&lt;br /&gt;
   | &lt;br /&gt;
   n NOTE [&amp;lt;[[SUBMITTER_TEXT|SUBMITTER_TEXT]]&amp;gt; | &amp;lt;NULL&amp;gt;] {1:1}       (embedded)&lt;br /&gt;
    +1 [CONC|CONT] &amp;lt;[[SUBMITTER_TEXT|SUBMITTER_TEXT]]&amp;gt; {0:M} &lt;br /&gt;
  ] &lt;br /&gt;
&lt;br /&gt;
[[Category:GEDCOM]]&lt;br /&gt;
[[Category: Gedcom Structures]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Language links...DO NOT DELETE --&amp;gt;&lt;br /&gt;
[[fr: NOTE_STRUCTURE]]&lt;/div&gt;</summary>
		<author><name>Elliott1961</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.phpgedview.net/en/index.php?title=AGNC&amp;diff=10985</id>
		<title>AGNC</title>
		<link rel="alternate" type="text/html" href="https://wiki.phpgedview.net/en/index.php?title=AGNC&amp;diff=10985"/>
		<updated>2008-05-18T07:49:16Z</updated>

		<summary type="html">&lt;p&gt;Elliott1961: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{glossary&lt;br /&gt;
 | meaning = Agency&lt;br /&gt;
 | description = The institution or individual having authority and/or responsibility to manage or govern.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[Category:GEDCOM]]&lt;br /&gt;
[[Category:GEDCOM tags]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Language links...DO NOT DELETE --&amp;gt;&lt;br /&gt;
[[fr: AGNC]]&lt;/div&gt;</summary>
		<author><name>Elliott1961</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.phpgedview.net/en/index.php?title=PLAC&amp;diff=10984</id>
		<title>PLAC</title>
		<link rel="alternate" type="text/html" href="https://wiki.phpgedview.net/en/index.php?title=PLAC&amp;diff=10984"/>
		<updated>2008-05-17T13:46:05Z</updated>

		<summary type="html">&lt;p&gt;Elliott1961: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{glossary&lt;br /&gt;
 | meaning = Place&lt;br /&gt;
 | description = A jurisdictional name to identify the place or location of an event.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[Category:GEDCOM]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Language links...DO NOT DELETE --&amp;gt;&lt;br /&gt;
[[fr: PLAC]]&lt;/div&gt;</summary>
		<author><name>Elliott1961</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.phpgedview.net/en/index.php?title=SOURCE_RECORD&amp;diff=10983</id>
		<title>SOURCE RECORD</title>
		<link rel="alternate" type="text/html" href="https://wiki.phpgedview.net/en/index.php?title=SOURCE_RECORD&amp;diff=10983"/>
		<updated>2008-05-17T13:45:57Z</updated>

		<summary type="html">&lt;p&gt;Elliott1961: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The [[SOURCE RECORD]] collects information about something that provides evidence for information in the [[GEDCOM]] file.  This item could be a newspaper, magazine, microfilm, letter or even a phone conversation.  It's important to add as much information as possible to this record to allow other researches to locate your sources and verify your information.&lt;br /&gt;
&lt;br /&gt;
 SOURCE_RECORD: = &lt;br /&gt;
  n  @&amp;lt;[[XREF:SOUR]]&amp;gt;@ [[SOUR]]  {1:1}&lt;br /&gt;
    +1 [[DATA]]  {0:1}&lt;br /&gt;
      +2 [[EVEN]] &amp;lt;[[EVENTS_RECORDED|EVENTS_RECORDED]]&amp;gt;  {0:M}&lt;br /&gt;
        +3 [[DATE]] &amp;lt;[[DATE_PERIOD|DATE_PERIOD]]&amp;gt;  {0:1}&lt;br /&gt;
        +3 [[PLAC]] &amp;lt;[[SOURCE_JURISDICTION_PLACE|SOURCE_JURISDICTION_PLACE]]&amp;gt;  {0:1}&lt;br /&gt;
      +2 [[AGNC]] &amp;lt;[[RESPONSIBLE_AGENCY|RESPONSIBLE_AGENCY]]&amp;gt;  {0:1}&lt;br /&gt;
      +2 &amp;lt;&amp;lt;[[NOTE_STRUCTURE]]&amp;gt;&amp;gt;  {0:M}&lt;br /&gt;
    +1 [[AUTH]] &amp;lt;[[SOURCE_ORIGINATOR|SOURCE_ORIGINATOR]]&amp;gt;  {0:1}&lt;br /&gt;
      +2 &amp;lt;nowiki&amp;gt;[&amp;lt;/nowiki&amp;gt;[[CONT]]|[[CONC]]&amp;lt;nowiki&amp;gt;]&amp;lt;/nowiki&amp;gt; &amp;lt;[[SOURCE_ORIGINATOR|SOURCE_ORIGINATOR]]&amp;gt;  {0:M}&lt;br /&gt;
    +1 [[TITL]] &amp;lt;[[SOURCE_DESCRIPTIVE_TITLE|SOURCE_DESCRIPTIVE_TITLE]]&amp;gt;  {0:1}&lt;br /&gt;
      +2 &amp;lt;nowiki&amp;gt;[&amp;lt;/nowiki&amp;gt;[[CONT]]|[[CONC]]&amp;lt;nowiki&amp;gt;]&amp;lt;/nowiki&amp;gt; &amp;lt;[[SOURCE_DESCRIPTIVE_TITLE|SOURCE_DESCRIPTIVE_TITLE]]&amp;gt;  {0:M}&lt;br /&gt;
    +1 [[ABBR]] &amp;lt;[[SOURCE_FILED_BY_ENTRY|SOURCE_FILED_BY_ENTRY]]&amp;gt;  {0:1}&lt;br /&gt;
    +1 [[PUBL]] &amp;lt;[[SOURCE_PUBLICATION_FACTS|SOURCE_PUBLICATION_FACTS]]&amp;gt;  {0:1}&lt;br /&gt;
      +2 &amp;lt;nowiki&amp;gt;[&amp;lt;/nowiki&amp;gt;[[CONT]]|[[CONC]]&amp;lt;nowiki&amp;gt;]&amp;lt;/nowiki&amp;gt; &amp;lt;[[SOURCE_PUBLICATION_FACTS|SOURCE_PUBLICATION_FACTS]]&amp;gt;  {0:M}&lt;br /&gt;
    +1 [[TEXT]] &amp;lt;[[TEXT_FROM_SOURCE|TEXT_FROM_SOURCE]]&amp;gt;  {0:1}&lt;br /&gt;
      +2 &amp;lt;nowiki&amp;gt;[&amp;lt;/nowiki&amp;gt;[[CONT]]|[[CONC]]&amp;lt;nowiki&amp;gt;]&amp;lt;/nowiki&amp;gt; &amp;lt;[[TEXT_FROM_SOURCE|TEXT_FROM_SOURCE]]&amp;gt;  {0:M}&lt;br /&gt;
    +1 &amp;lt;&amp;lt;[[SOURCE_REPOSITORY_CITATION|SOURCE_REPOSITORY_CITATION]]&amp;gt;&amp;gt;  {0:1}&lt;br /&gt;
    +1 &amp;lt;&amp;lt;[[MULTIMEDIA_LINK|MULTIMEDIA_LINK]]&amp;gt;&amp;gt;  {0:M}&lt;br /&gt;
    +1 &amp;lt;&amp;lt;[[NOTE_STRUCTURE|NOTE_STRUCTURE]]&amp;gt;&amp;gt;  {0:M}&lt;br /&gt;
    +1 [[REFN]] &amp;lt;[[USER_REFERENCE_NUMBER|USER_REFERENCE_NUMBER]]&amp;gt;  {0:M}&lt;br /&gt;
      +2 [[TYPE]] &amp;lt;[[USER_REFERENCE_TYPE|USER_REFERENCE_TYPE]]&amp;gt;  {0:1}&lt;br /&gt;
    +1 [[RIN]] &amp;lt;[[AUTOMATED_RECORD_ID|AUTOMATED_RECORD_ID]]&amp;gt;  {0:1}&lt;br /&gt;
    +1 &amp;lt;&amp;lt;[[CHANGE_DATE|CHANGE_DATE]]&amp;gt;&amp;gt;  {0:1}&lt;br /&gt;
&lt;br /&gt;
[[Category:GEDCOM]]&lt;br /&gt;
[[Category: Gedcom Structures]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Language links...DO NOT DELETE --&amp;gt;&lt;br /&gt;
[[fr: Enregistrement d'une source]]&lt;/div&gt;</summary>
		<author><name>Elliott1961</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.phpgedview.net/en/index.php?title=DATE&amp;diff=10982</id>
		<title>DATE</title>
		<link rel="alternate" type="text/html" href="https://wiki.phpgedview.net/en/index.php?title=DATE&amp;diff=10982"/>
		<updated>2008-05-17T10:21:13Z</updated>

		<summary type="html">&lt;p&gt;Elliott1961: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{glossary&lt;br /&gt;
 | meaning = Date&lt;br /&gt;
 | description = The time of an event in a calendar format.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[Category:GEDCOM]]&lt;br /&gt;
[[Category:GEDCOM tags]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Language links...DO NOT DELETE --&amp;gt;&lt;br /&gt;
[[fr: DATE]]&lt;/div&gt;</summary>
		<author><name>Elliott1961</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.phpgedview.net/en/index.php?title=XREF:SOUR&amp;diff=10980</id>
		<title>XREF:SOUR</title>
		<link rel="alternate" type="text/html" href="https://wiki.phpgedview.net/en/index.php?title=XREF:SOUR&amp;diff=10980"/>
		<updated>2008-05-17T06:48:29Z</updated>

		<summary type="html">&lt;p&gt;Elliott1961: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;An [[XREF:SOUR]] is a pointer to, or an unique identifier of, a [[SOURCE RECORD|source record]], for example ''S123''. In Gedcom it always appears  enclosed in @ symbols, e.g. ''@S123@''&lt;br /&gt;
&lt;br /&gt;
 [[XREF:SOUR]] &lt;br /&gt;
&lt;br /&gt;
[[Category:GEDCOM]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Language links...DO NOT DELETE --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[fr:XREF:SOUR]]&lt;/div&gt;</summary>
		<author><name>Elliott1961</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.phpgedview.net/en/index.php?title=OBJE&amp;diff=10976</id>
		<title>OBJE</title>
		<link rel="alternate" type="text/html" href="https://wiki.phpgedview.net/en/index.php?title=OBJE&amp;diff=10976"/>
		<updated>2008-05-15T05:28:17Z</updated>

		<summary type="html">&lt;p&gt;Elliott1961: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{glossary&lt;br /&gt;
 | meaning = Object&lt;br /&gt;
 | description = Pertaining to a grouping of attributes used in describing something. Usually referring to the data required to represent a multimedia object, such an audio recording, a photograph of a person, or an image of a document.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[Category:GEDCOM]]&lt;br /&gt;
&amp;lt;!-- Language links...DO NOT DELETE--&amp;gt;&lt;br /&gt;
[[fr:OBJE]]&lt;/div&gt;</summary>
		<author><name>Elliott1961</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.phpgedview.net/en/index.php?title=TEXT&amp;diff=10975</id>
		<title>TEXT</title>
		<link rel="alternate" type="text/html" href="https://wiki.phpgedview.net/en/index.php?title=TEXT&amp;diff=10975"/>
		<updated>2008-05-14T05:46:36Z</updated>

		<summary type="html">&lt;p&gt;Elliott1961: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{glossary&lt;br /&gt;
 | meaning = Text&lt;br /&gt;
 | description = The exact wording found in an original source document.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[Category:GEDCOM]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Language links...DO NOT DELETE --&amp;gt;&lt;br /&gt;
[[fr:TEXT]]&lt;/div&gt;</summary>
		<author><name>Elliott1961</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.phpgedview.net/en/index.php?title=CALN&amp;diff=10974</id>
		<title>CALN</title>
		<link rel="alternate" type="text/html" href="https://wiki.phpgedview.net/en/index.php?title=CALN&amp;diff=10974"/>
		<updated>2008-05-14T05:37:37Z</updated>

		<summary type="html">&lt;p&gt;Elliott1961: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{glossary&lt;br /&gt;
 | meaning = Call Number&lt;br /&gt;
 | description = The number used by a repository to identify the specific items in its collections.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[Category:GEDCOM]]&lt;br /&gt;
[[Category:GEDCOM tags]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Language links...DO NOT DELETE --&amp;gt;&lt;br /&gt;
[[fr:CALN]]&lt;/div&gt;</summary>
		<author><name>Elliott1961</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.phpgedview.net/en/index.php?title=REPO&amp;diff=10969</id>
		<title>REPO</title>
		<link rel="alternate" type="text/html" href="https://wiki.phpgedview.net/en/index.php?title=REPO&amp;diff=10969"/>
		<updated>2008-05-13T05:41:29Z</updated>

		<summary type="html">&lt;p&gt;Elliott1961: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{glossary&lt;br /&gt;
 | meaning = Repository&lt;br /&gt;
 | description = An institution or person that has the specified item as part of their collection(s).&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[Category:GEDCOM]]&lt;br /&gt;
&amp;lt;!-- Language links...DO NOT DELETE --&amp;gt;&lt;br /&gt;
[[fr:TITL]]&lt;/div&gt;</summary>
		<author><name>Elliott1961</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.phpgedview.net/en/index.php?title=PUBL&amp;diff=10968</id>
		<title>PUBL</title>
		<link rel="alternate" type="text/html" href="https://wiki.phpgedview.net/en/index.php?title=PUBL&amp;diff=10968"/>
		<updated>2008-05-12T18:54:03Z</updated>

		<summary type="html">&lt;p&gt;Elliott1961: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{glossary&lt;br /&gt;
 | meaning = Publication&lt;br /&gt;
 | description = Refers to when and/or were a work was published or created.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[Category:GEDCOM]]&lt;br /&gt;
&amp;lt;!-- Language links...DO NOT DELETE --&amp;gt;&lt;br /&gt;
[[fr:PUBL]]&lt;/div&gt;</summary>
		<author><name>Elliott1961</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.phpgedview.net/en/index.php?title=AUTH&amp;diff=10967</id>
		<title>AUTH</title>
		<link rel="alternate" type="text/html" href="https://wiki.phpgedview.net/en/index.php?title=AUTH&amp;diff=10967"/>
		<updated>2008-05-12T14:50:57Z</updated>

		<summary type="html">&lt;p&gt;Elliott1961: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{glossary&lt;br /&gt;
 | meaning = Author&lt;br /&gt;
 | description = The name of the individual who created or compiled information.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[Category:GEDCOM]]&lt;br /&gt;
[[Category:GEDCOM tags]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Language links...DO NOT DELETE --&amp;gt;&lt;br /&gt;
[[fr:AUTH]]&lt;/div&gt;</summary>
		<author><name>Elliott1961</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.phpgedview.net/en/index.php?title=ABBR&amp;diff=10966</id>
		<title>ABBR</title>
		<link rel="alternate" type="text/html" href="https://wiki.phpgedview.net/en/index.php?title=ABBR&amp;diff=10966"/>
		<updated>2008-05-12T14:41:46Z</updated>

		<summary type="html">&lt;p&gt;Elliott1961: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{glossary&lt;br /&gt;
 | meaning = Abbreviation&lt;br /&gt;
 | description = A short name of a title, description, or name.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[Category:GEDCOM]]&lt;br /&gt;
[[Category:GEDCOM tags]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Language links...DO NOT DELETE --&amp;gt;&lt;br /&gt;
[[fr:ABBR]]&lt;/div&gt;</summary>
		<author><name>Elliott1961</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.phpgedview.net/en/index.php?title=SOUR&amp;diff=10965</id>
		<title>SOUR</title>
		<link rel="alternate" type="text/html" href="https://wiki.phpgedview.net/en/index.php?title=SOUR&amp;diff=10965"/>
		<updated>2008-05-12T09:41:46Z</updated>

		<summary type="html">&lt;p&gt;Elliott1961: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{glossary&lt;br /&gt;
 | meaning = Source&lt;br /&gt;
 | description = The initial or original material from which information was obtained.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
== See Also ==&lt;br /&gt;
&lt;br /&gt;
* [[Adding a Source]]&lt;br /&gt;
&lt;br /&gt;
[[Category:GEDCOM]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Language links...DO NOT DELETE --&amp;gt;&lt;br /&gt;
[[fr:SOUR]]&lt;/div&gt;</summary>
		<author><name>Elliott1961</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.phpgedview.net/en/index.php?title=Facts_and_Events&amp;diff=10782</id>
		<title>Facts and Events</title>
		<link rel="alternate" type="text/html" href="https://wiki.phpgedview.net/en/index.php?title=Facts_and_Events&amp;diff=10782"/>
		<updated>2008-04-12T07:21:11Z</updated>

		<summary type="html">&lt;p&gt;Elliott1961: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The naming conventions in Gedcom standard have „Events” and „Facts” (sometimes called „Attributes”). They can both  apply to individuals and families. The conceptual difference between events and facts is that '''Events''' occur at a definite point in time (while the point may extend as far as a day), while '''Facts''' are either extended in time, or don't have a specific time attached to them. The real life and the reality of  information gathering blurs somewhat this distinction. An example of a definite '''Event''' is birth, which occurs at a specific time and place (even if date or place is unknown, we expect this to be self-evident). A definite '''Fact''' could be Number of Children for an individual or family: we usually do not assign a date to such number. However, if you describe the education, you can use the „Education” '''Fact''' extended in time, or „Graduation” '''Event''', or both. A person's medal or distinction can be described as fact of having or as event of receiving this medal or distinction, etc. &lt;br /&gt;
 &lt;br /&gt;
Facts and Events are designated in Gedcom by Tags - short, 4 character labels that are visible in the Gedcom file, and by descriptive names. There is a number of pre-defined Events tags, like Birth (BIRT) for individual or Marriage (MARR)  for family, and a generic „Event” (EVEN) tag. There is also a number of pre-defined Facts (Attributes) like Residence (RESI) or Number Of Children (NCHI), and a generic „Fact” (FACT) tag. There can be also non-standard tags, some of which are used in PGV, for example Military (_MILI); they are preceded by an underline character to distinguish them from standard tags. If possible, try to use the available, pre-defined tags (standard or non-standard), as there is a better chance that they will be understood by PGV and processed by other software that may use the Gedcom file, and resort to generic FACT or EVEN only if existing tags won't do.&lt;br /&gt;
&lt;br /&gt;
Events and facts can aply to an individual, family or both. Family events and facts are displayed by PGV for both spouses (but not for children). The Administrator can configure the system to select the facts and events you can add, and whether multiples can be added. &lt;br /&gt;
&lt;br /&gt;
When entering a fact and event you are presented with a list of fields (tags), to fill. The [[Common Data Elements|commonly encountered elements]] are described separately, and will not be repeated here except to indicate the differences. &lt;br /&gt;
&lt;br /&gt;
==Life and death==&lt;br /&gt;
;Birth ([[BIRT]])&lt;br /&gt;
: You should include as much details as possible for the birth event: date and time, place, address, and all associates. Birth was often recorded together with christening, see the Christening event. &lt;br /&gt;
;Death ([[DEAT]]) &lt;br /&gt;
: Record here all details of death, date, place, etc. You can also record the cause of death and age at death, useful if exact date is not known. &lt;br /&gt;
;Burial ([[BURI]])&lt;br /&gt;
: Record the burial details. Cementery can be added as (non-standard) tag; you can also put cemetary as the most detailed element of Place data. &lt;br /&gt;
;Cremation ([[CREM]])&lt;br /&gt;
: Cremation has its own tag, with similar details as Burial (except for cementery)&lt;br /&gt;
&lt;br /&gt;
==Family related== &lt;br /&gt;
;Number of Children ([[NCHI]]) &lt;br /&gt;
:Sometimes the number of children is known, but not their names (or not all of them). Put here the total number irrespective of listing some of them. When zero is used, it indicates childless family or person. When applied to an individual, designates the total number of children of this person. When applied to a family, it is the total number of children in this family. &lt;br /&gt;
;Number of Marriages ([[NMR]]) &lt;br /&gt;
: Indicates the number of marriages for this individual. Not necessary if all the marriages are known and described in the database. Use zero to indicate that the person never married. &lt;br /&gt;
;Adoption ([[ADOP]])&lt;br /&gt;
: The adoption event applies to individual (adoptee), and allows you to specify if the husband, wife or both adopted the child. In addition to the adoption event, you should record the role of the child (Pedigree:adopted) when adding him/her to a family. &lt;br /&gt;
&lt;br /&gt;
===Marriage===&lt;br /&gt;
&lt;br /&gt;
;Marriage ([[MARR]])&lt;br /&gt;
:For married couple, the marriage event should be added, even if no details are known (only the „yes” checkbox is checked then). You can add marriage details (time, place, address stc) and indicate the type of marriage if known – a list is provided:&lt;br /&gt;
:*Civil marriage&lt;br /&gt;
:*Religious marriage&lt;br /&gt;
:*Registered partnership&lt;br /&gt;
:Selecting Religious marriage, Civil Marriage or Registered Partnership from the list is equivalent to selecting the type of marriage as above. &lt;br /&gt;
;Divorce ([[DIV]])&lt;br /&gt;
:Note here the event of dissolving a marriage - typically through civil action.&lt;br /&gt;
&lt;br /&gt;
'''Other events'''  related to marriage; some of them, like Announcement and Bann or Settlement and Contract  appear to duplicate each other, usually it is sufficient to select one of them:&lt;br /&gt;
&lt;br /&gt;
:;Engagement ([[ENGA]])&lt;br /&gt;
::Recording or announcing an agreement between two people to become married.&lt;br /&gt;
:;Marriage Bann ([[MARB]])&lt;br /&gt;
::An official public notice given that two people intend to marry. &lt;br /&gt;
:;Marriage License ([[MARL]])&lt;br /&gt;
::An event of obtaining a legal license to marry.&lt;br /&gt;
&lt;br /&gt;
:;Marriage Settlement  ([[MARS]])&lt;br /&gt;
::An agreement between two people contemplating marriage, at which time they agree to release or modify property rights that would otherwise arise from the marriage. &lt;br /&gt;
&lt;br /&gt;
:;Marriage Contract ([[MARC]]) &lt;br /&gt;
::Recording a formal agreement of marriage, including the prenuptial agreement in which marriage partners reach agreement about the property rights of one or both, securing property to their children.&lt;br /&gt;
&lt;br /&gt;
:;Divorce Filled ([[DIVF]])&lt;br /&gt;
::Filing for a divorce by a spouse. &lt;br /&gt;
&lt;br /&gt;
:;Annulment ([[ANUL]])&lt;br /&gt;
::Declaring a marriage void from the beginning.&lt;br /&gt;
==Lifetime achievements and facts==&lt;br /&gt;
;Residence ([[RESI]])&lt;br /&gt;
:A preferred way of entering the address data for individual or family. You can indicate, when person or family lived at this location or, for current residence, only the starting point (from...). Enter Place using the [[Place data|rules for place names]], and the following fields if known:&lt;br /&gt;
&lt;br /&gt;
:;Address ([[ADDR]])&lt;br /&gt;
:;Fax number ([[FAX]])&lt;br /&gt;
:;Phone number ([[PHON]])&lt;br /&gt;
:;Email address ([[EMAI]]) &lt;br /&gt;
:;Web page ([[WWW]])&lt;br /&gt;
&lt;br /&gt;
:PGV allows you also to add the above tags in non-standard way, as personal attributes (not as sub-tags of the Residence fact), and will display them if found in Gedcom file. While not strictly following standards, it is sometimes useful to attach data like email and cell phone number to a person, not location (Residence), since they tend to move around with a person rather than stay with an address. &lt;br /&gt;
&lt;br /&gt;
;Education ([[EDUC]]) &lt;br /&gt;
: The education data (fact) for individual. The ''Education'' tag is used to describe the education level (high School, university etc.). Enter the name of the school in the  ''Agency'' field, add dates (From...To) and ''Address'' if known. &lt;br /&gt;
;Graduation ([[GRAD]])&lt;br /&gt;
: The graduation event accepts the ''Type'' tag describing the level, ''Agency'' for school name and ''Address''. As for all events, enter the date of graduation. &lt;br /&gt;
;Occupation ([[OCCU]])&lt;br /&gt;
: The Occuation fact describes the occupation and/or job for individual. The ''Occupation'' tag is used to escribe the occupation name or jub title, ''Agency'' tag contains the name of the employer, with address, phone etc. tags available as well. Use date interval to indicate the term of employment or occupation.&lt;br /&gt;
;Retirement ([[RETI]])&lt;br /&gt;
:Describes the Retirement event, using date, ''Agency'' for employer name, and place data. &lt;br /&gt;
&lt;br /&gt;
;Military ([[_MILI]])&lt;br /&gt;
: A general fact or event used to describe any military involvement, campaing, service etc. Use the ''Military'' and ''Type'' tags to describe the event or fact, ''Agency'' to descibe the military unit pertaining to the fact. This is a non-standard tag.&lt;br /&gt;
&lt;br /&gt;
;Physical Description ([[DSCR]])&lt;br /&gt;
:The physical description of a person (e.g. ''Tall, dark and handsome'' or ''Brown Hair, Blue Eyes, Height 165 cm'') in lieu of photograph of a portrait. A date can be attached to this fact to indicate the time the description was in effect.&lt;br /&gt;
&lt;br /&gt;
==National / government==&lt;br /&gt;
;Nationality ([[NATI]])&lt;br /&gt;
:Enter the national or tribal origin of the individual here. &lt;br /&gt;
&lt;br /&gt;
;Imigration ([[IMMI]])&lt;br /&gt;
:Defined in the Gedcom as „an event of entering into a new locality with the intent of residing there”, may also be used independently of the intent, if the fact of residence in another place was established. Supply the date of the event and the (first) new place of residence. See also Emigration. &lt;br /&gt;
&lt;br /&gt;
;Emigration ([[EMIG]]) &lt;br /&gt;
:Defined in the Gedcom as „an event of of leaving one's homeland with the intent of residing elsewhere.”.  Linked with Emigration, can be described as either. For Emigration, supply the date of leaving the country of origin, and possibley the place (e.g .port) of departure. &lt;br /&gt;
&lt;br /&gt;
;Naturalization ([[NATU]])&lt;br /&gt;
:Record here the date and place of the event of obtaining a (new) citizenship.&lt;br /&gt;
&lt;br /&gt;
;Census ([[CENS]])&lt;br /&gt;
:Census is the periodic count of the population for a nation or state. Note here when and were the census count, applicable to the person or family, took place; you can also add an Address and age of the individual if mentioned in census document.  Census documents are valuable search tools, and they are usually also desribed as [[Proper use of sources|Sources]] of personal data. &lt;br /&gt;
&lt;br /&gt;
;Social Security Number ([[SSN]]) &lt;br /&gt;
:United States Social Security number, commonly used an national ID number for individuals. By default it is hidden from all but the Administrators, and is not shown in the PGV display. As all others, this setting is configurable. &lt;br /&gt;
&lt;br /&gt;
;National ID Number ([[IDNO]]) &lt;br /&gt;
:A nationally-controlled number assigned to an individual; requires a Type to define national system and type of the ID. The US Social Security has its own tag (see SSN above).  If used, privacy settings can be applied to hide it from view.&lt;br /&gt;
&lt;br /&gt;
==Earthly posessions and titles==&lt;br /&gt;
;Property ([[PROP]]) &lt;br /&gt;
:This is the place to list real estate and other significant possessions of an individual. Construed as „Fact”, but can also be used as an „Event” of acquiring such possesion. The ''Property'' field is used to list the property (properties) being described. &lt;br /&gt;
&lt;br /&gt;
;Title ([[TITL]])&lt;br /&gt;
:Used to enter the  title given to  (or used by) a person, typically of noble class, royalty etc. ''Prince'', ''Duke'', ''Marquis'', ''Baron'', ''Rajah'', ''Emir'' are just few examples of this vast domain of [http://en.wikipedia.org/wiki/Royal_and_noble_ranks nobility ranks.]&lt;br /&gt;
&lt;br /&gt;
;Will ([[WILL]])&lt;br /&gt;
:Notes an existence of the will - a legal document, by which a person disposes of his or her estate, to take effect after death. It is treated as an „Event”: enter date and place of signing the document. See also Probate. &lt;br /&gt;
&lt;br /&gt;
;Probate ([[PROB]])&lt;br /&gt;
:If the court determined that the ''Will'' is valid, note the fact here. Put a date of final determination, and note any intermediate court proceedings in Notes)&lt;br /&gt;
&lt;br /&gt;
==Religious and social==&lt;br /&gt;
&lt;br /&gt;
As the Gedcom standard was originally created by ''The Church of Jesus Christ of Latter-day Saints'' (LDS), it is perhaps not surprising that many of the events describe the christian rites and ordinances. With some creativity, however, one can use them to record events and rites in other religies as well.&lt;br /&gt;
&lt;br /&gt;
;Religious afiliation ([[RELI]]) &lt;br /&gt;
: Name of religion with which the person is affiliated. Can be used as a „Fact” or as „Event” - in the second case supply the date when the affiliation occured (in infancy or later in life). &lt;br /&gt;
&lt;br /&gt;
;Christening ([[CHR]])&lt;br /&gt;
:Christening is a ceremony of baptizing and naming a child. Naming of a child appears to be  universal in most cultures, and one can use this tag (possibly with an added ''Type'') to indicate Jewish ''Zeved Habat'' or ''Brit Milah'', Hindu ''Namskaran Samskar'', Chinese ''Red Egg'' or Egyptian ''Sebou''. See Wikipedia entries for [http://en.wikipedia.org/wiki/Infant_baptism Infant baptism],and for [http://en.wikipedia.org/wiki/Naming_ceremony Naming ceremony]. Enter date and place of the event. &lt;br /&gt;
&lt;br /&gt;
;Baptism  ([[BAPM]])&lt;br /&gt;
:Baptism is a is the sacramental act of cleansing in water (that typically also admits one as a full member of the church). While a principal rite of Christianity, it has roots and equivalents in [http://en.wikipedia.org/wiki/Baptism#Other_initiation_ceremonies other cultures], and can be used as such. &lt;br /&gt;
&lt;br /&gt;
;Adult Christening  ([[CHRA]])&lt;br /&gt;
:The religious event of baptizing an adult person – see [http://en.wikipedia.org/wiki/Baptism baptism] entry in Wikipedia.&lt;br /&gt;
&lt;br /&gt;
;Bar Mitzvah ([[BARM]])&lt;br /&gt;
:Coming of age event and [http://en.wikipedia.org/wiki/Bar_mitzvah ceremony] held when a Jewish boy reaches age 13. &lt;br /&gt;
&lt;br /&gt;
;Bas Mitzvah ([[BASM]])&lt;br /&gt;
:Coming of age event and [http://en.wikipedia.org/wiki/Bar_mitzvah| ceremony] held when a Jewish girl reaches age 13.&lt;br /&gt;
&lt;br /&gt;
;Blessing ([[BLES]])&lt;br /&gt;
:A religious event of bestowing divine care or intercession. [http://en.wikipedia.org/wiki/Blessing Blessing] is a universal term and is applicable to many cultures and faiths. &lt;br /&gt;
&lt;br /&gt;
;First Communion ([[FCOM]])&lt;br /&gt;
:A [http://en.wikipedia.org/wiki/First_Communion Christian rite], the first act of sharing in the Lord's supper as part of church worship.&lt;br /&gt;
&lt;br /&gt;
;Ordination ([[ORDN]]) &lt;br /&gt;
:The [http://en.wikipedia.org/wiki/Ordination process] by which individuals are consecrated, that is set apart as clergy to perform various religious rites and ceremonies in Christianity, Judaism, Islam, Buddhism etc. &lt;br /&gt;
&lt;br /&gt;
;Ordinance ([[ORDI]])&lt;br /&gt;
:Enter other religious facts and events under this heading. &lt;br /&gt;
&lt;br /&gt;
;Confirmation ([[CONF]])&lt;br /&gt;
:The [http://en.wikipedia.org/wiki/Confirmation religious event] in many Christian churches of conferring the gift of the Holy Ghost and, among protestants, full church membership.&lt;br /&gt;
&lt;br /&gt;
;Caste ([[CAST]]) &lt;br /&gt;
:A name assigned to a [http://en.wikipedia.org/wiki/Caste particular group] (racial group, religious group, a group with an inherited status etc.) that this person was associated with.&lt;br /&gt;
&lt;br /&gt;
===LDS specfic events===&lt;br /&gt;
Read more in the Wikipedia articles about the [http://en.wikipedia.org/wiki/Portal:Latter-day_Saints LDS church] and the [http://en.wikipedia.org/wiki/Sealing_(Latter_Day_Saints) sealing ceremonies].&lt;br /&gt;
 &lt;br /&gt;
;LDS Child Sealing ([[SLGC]]) &lt;br /&gt;
:Sealing of a child to his or her parents in an LDS temple ceremony.&lt;br /&gt;
;LDS Spouse Sealing ([[SLGS]])&lt;br /&gt;
:Sealing of a husband and wife in an LDS temple ceremony.&lt;br /&gt;
&lt;br /&gt;
;LDS Babtism ([[BAPL) &lt;br /&gt;
:Baptism performed at age eight or later by priesthood authority of the LDS Church. &lt;br /&gt;
;LDS Confirmation ([[CONL]]) &lt;br /&gt;
:The religious event by which a person receives membership in the LDS Church.&lt;br /&gt;
&lt;br /&gt;
;LDS Endowment ([[ENDL]])&lt;br /&gt;
:An endowment ordinance for an individual performed in an LDS temple.&lt;br /&gt;
&lt;br /&gt;
==Generic==&lt;br /&gt;
&lt;br /&gt;
There are two generic tags, unsurprisingly called Fact and Event. &lt;br /&gt;
; Fact ([[FACT]])&lt;br /&gt;
: Any fact that does not have its own definition. Requires a Type ([[TYPE]]) subordinate tag to specify the type of fact, while the Event tag contains the fact name. &lt;br /&gt;
; Event  ([[EVEN]])&lt;br /&gt;
: Any event that does not have its own definition. Requires a Type ([[TYPE]]) subordinate tag to specify the type of fact. You can add date and place to the generic Event. &lt;br /&gt;
&lt;br /&gt;
In addition to generic fact and event, many genealogy programs define the custom tags. The tags that are not recognized by PGV will still be displayed, but marked as an error. The Administrator can change this behaviour, and also configure non standard tags to be recognized by PGV, see [[Inside info#Non-standard GEDCOM codes|Non-standard GEDCOM codes]].&lt;br /&gt;
&lt;br /&gt;
[[fr:Faits et détails personnels]]&lt;/div&gt;</summary>
		<author><name>Elliott1961</name></author>
		
	</entry>
</feed>