gedcom 0.9.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (75) hide show
  1. data/History.txt +4 -0
  2. data/Manifest.txt +74 -0
  3. data/README.txt +129 -0
  4. data/Rakefile +13 -0
  5. data/lib/gedcom.rb +105 -0
  6. data/lib/gedcom/address_record.rb +77 -0
  7. data/lib/gedcom/adoption_record.rb +57 -0
  8. data/lib/gedcom/association_record.rb +79 -0
  9. data/lib/gedcom/cause_record.rb +45 -0
  10. data/lib/gedcom/change_date_record.rb +39 -0
  11. data/lib/gedcom/character_set_record.rb +41 -0
  12. data/lib/gedcom/citation_data_record.rb +49 -0
  13. data/lib/gedcom/citation_event_type_record.rb +42 -0
  14. data/lib/gedcom/corporate_record.rb +36 -0
  15. data/lib/gedcom/date_record.rb +206 -0
  16. data/lib/gedcom/encoded_line_record.rb +34 -0
  17. data/lib/gedcom/event_age_record.rb +36 -0
  18. data/lib/gedcom/event_record.rb +258 -0
  19. data/lib/gedcom/events_list_record.rb +61 -0
  20. data/lib/gedcom/families_individuals.rb +79 -0
  21. data/lib/gedcom/family_record.rb +89 -0
  22. data/lib/gedcom/gedcom_all.rb +41 -0
  23. data/lib/gedcom/gedcom_base.rb +337 -0
  24. data/lib/gedcom/gedcom_record.rb +44 -0
  25. data/lib/gedcom/header_data_record.rb +49 -0
  26. data/lib/gedcom/header_record.rb +75 -0
  27. data/lib/gedcom/header_source_record.rb +42 -0
  28. data/lib/gedcom/individual_attribute_record.rb +86 -0
  29. data/lib/gedcom/individual_record.rb +128 -0
  30. data/lib/gedcom/multimedia_citation_record.rb +55 -0
  31. data/lib/gedcom/multimedia_record.rb +72 -0
  32. data/lib/gedcom/name_record.rb +58 -0
  33. data/lib/gedcom/note_citation_record.rb +37 -0
  34. data/lib/gedcom/note_record.rb +61 -0
  35. data/lib/gedcom/place_record.rb +46 -0
  36. data/lib/gedcom/refn_record.rb +32 -0
  37. data/lib/gedcom/repository_caln.rb +33 -0
  38. data/lib/gedcom/repository_citation_record.rb +43 -0
  39. data/lib/gedcom/repository_record.rb +41 -0
  40. data/lib/gedcom/source_citation_record.rb +74 -0
  41. data/lib/gedcom/source_record.rb +84 -0
  42. data/lib/gedcom/source_scope_record.rb +35 -0
  43. data/lib/gedcom/submission_record.rb +53 -0
  44. data/lib/gedcom/submitter_record.rb +53 -0
  45. data/lib/gedcom/text_record.rb +31 -0
  46. data/lib/gedcom/trailer_record.rb +22 -0
  47. data/lib/gedcom/transmission.rb +103 -0
  48. data/lib/gedcom/transmission_base.rb +267 -0
  49. data/lib/parser/class_tracker.rb +33 -0
  50. data/lib/parser/ged_line.rb +99 -0
  51. data/lib/parser/gedcom_parser.rb +798 -0
  52. data/lib/parser/instruction.rb +14 -0
  53. data/lib/parser/parse_state.rb +49 -0
  54. data/test/test_gedcom.rb +7 -0
  55. data/test_data/Document.RTF +1 -0
  56. data/test_data/Document.tex +1 -0
  57. data/test_data/ImgFile.BMP +0 -0
  58. data/test_data/ImgFile.GIF +0 -0
  59. data/test_data/ImgFile.JPG +0 -0
  60. data/test_data/ImgFile.MAC +0 -0
  61. data/test_data/ImgFile.PCX +0 -0
  62. data/test_data/ImgFile.PIC +0 -0
  63. data/test_data/ImgFile.PNG +0 -0
  64. data/test_data/ImgFile.PSD +0 -0
  65. data/test_data/ImgFile.TGA +0 -0
  66. data/test_data/ImgFile.TIF +0 -0
  67. data/test_data/README.txt +1 -16
  68. data/test_data/TGC551.ged +1 -0
  69. data/test_data/TGC551LF.ged +2162 -0
  70. data/test_data/TGC55C.ged +1 -0
  71. data/test_data/TGC55CLF.ged +2202 -0
  72. data/test_data/force.wav +0 -0
  73. data/test_data/suntun.mov +0 -0
  74. data/test_data/top.mpg +0 -0
  75. metadata +140 -0
@@ -0,0 +1,14 @@
1
+ #Instruction names the array elements
2
+ #0. The Action to perform
3
+ #1. The Tag involved
4
+ #2. The Data associated with the Tag.
5
+
6
+ class Instruction < Array
7
+ attr_reader :tag, :action, :data
8
+
9
+ def initialize(instruction)
10
+ @action = instruction[0]
11
+ @tag = instruction[1]
12
+ @data = instruction[2]
13
+ end
14
+ end
@@ -0,0 +1,49 @@
1
+ #ParseState sub-classes Array to provide a stack for holding the current parse state.
2
+
3
+ class ParseState < Array
4
+
5
+ #Create the initial state.
6
+ #Optional arguments:
7
+ #* state, if it has a value, is pushed onto the state stack as the current state.
8
+ #* target, if it has a value, then it is the object we are using when in this state.
9
+ # It should be non-nil if state is not nil.
10
+ #e.g. GedcomParser.new calls ParseState.new( :transmission , @transmission)
11
+ # Pushes the transmission state onto the stack, and records the GedcomParser.transmission
12
+ # object as the current target object.
13
+ def initialize(state = nil, target = nil)
14
+ super(0)
15
+ push state if state != nil
16
+ @target = target #record this so that we can control the targets stack as we alter this one.
17
+ end
18
+
19
+ #level() is the depth of the stack, less 1, which gives us the GEDCOM level we are working with.
20
+ def level
21
+ length - 1
22
+ end
23
+
24
+ #state() is the last item in the Array, hence the top of the stack.
25
+ def state
26
+ last
27
+ end
28
+
29
+ #last_state() is the previous state on the stack, so we know the state we came from.
30
+ def last_state
31
+ self[-2]
32
+ end
33
+
34
+ #pop() reverts to the previous state.
35
+ def pop
36
+ if level > 0
37
+ super
38
+ @target.pop if @target != nil #as we go up a level, we need to move up the target objects stack too.
39
+ else
40
+ raise "Empty Parse State Stack"
41
+ end
42
+ end
43
+
44
+ #dump() is a debugging aid to print out the current ParseState's stack.
45
+ def dump
46
+ self.reverse.each { |the_state| p the_state }
47
+ end
48
+
49
+ end
@@ -0,0 +1,7 @@
1
+ require "test/unit"
2
+ require "parser.rb"
3
+
4
+ class TestGedcom < Test::Unit::TestCase
5
+ def test_sanity
6
+ end
7
+ end
@@ -0,0 +1 @@
1
+ {\rtf1\mac\ansicpg10000\uc1 \deff0\deflang1033\deflangfe1033{\upr{\fonttbl{\f0\fnil\fcharset256\fprq2{\*\panose 02020603050405020304}Times New Roman;}{\f4\fnil\fcharset256\fprq2{\*\panose 02000500000000000000}Times;}
@@ -0,0 +1 @@
1
+ A simple plain TEXT document.
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
@@ -0,0 +1 @@
1
+ -------------------------------------------------------------------
2
  CONTENTS OF TEST GEDCOM ARCHIVE
1
- ------------------------------------------------------------------
2
- ------------------------------------------------------------------
3
3
  NOTES ON THE TEST FILE
4
- ------------------------------------------------------------------
5
- ------------------------------------------------------------------
6
4
  HEADER RECORD NOTES
7
- ------------------------------------------------------------------
8
- -------------------------
9
5
  This record has all possible tags for a HEADER record. In uses one custom tag ("_HME") to see what the software will say about custom tags.
10
- -------------------------
11
6
  This file has a small number of INDIVIDUAL records. The record named "Joseph Tag Torture" has all possible tags for an INDIVIDUAL record. All remaining individuals have less tags. Some test specific features; for example:
12
7
  Name: Standard GEDCOM Filelinks
13
8
  Name: Nonstandard Multimedia Filelinks
14
9
  Name: General Custom Filelinks
15
10
  Name: Extra URL Filelinks
16
11
  These records link to multimedia files mentioned by the GEDCOM standard and to a variety of other types of multimedia files, general files, or URL names.
17
12
  Name: Chris Locked Torture
18
13
  Has a "locked" restriction (RESN) tag - should not be able to edit this record it. This record has one set of notes that is used to test line breaking in notes and a few other text-parsing features of the GEDCOM software. Read those notes to see what they are testing.
19
14
  Name: Sandy Privacy Torture
20
15
  Has a "privacy" restriction (RESN) tag. Is the tag recognized and how is the record displayed and/or printed?
21
16
  Name: Chris Locked Torture
22
17
  Name: Sandy Privacy Torture
23
18
  Name: Pat Smith Torture
24
19
  The three children in this file have unknown sex (no SEX tag). An ancestor tree from each should give five generations of ancestors.
25
20
  Name: Charlie Accented ANSEL
26
21
  Name: Lucy Special ANSEL
27
22
  The notes in these records use all possible special characters in the ANSEL character set. The header of this file denotes this file as using the ANSEL character set. The importing software should handle these special characters in a reasonable way.
28
23
  Name: Torture GEDCOM Matriarch
29
24
  All individuals in this file are related and all are descendants (or spouses of descendants) of Torture GEDCOM Matriarch. A descendant tree or report from this individual should show five generations of descendants.
30
- -------------------------
31
25
  The FAMILY record for "Joseph Tag Torture" (husband) and "Mary First Jones" (wife) has all tags allowed in family records. All other family records use only a few tags and are used to provide records for extra family links in other records.
32
- -------------------------
33
26
  There are two SOURCE records in this file. The "Everything You Every Wanted to Know about GEDCOM Tags" source has all possible GEDCOM tags for a SOURCE record. The other source only has only a few tags.
34
- -------------------------
35
27
  There is just one REPOSITORY record and it uses all possible tags for such a record.
36
- -------------------------
37
28
  This file has three SUBMITTER records. The "John A. Nairn" record has all tags allowed in such records. The second and third submitter are to test how programs input files with multiple submitters. The GEDCOM standard does not allow for notes in SUBMITTER records. Look in the "Main Submitter" to verify all address data comes through, that all three phone numbers appear, and that the multimedia file link is preserved.
38
- -------------------------
39
29
  The one MULTIMEDIA record has all possible tags and even has encoded data for a small image of a flower. There are no known GEDCOM programs that can read or write such records. The record is included here to test how programs might respond to finding multimedia records present. There are possible plans to eliminate encoded multimedia objects in the next version of GEDCOM. In the future all multimedia will be included by links to other files. To test current file links and extended file links, see the "Filelinks" family records described above.
40
- -------------------------
41
30
  The one (maximum allowed) SUBMISSION record in this file has all possible tags for such a record.
42
- -------------------------
43
31
  This file has many NOTE records. These are all linked to other records.
44
- -------------------------
45
32
  This file ends in the standard TRLR record.
46
- -------------------------
47
33
  This file was originally created by H. Eichmann at <h.eichmann@@mbox.iqo.uni-hannover.de> and posted on the Internet.
@@ -0,0 +1 @@
1
+ 0 HEAD
@@ -0,0 +1,2162 @@
1
+ 0 HEAD
2
+ 1 SOUR GEDitCOM
3
+ 2 NAME GEDitCOM
4
+ 2 VERS 2.9.4
5
+ 2 CORP RSAC Software
6
+ 3 ADDR 7108 South Pine Cone Street
7
+ 4 CONT Salt Lake City, UT 84121
8
+ 4 CONT USA
9
+ 4 ADR1 RSAC Software
10
+ 4 ADR2 7108 South Pine Cone Street
11
+ 4 CITY Salt Lake City
12
+ 4 STAE UT
13
+ 4 POST 84121
14
+ 4 CTRY USA
15
+ 3 PHON +1-801-942-7768
16
+ 3 PHON +1-801-555-1212
17
+ 3 PHON +1-801-942-1148 (FAX) (last one!)
18
+ 2 DATA Name of source data
19
+ 3 DATE 1 JAN 1998
20
+ 3 COPR Copyright of source data
21
+ 1 SUBM @SUBMITTER@
22
+ 1 SUBN @SUBMISSION@
23
+ 1 _HME @PERSON1@
24
+ 2 TYPE A subtag of a user tag
25
+ 1 DEST ANSTFILE
26
+ 1 DATE 1 JAN 1998
27
+ 2 TIME 13:57:24.80
28
+ 1 FILE TGC55C.ged
29
+ 1 COPR � 1997 by H. Eichmann, parts � 1999-2000 by J. A. Nairn.
30
+ 1 GEDC
31
+ 2 VERS 5.5
32
+ 2 FORM LINEAGE-LINKED
33
+ 1 LANG English
34
+ 1 CHAR ANSEL
35
+ 2 VERS ANSI Z39.47-1985
36
+ 1 PLAC
37
+ 2 FORM City, County, State, Country
38
+ 1 NOTE This file demonstrates all tags that are allowed in GEDCOM 5.5. Here are some comments about the HEADER record
39
+ 2 CONC and comments about where to look for information on the other 9 types of GEDCOM records. Most other records will
40
+ 2 CONC have their own notes that describe what to look for in that record and what to hope the importing software will find.
41
+ 2 CONT
42
+ 2 CONT Many applications will fail to import these notes. The notes are therefore also provided with the files as a plain-text
43
+ 2 CONC "Read-Me" file.
44
+ 2 CONT
45
+ 2 CONT --------------------------
46
+ 2 CONT The HEADER Record:
47
+ 2 CONT This record has all possible tags for a HEADER record. In uses one custom tag ("_HME") to see what the software
48
+ 2 CONC will say about custom tags.
49
+ 2 CONT
50
+ 2 CONT --------------------------
51
+ 2 CONT INDIVIDUAL Records:
52
+ 2 CONT This file has a small number of INDIVIDUAL records. The record named "Joseph Tag Torture" has all possible
53
+ 2 CONC tags for an INDIVIDUAL record. All remaining individuals have less tags. Some test specific features; for example:
54
+ 2 CONT
55
+ 2 CONT Name: Standard GEDCOM Filelinks
56
+ 2 CONT Name: Nonstandard Multimedia Filelinks
57
+ 2 CONT Name: General Custom Filelinks
58
+ 2 CONT Name: Extra URL Filelinks
59
+ 2 CONT These records link to multimedia files mentioned by the GEDCOM standard and to a variety of other types of
60
+ 2 CONC multimedia files, general files, or URL names.
61
+ 2 CONT
62
+ 2 CONT Name: Chris Locked Torture
63
+ 2 CONT Has a "locked" restriction (RESN) tag - should not be able to edit this record it. This record has one set of notes
64
+ 2 CONC that is used to test line breaking in notes and a few other text-parsing features of the GEDCOM software. Read those
65
+ 2 CONC notes to see what they are testing.
66
+ 2 CONT
67
+ 2 CONT Name: Sandy Privacy Torture
68
+ 2 CONT Has a "privacy" restriction (RESN) tag. Is the tag recognized and how is the record displayed and/or printed?
69
+ 2 CONT
70
+ 2 CONT Name: Chris Locked Torture
71
+ 2 CONT Name: Sandy Privacy Torture
72
+ 2 CONT Name: Pat Smith Torture
73
+ 2 CONT The three children in this file have unknown sex (no SEX tag). An ancestor tree from each should give five
74
+ 2 CONC generations of ancestors.
75
+ 2 CONT
76
+ 2 CONT Name: Charlie Accented ANSEL
77
+ 2 CONT Name: Lucy Special ANSEL
78
+ 2 CONT The notes in these records use all possible special characters in the ANSEL character set. The header of this file
79
+ 2 CONC denotes this file as using the ANSEL character set. The importing software should handle these special characters in a
80
+ 2 CONC reasonable way.
81
+ 2 CONT
82
+ 2 CONT Name: Torture GEDCOM Matriarch
83
+ 2 CONT All individuals in this file are related and all are descendants (or spouses of descendants) of Torture GEDCOM
84
+ 2 CONC Matriarch. A descendant tree or report from this individual should show five generations of descendants.
85
+ 2 CONT
86
+ 2 CONT --------------------------
87
+ 2 CONT FAMILY Records:
88
+ 2 CONT The FAMILY record for "Joseph Tag Torture" (husband) and "Mary First Jones" (wife) has all tags allowed in
89
+ 2 CONC family records. All other family records use only a few tags and are used to provide records for extra family links in
90
+ 2 CONC other records.
91
+ 2 CONT
92
+ 2 CONT --------------------------
93
+ 2 CONT SOURCE Records:
94
+ 2 CONT There are two SOURCE records in this file. The "Everything You Every Wanted to Know about GEDCOM Tags"
95
+ 2 CONC source has all possible GEDCOM tags for a SOURCE record. The other source only has only a few tags.
96
+ 2 CONT
97
+ 2 CONT --------------------------
98
+ 2 CONT REPOSITORY Record:
99
+ 2 CONT There is just one REPOSITORY record and it uses all possible tags for such a record.
100
+ 2 CONT
101
+ 2 CONT --------------------------
102
+ 2 CONT SUBMITTER Records:
103
+ 2 CONT This file has three SUBMITTER records. The "John A. Nairn" record has all tags allowed in such records. The
104
+ 2 CONC second and third submitter are to test how programs input files with multiple submitters. The GEDCOM standard does
105
+ 2 CONC not allow for notes in SUBMITTER records. Look in the "Main Submitter" to verify all address data comes through,
106
+ 2 CONC that all three phone numbers appear, and that the multimedia file link is preserved.
107
+ 2 CONT
108
+ 2 CONT --------------------------
109
+ 2 CONT MULTIMEDIA OBJECT Record:
110
+ 2 CONT The one MULTIMEDIA record has all possible tags and even has encoded data for a small image of a flower. There
111
+ 2 CONC are no known GEDCOM programs that can read or write such records. The record is included here to test how
112
+ 2 CONC programs might respond to finding multimedia records present. There are possible plans to eliminate encoded
113
+ 2 CONC multimedia objects in the next version of GEDCOM. In the future all multimedia will be included by links to other files.
114
+ 2 CONC To test current file links and extended file links, see the "Filelinks" family records described above.
115
+ 2 CONT
116
+ 2 CONT --------------------------
117
+ 2 CONT SUBMISSION Record:
118
+ 2 CONT The one (maximum allowed) SUBMISSION record in this file has all possible tags for such a record.
119
+ 2 CONT
120
+ 2 CONT --------------------------
121
+ 2 CONT NOTE Records:
122
+ 2 CONT This file has many NOTE records. These are all linked to other records.
123
+ 2 CONT
124
+ 2 CONT --------------------------
125
+ 2 CONT TRLR Records:
126
+ 2 CONT This file ends in the standard TRLR record.
127
+ 2 CONT
128
+ 2 CONT --------------------------
129
+ 2 CONT ADDITIONAL NOTES
130
+ 2 CONT This file was originally created by H. Eichmann at <h.eichmann@@mbox.iqo.uni-hannover.de> and posted on the
131
+ 2 CONC Internet.
132
+ 2 CONT
133
+ 2 CONT (NOTE: email addresses are listed here with double "at" signs. A rule of GEDCOM parsing is that these should be
134
+ 2 CONC converted to single "at" at signs, but not many programs follow that rule. In addition, that rule is not needed and may be
135
+ 2 CONC abandoned in a future version of GEDCOM).
136
+ 2 CONT
137
+ 2 CONT This original file was extensively modified by J. A. Nairn using GEDitCOM 2.9.4 (1999-2001) at
138
+ 2 CONC <support@@geditcom.com> and posted on the Internet at <http://www.geditcom.com>. Some changes included many
139
+ 2 CONC more notes, the use or more tags, extensive testing of multimedia file links, and some notes to test all special ANSEL
140
+ 2 CONC characters.
141
+ 2 CONT
142
+ 2 CONT Feel free to copy and use this GEDCOM file for any non-commercial purpose.
143
+ 2 CONT
144
+ 2 CONT For selecting the allowed tags, the GEDCOM standard Release 5.5 (2 JAN 1996) was used. Copyright: The Church of
145
+ 2 CONC Jesus Christ of Latter-Day Saints, <gedcom@@gedcom.org>.
146
+ 2 CONT
147
+ 2 CONT You can download the GEDCOM 5.5 specs from: <ftp.gedcom.com/pub/genealogy/gedcom>. You can read the
148
+ 2 CONC GEDCOM 5.5 specs on the Internet at <http://homepages.rootsweb.com/~pmcbride/gedcom/55gctoc.htm>.
149
+ 0 @SUBMISSION@ SUBN
150
+ 1 SUBM @SUBMITTER@
151
+ 1 FAMF NameOfFamilyFile
152
+ 1 TEMP Abbreviated Temple Code
153
+ 1 ANCE 1
154
+ 1 DESC 1
155
+ 1 ORDI yes
156
+ 1 RIN 1
157
+ 0 @SUBMITTER@ SUBM
158
+ 1 NAME John A. Nairn
159
+ 1 ADDR Submitter address line 1
160
+ 2 CONT Submitter address line 2
161
+ 2 CONT Submitter address line 3
162
+ 2 CONT Submitter address line 4
163
+ 2 ADR1 Submitter address line 1
164
+ 2 ADR2 Submitter address line 2
165
+ 2 CITY Submitter address city
166
+ 2 STAE Submitter address state
167
+ 2 POST Submitter address ZIP code
168
+ 2 CTRY Submitter address country
169
+ 1 PHON Submitter phone number 1
170
+ 1 PHON Submitter phone number 2
171
+ 1 PHON Submitter phone number 3 (last one!)
172
+ 1 LANG English
173
+ 1 OBJE
174
+ 2 FORM jpeg
175
+ 2 TITL Submitter Multimedia File
176
+ 2 FILE ImgFile.JPG
177
+ 2 NOTE @N1@
178
+ 1 RFN Submitter Registered RFN
179
+ 1 RIN 1
180
+ 1 CHAN
181
+ 2 DATE 7 Sep 2000
182
+ 3 TIME 8:35:36
183
+ 0 @SM2@ SUBM
184
+ 1 NAME Secondary Submitter
185
+ 1 ADDR Secondary Submitter Address 1
186
+ 2 CONT Secondary Submitter Address 2
187
+ 1 LANG English
188
+ 1 CHAN
189
+ 2 DATE 12 Mar 2000
190
+ 3 TIME 10:38:33
191
+ 1 RIN 2
192
+ 0 @SM3@ SUBM
193
+ 1 NAME H. Eichmann
194
+ 1 ADDR email: h.eichmann@@mbox.iqo.uni-hannover.de
195
+ 2 CONT or: heiner_eichmann@@h.maus.de (no more than 16k!!!!)
196
+ 1 CHAN
197
+ 2 DATE 13 Jun 2000
198
+ 3 TIME 17:07:32
199
+ 1 RIN 3
200
+ 0 @I14@ INDI
201
+ 1 NAME Charlie Accented /ANSEL/
202
+ 1 SEX M
203
+ 1 BIRT
204
+ 2 DATE 15 JUN 1900
205
+ 1 DEAT
206
+ 2 DATE 5 JUL 1974
207
+ 1 FAMS @F6@
208
+ 1 FAMC @F7@
209
+ 1 NOTE @N24@
210
+ 1 CHAN
211
+ 2 DATE 11 Jan 2001
212
+ 3 TIME 16:00:06
213
+ 1 RIN 1
214
+ 0 @I13@ INDI
215
+ 1 NAME Lucy Special /ANSEL/
216
+ 1 SEX F
217
+ 1 BIRT
218
+ 2 DATE 12 AUG 1905
219
+ 1 DEAT
220
+ 2 DATE 31 DEC 1990
221
+ 1 FAMS @F6@
222
+ 1 NOTE @N25@
223
+ 1 CHAN
224
+ 2 DATE 11 Jan 2001
225
+ 3 TIME 16:00:23
226
+ 1 RIN 2
227
+ 0 @PERSON6@ INDI
228
+ 1 NAME Teresa Mary /Caregiver/
229
+ 1 SEX F
230
+ 1 BIRT
231
+ 2 DATE 6 JUN 1944
232
+ 1 FAMS @ADOPTIVE_PARENTS@
233
+ 1 NOTE @N27@
234
+ 1 CHAN
235
+ 2 DATE 11 Jan 2001
236
+ 3 TIME 16:03:05
237
+ 1 RIN 3
238
+ 0 @I12@ INDI
239
+ 1 NAME Extra URL /Filelinks/
240
+ 1 SEX F
241
+ 1 BIRT
242
+ 2 DATE 1875
243
+ 1 FAMC @F5@
244
+ 1 NOTE @N23@
245
+ 1 OBJE
246
+ 2 FORM URL
247
+ 2 TITL GEDCOM 5.5 documentation web site
248
+ 2 FILE http://homepages.rootsweb.com/~pmcbride/gedcom/55gctoc.htm
249
+ 1 OBJE
250
+ 2 FORM URL
251
+ 2 TITL FTP site with many GEDCOM files
252
+ 2 FILE ftp://ftp.genealogy.org/genealogy/GEDCOM/
253
+ 1 OBJE
254
+ 2 FORM URL
255
+ 2 TITL GEDitCOM Macintosh genealogy software home page
256
+ 2 FILE http://www.geditcom.com
257
+ 1 OBJE
258
+ 2 FORM URL
259
+ 2 TITL Email comments on this GEDCOM file to here
260
+ 2 FILE mailto:support@geditcom.com
261
+ 1 CHAN
262
+ 2 DATE 11 Jan 2001
263
+ 3 TIME 16:01:19
264
+ 1 RIN 4
265
+ 0 @I11@ INDI
266
+ 1 NAME General Custom /Filelinks/
267
+ 1 SEX M
268
+ 1 BIRT
269
+ 2 DATE 1872
270
+ 1 DEAT
271
+ 2 DATE 7 DEC 1941
272
+ 1 FAMC @F5@
273
+ 1 NOTE @N22@
274
+ 1 OBJE
275
+ 2 FORM TEXT
276
+ 2 TITL Plain TEXT document
277
+ 2 FILE Document.tex
278
+ 1 OBJE
279
+ 2 FORM W8BN
280
+ 2 TITL Microsoft Word document
281
+ 2 FILE Document.DOC
282
+ 1 OBJE
283
+ 2 FORM RTF
284
+ 2 TITL Rich text format document
285
+ 2 FILE Document.RTF
286
+ 1 OBJE
287
+ 2 FORM PDF
288
+ 2 TITL Portable document format file
289
+ 2 FILE Document.pdf
290
+ 1 CHAN
291
+ 2 DATE 11 Jan 2001
292
+ 3 TIME 16:01:03
293
+ 1 RIN 5
294
+ 0 @I10@ INDI
295
+ 1 NAME Nonstandard Multimedia /Filelinks/
296
+ 1 SEX F
297
+ 1 BIRT
298
+ 2 DATE 1870
299
+ 1 DEAT Y
300
+ 1 FAMS @F7@
301
+ 1 FAMC @F5@
302
+ 1 NOTE @N21@
303
+ 1 OBJE
304
+ 2 FORM PICT
305
+ 2 TITL Macintosh PICT file
306
+ 2 FILE ImgFile.PIC
307
+ 1 OBJE
308
+ 2 FORM PNTG
309
+ 2 TITL Macintosh MacPaint file
310
+ 2 FILE ImgFile.MAC
311
+ 1 OBJE
312
+ 2 FORM TPIC
313
+ 2 TITL TGA image file
314
+ 2 FILE ImgFile.TGA
315
+ 1 OBJE
316
+ 2 FORM aiff
317
+ 2 TITL Macintosh sound file
318
+ 2 FILE enthist.aif
319
+ 1 OBJE
320
+ 2 FORM mov
321
+ 2 TITL QuickTime movie file
322
+ 2 FILE suntun.mov
323
+ 1 OBJE
324
+ 2 TITL Adobe Photoshop file
325
+ 2 FORM 8BPS
326
+ 2 FILE ImgFile.PSD
327
+ 1 OBJE
328
+ 2 FORM mpeg
329
+ 2 TITL Mpeg Movie File
330
+ 2 FILE top.mpg
331
+ 1 CHAN
332
+ 2 DATE 11 Jan 2001
333
+ 3 TIME 16:00:39
334
+ 1 RIN 6
335
+ 0 @I9@ INDI
336
+ 1 NAME Standard GEDCOM /Filelinks/
337
+ 1 SEX M
338
+ 1 BIRT
339
+ 2 DATE 1835
340
+ 1 FAMS @F5@
341
+ 1 NOTE @N18@
342
+ 1 OBJE
343
+ 2 TITL Windows bit mapped image file
344
+ 2 FORM bmp
345
+ 2 FILE ImgFile.BMP
346
+ 1 OBJE
347
+ 2 TITL GIF image file
348
+ 2 FORM gif
349
+ 2 FILE ImgFile.GIF
350
+ 1 OBJE
351
+ 2 TITL JPEG image file
352
+ 2 FORM jpeg
353
+ 2 FILE ImgFile.JPG
354
+ 1 OBJE
355
+ 2 TITL Tagged image format file
356
+ 2 FORM tiff
357
+ 2 FILE ImgFile.TIF
358
+ 1 OBJE
359
+ 2 FORM pcx
360
+ 2 TITL Windows paint brush file
361
+ 2 FILE ImgFile.PCX
362
+ 1 OBJE
363
+ 2 TITL Windows sound File
364
+ 2 FORM wav
365
+ 2 FILE force.wav
366
+ 1 OBJE @M1@
367
+ 1 CHAN
368
+ 2 DATE 11 Jan 2001
369
+ 3 TIME 16:02:06
370
+ 1 RIN 7
371
+ 0 @PERSON2@ INDI
372
+ 1 NAME Mary First /Jones/
373
+ 1 SEX F
374
+ 1 BIRT
375
+ 2 DATE BEF 1970
376
+ 1 DEAT
377
+ 2 DATE AFT 2000
378
+ 1 FAMS @FAMILY1@
379
+ 1 NOTE @N31@
380
+ 1 CHAN
381
+ 2 DATE 11 Jan 2001
382
+ 3 TIME 15:58:16
383
+ 1 RIN 8
384
+ 0 @I15@ INDI
385
+ 1 NAME Torture GEDCOM /Matriarch/
386
+ 1 SEX F
387
+ 1 BIRT
388
+ 2 DATE 12 FEB 1840
389
+ 1 DEAT
390
+ 2 DATE 15 JUN 1915
391
+ 1 FAMS @F5@
392
+ 1 CHAN
393
+ 2 DATE 11 Jan 2001
394
+ 3 TIME 16:01:59
395
+ 1 RIN 9
396
+ 0 @PERSON8@ INDI
397
+ 1 NAME Elizabeth Second /Smith/
398
+ 1 SEX F
399
+ 1 BIRT
400
+ 2 DATE BET MAY 1979 AND AUG 1979
401
+ 1 DEAT
402
+ 2 DATE FROM APR 2000 TO 5 MAR 2001
403
+ 1 FAMS @FAMILY2@
404
+ 1 NOTE @N32@
405
+ 1 CHAN
406
+ 2 DATE 11 Jan 2001
407
+ 3 TIME 15:58:58
408
+ 1 RIN 10
409
+ 0 @PERSON3@ INDI
410
+ 1 NAME Chris Locked /Torture/
411
+ 1 BIRT
412
+ 2 DATE MAR 1999
413
+ 2 PLAC Las Vegas, Nevada USA
414
+ 1 FAMC @FAMILY1@
415
+ 1 NOTE @N20@
416
+ 1 CHAN
417
+ 2 DATE 11 Jan 2001
418
+ 3 TIME 15:55:43
419
+ 2 NOTE This date is the last time this record was changed
420
+ 1 RESN locked
421
+ 1 RIN 11
422
+ 0 @PERSON1@ INDI
423
+ 1 NAME Joseph Tag /Torture/
424
+ 2 NPFX Prof.
425
+ 2 GIVN Joseph
426
+ 2 NICK Joe
427
+ 2 SPFX Le
428
+ 2 SURN Torture
429
+ 2 NSFX Jr.
430
+ 2 SOUR @SOURCE1@
431
+ 3 PAGE 42
432
+ 2 NOTE These are notes about the first NAME structure in this record. These notes are
433
+ 3 CONC embedded in the INDIVIDUAL record itself.
434
+ 3 CONT
435
+ 3 CONT The second name structure in this record uses all possible tags for a personal name
436
+ 3 CONC structure.
437
+ 3 CONT
438
+ 3 CONT NOTE: many applications are confused by two NAME structures.
439
+ 1 SEX M
440
+ 1 BIRT
441
+ 2 DATE 31 DEC 1965
442
+ 2 PLAC Salt Lake City, UT, USA
443
+ 2 TYPE Normal
444
+ 2 ADDR St. Marks Hospital
445
+ 3 CONT Salt Lake City, UT
446
+ 3 CONT USA
447
+ 2 AGNC none
448
+ 2 OBJE
449
+ 3 TITL Link to multimedia file
450
+ 3 FORM tiff
451
+ 3 FILE ImgFile.TIF
452
+ 2 SOUR @SOURCE1@
453
+ 3 PAGE 42
454
+ 3 QUAY 2
455
+ 3 NOTE Some notes about this birth source citation which are embedded in the citation
456
+ 4 CONC structure itself.
457
+ 2 NOTE @N8@
458
+ 2 FAMC @PARENTS@
459
+ 1 DEAT
460
+ 2 DATE ABT 15 JAN 2001
461
+ 2 PLAC New York, New York, USA
462
+ 3 FORM city, state, country
463
+ 3 NOTE The place structure has more detail than usually used for places
464
+ 3 SOUR @SOURCE1@
465
+ 2 AGE 76
466
+ 2 TYPE slow
467
+ 2 ADDR at Home
468
+ 2 CAUS Cancer
469
+ 2 AGNC none
470
+ 2 OBJE
471
+ 3 FORM jpeg
472
+ 3 TITL Multimedia link about the death event
473
+ 3 FILE ImgFile.JPG
474
+ 2 SOUR @SOURCE1@
475
+ 3 PAGE 42
476
+ 3 DATA
477
+ 4 DATE 31 DEC 1900
478
+ 4 TEXT Some death source text.
479
+ 3 QUAY 3
480
+ 3 NOTE A death source note.
481
+ 2 NOTE A death event note.
482
+ 1 FAMS @FAMILY1@
483
+ 2 NOTE Note about the link to the family record with his first spouse.
484
+ 2 NOTE Another note about the link to the family record with his first spouse.
485
+ 1 FAMS @FAMILY2@
486
+ 1 FAMC @PARENTS@
487
+ 2 NOTE Note about this link to his parents family record.
488
+ 2 NOTE Another note about this link to his parents family record
489
+ 1 FAMC @ADOPTIVE_PARENTS@
490
+ 2 PEDI adopted
491
+ 2 NOTE Note about the link to his adoptive parents family record.
492
+ 1 BAPM Y
493
+ 2 DATE ABT 31 DEC 1997
494
+ 2 PLAC The place
495
+ 2 AGE 3 months
496
+ 2 TYPE BAPM
497
+ 2 ADDR Church Name
498
+ 3 CONT Street Address
499
+ 3 CONT City Name, zip
500
+ 3 CONT Country
501
+ 2 CAUS Birth
502
+ 2 AGNC The Church
503
+ 2 OBJE
504
+ 3 FORM jpeg
505
+ 3 TITL JPEG File Link
506
+ 3 FILE ImgFile.JPG
507
+ 2 SOUR @SOURCE1@
508
+ 3 PAGE 42
509
+ 3 DATA
510
+ 4 DATE 31 DEC 1900
511
+ 4 TEXT Sample baptism Source text.
512
+ 3 QUAY 3
513
+ 3 NOTE A baptism source note.
514
+ 2 NOTE A baptism event note (the event of baptism (not LDS), performed in infancy or later. See also BAPL and CHR).
515
+ 1 CHR
516
+ 2 DATE CAL 31 DEC 1997
517
+ 2 PLAC The place
518
+ 2 TYPE CHR
519
+ 2 SOUR @SOURCE1@
520
+ 3 PAGE 42
521
+ 3 DATA
522
+ 4 DATE 31 DEC 1900
523
+ 4 TEXT Sample CHR Source text.
524
+ 3 QUAY 3
525
+ 3 NOTE A christening Source note.
526
+ 2 NOTE Christening event note (the religious event (not LDS) of baptizing and/or naming a
527
+ 3 CONC child).
528
+ 2 FAMC @ADOPTIVE_PARENTS@
529
+ 1 CHR
530
+ 2 DATE EST 30 DEC 1997
531
+ 2 PLAC The place
532
+ 2 TYPE CHR
533
+ 2 SOUR @SOURCE1@
534
+ 3 PAGE 42
535
+ 3 DATA
536
+ 4 DATE 31 DEC 1900
537
+ 4 TEXT Some christening source text.
538
+ 5 CONT This is the second christening structure.
539
+ 3 QUAY 3
540
+ 3 NOTE A christening Source note.
541
+ 2 NOTE Alternative christening event note. GEDOM allows more than one of the same type
542
+ 3 CONC of event.
543
+ 1 BLES
544
+ 2 DATE BEF 31 DEC 1997
545
+ 2 PLAC The place
546
+ 2 TYPE BLES
547
+ 2 SOUR @SOURCE1@
548
+ 3 PAGE 42
549
+ 3 DATA
550
+ 4 DATE 31 DEC 1900
551
+ 4 TEXT Some blessing source text.
552
+ 3 QUAY 3
553
+ 3 NOTE A blessing source note.
554
+ 2 NOTE Blessing event note (a religious event of bestowing divine care or intercession.
555
+ 3 CONC Sometimes given in connection with a naming ceremony)
556
+ 1 BARM
557
+ 2 DATE AFT 31 DEC 1997
558
+ 2 PLAC The place
559
+ 2 TYPE BARM
560
+ 2 SOUR @SOURCE1@
561
+ 3 PAGE 42
562
+ 3 DATA
563
+ 4 DATE 31 DEC 1900
564
+ 4 TEXT Some Bar Mitzvah source text.
565
+ 3 QUAY 3
566
+ 3 NOTE A Bar Mitzvah source note.
567
+ 2 NOTE Bar Mitzvah event note (the ceremonial event held when a Jewish boy reaches age
568
+ 3 CONC 13).
569
+ 1 BASM
570
+ 2 DATE FROM 31 DEC 1997
571
+ 2 PLAC The place
572
+ 2 TYPE BASM
573
+ 2 SOUR @SOURCE1@
574
+ 3 PAGE 42
575
+ 3 DATA
576
+ 4 DATE 31 DEC 1900
577
+ 4 TEXT Some Bas Mitzvah source text.
578
+ 3 QUAY 3
579
+ 3 NOTE A Bas Mitzvah source note.
580
+ 2 NOTE Bas Mitzvah event note (the ceremonial event held when a Jewish girl reaches age 13,
581
+ 3 CONC also known as "Bat Mitzvah").
582
+ 1 ADOP Y
583
+ 2 DATE TO 31 DEC 1997
584
+ 2 PLAC The place
585
+ 2 TYPE ADOP
586
+ 2 SOUR @SOURCE1@
587
+ 3 PAGE 42
588
+ 3 DATA
589
+ 4 DATE 31 DEC 1900
590
+ 4 TEXT Some adoption source text.
591
+ 3 QUAY 3
592
+ 3 NOTE An adoption source note.
593
+ 2 NOTE Adoption event note (pertaining to creation of a child-parent relationship that does
594
+ 3 CONC not exist biologically).
595
+ 2 FAMC @ADOPTIVE_PARENTS@
596
+ 3 ADOP BOTH
597
+ 1 CHRA
598
+ 2 DATE BET 31 DEC 1997 AND 1 FEB 1998
599
+ 2 PLAC The place
600
+ 2 TYPE CHRA
601
+ 2 SOUR @SOURCE1@
602
+ 3 PAGE 42
603
+ 3 DATA
604
+ 4 DATE 31 DEC 1900
605
+ 4 TEXT Some christening source text.
606
+ 3 QUAY 3
607
+ 3 NOTE A christening source note.
608
+ 2 NOTE Adult christening event note (the religious event (not LDS) of baptizing and/or
609
+ 3 CONC naming an adult person).
610
+ 1 CONF
611
+ 2 DATE FROM 31 DEC 1997 TO 2 JAN 1998
612
+ 2 PLAC The place
613
+ 2 TYPE CONF
614
+ 2 SOUR @SOURCE1@
615
+ 3 PAGE 42
616
+ 3 DATA
617
+ 4 DATE 31 DEC 1900
618
+ 4 TEXT Some CONF Source text.
619
+ 3 QUAY 3
620
+ 3 NOTE A CONF Source note.
621
+ 2 NOTE CONFIRMATION event note (the religious event (not LDS) of conferring the gift of the Holy Ghost and, among protestants, full church membership).
622
+ 1 FCOM
623
+ 2 DATE INT 31 DEC 1997 (a test)
624
+ 2 PLAC The place
625
+ 2 TYPE FCOM
626
+ 2 SOUR @SOURCE1@
627
+ 3 PAGE 42
628
+ 3 DATA
629
+ 4 DATE 31 DEC 1900
630
+ 4 TEXT Some first communion source text.
631
+ 3 QUAY 3
632
+ 3 NOTE An first communion source note.
633
+ 2 NOTE First communion event note (a religious rite, the first act of sharing in the Lord's
634
+ 3 CONC supper as part of church worship).
635
+ 1 ORDN
636
+ 2 DATE (No idea of the date)
637
+ 2 PLAC The place
638
+ 2 TYPE ORDN
639
+ 2 SOUR @SOURCE1@
640
+ 3 PAGE 42
641
+ 3 DATA
642
+ 4 DATE 31 DEC 1900
643
+ 4 TEXT Some ordination source text.
644
+ 3 QUAY 3
645
+ 3 NOTE An ordination source note.
646
+ 2 NOTE Ordination event note (a religious event of receiving authority to act in religious
647
+ 3 CONC matters).
648
+ 1 GRAD
649
+ 2 DATE 31 DEC 1997
650
+ 2 PLAC The place
651
+ 2 TYPE GRAD
652
+ 2 SOUR @SOURCE1@
653
+ 3 PAGE 42
654
+ 3 DATA
655
+ 4 DATE 31 DEC 1900
656
+ 4 TEXT Some graduation source text.
657
+ 3 QUAY 3
658
+ 3 NOTE A graduation source note.
659
+ 2 NOTE Graduation event note (an event of awarding educational diplomas or degrees to
660
+ 3 CONC individuals).
661
+ 1 EMIG
662
+ 2 DATE 1997
663
+ 2 PLAC The place
664
+ 2 TYPE EMIG
665
+ 2 SOUR @SOURCE1@
666
+ 3 PAGE 42
667
+ 3 DATA
668
+ 4 DATE 31 DEC 1900
669
+ 4 TEXT Some emigration source text.
670
+ 3 QUAY 3
671
+ 3 NOTE An emigration source note.
672
+ 2 NOTE Emigration event note (an event of leaving one's homeland with the intent of residing
673
+ 3 CONC elsewhere).
674
+ 1 IMMI
675
+ 2 DATE DEC 1997
676
+ 2 PLAC The place
677
+ 2 TYPE IMMI
678
+ 2 SOUR @SOURCE1@
679
+ 3 PAGE 42
680
+ 3 DATA
681
+ 4 DATE 31 DEC 1900
682
+ 4 TEXT Some immigration source text.
683
+ 3 QUAY 3
684
+ 3 NOTE An immigration source note.
685
+ 2 NOTE Immigration event note (an event of entering into a new locality with the intent of
686
+ 3 CONC residing there).
687
+ 1 NATU
688
+ 2 DATE 5 AUG 1100 B.C.
689
+ 2 PLAC The place
690
+ 2 TYPE NATU
691
+ 2 SOUR @SOURCE1@
692
+ 3 PAGE 42
693
+ 3 DATA
694
+ 4 DATE 31 DEC 1900
695
+ 4 TEXT Some naturalization source text.
696
+ 3 QUAY 3
697
+ 3 NOTE A naturalization source note.
698
+ 2 NOTE Naturalization event note (the event of obtaining citizenship).
699
+ 1 CENS
700
+ 2 DATE 2 TVT 5758
701
+ 2 PLAC The place
702
+ 2 TYPE CENS
703
+ 2 SOUR @SOURCE1@
704
+ 3 PAGE 42
705
+ 3 DATA
706
+ 4 DATE 31 DEC 1900
707
+ 4 TEXT Some census source text.
708
+ 3 QUAY 3
709
+ 3 NOTE A census source note.
710
+ 2 NOTE Census event note (the event of the periodic count of the population for a designated
711
+ 3 CONC locality, such as a national or state Census).
712
+ 1 RETI
713
+ 2 DATE 11 NIVO 0006
714
+ 2 PLAC The place
715
+ 2 TYPE RETI
716
+ 2 SOUR @SOURCE1@
717
+ 3 PAGE 42
718
+ 3 DATA
719
+ 4 DATE 31 DEC 1900
720
+ 4 TEXT Some retirement source text.
721
+ 3 QUAY 3
722
+ 3 NOTE A retirement source note.
723
+ 2 NOTE Retirement event note (an event of exiting an occupational relationship with an
724
+ 3 CONC employer after a qualifying time period).
725
+ 1 PROB
726
+ 2 DATE FROM 25 SVN 5757 TO 26 IYR 5757
727
+ 2 PLAC The place
728
+ 2 TYPE PROB
729
+ 2 SOUR @SOURCE1@
730
+ 3 PAGE 42
731
+ 3 DATA
732
+ 4 DATE 31 DEC 1900
733
+ 4 TEXT Some probate source text.
734
+ 3 QUAY 3
735
+ 3 NOTE A probate source note.
736
+ 2 NOTE Probate event note (an event of judicial determination of the validity of a will. May
737
+ 3 CONC indicate several related court activities over several dates).
738
+ 1 BURI
739
+ 2 DATE 5 VEND 0010
740
+ 2 PLAC The place
741
+ 2 TYPE BURI
742
+ 2 SOUR @SOURCE1@
743
+ 3 PAGE 42
744
+ 3 DATA
745
+ 4 DATE 31 DEC 1900
746
+ 4 TEXT Some burial source text.
747
+ 3 QUAY 3
748
+ 3 NOTE A burial source note.
749
+ 2 NOTE Burial event note (the event of the proper disposing of the mortal remains of a
750
+ 3 CONC deceased person).
751
+ 1 WILL
752
+ 2 DATE INT 2 TVT 5758 (interpreted Hebrew date)
753
+ 2 PLAC The place
754
+ 2 TYPE WILL
755
+ 2 SOUR @SOURCE1@
756
+ 3 PAGE 42
757
+ 3 DATA
758
+ 4 DATE 31 DEC 1900
759
+ 4 TEXT Some will source text.
760
+ 3 QUAY 3
761
+ 3 NOTE A will source note.
762
+ 2 NOTE Will event note (a legal document treated as an event, by which a person disposes of
763
+ 3 CONC his or her estate, to take effect after death. The event date is the date the will was
764
+ 3 CONC signed while the person was alive. See also Probate).
765
+ 1 CREM Y
766
+ 1 EVEN
767
+ 2 DATE 5 MAY 0005
768
+ 2 PLAC The place
769
+ 2 TYPE EVEN
770
+ 2 SOUR @SOURCE1@
771
+ 3 PAGE 42
772
+ 3 DATA
773
+ 4 DATE 31 DEC 1900
774
+ 4 TEXT Some generic event source text.
775
+ 3 QUAY 3
776
+ 3 NOTE A generic event source note.
777
+ 2 NOTE Generic event note (a noteworthy happening related to an individual, a group, or an
778
+ 3 CONC organization). The TYPE tag specifies the type of event.
779
+ 1 BAPL
780
+ 2 DATE 5 MAY 0005 B.C.
781
+ 2 PLAC Salt Lake City
782
+ 2 STAT Cleared
783
+ 2 TEMP Mormon Temple
784
+ 2 SOUR @SOURCE1@
785
+ 2 NOTE @N5@
786
+ 1 CONL Y
787
+ 1 ENDL
788
+ 2 DATE BET 5 APR 1712/13 AND 28 SEP 1714/15
789
+ 1 SLGC
790
+ 2 DATE 27 OCT 1699/00
791
+ 2 FAMC @PARENTS@
792
+ 1 RESI
793
+ 2 DATE 31 DEC 1997
794
+ 2 PLAC The place
795
+ 2 AGE 35
796
+ 2 TYPE RESI
797
+ 2 ADDR Address in Free Form Line 1
798
+ 3 CONT Address in Free Form Line 2
799
+ 3 CONT Address in Free Form Line 3
800
+ 3 ADR1 Special Address Line 1
801
+ 3 ADR2 Special Address Line 2
802
+ 3 CITY City Name
803
+ 3 STAE State name
804
+ 3 POST Postal Code
805
+ 3 CTRY USA
806
+ 2 PHON +1-800-555-5555
807
+ 2 CAUS Needed housing
808
+ 2 AGNC None
809
+ 2 SOUR @SOURCE1@
810
+ 3 PAGE 42
811
+ 3 DATA
812
+ 4 DATE 31 DEC 1900
813
+ 4 TEXT Some residence source text.
814
+ 3 QUAY 3
815
+ 3 NOTE A residence source note.
816
+ 2 NOTE Residence attribute note (the act of dwelling at an address for a period of time).
817
+ 1 OCCU Occupation
818
+ 2 DATE 31 DEC 1997
819
+ 2 AGE 40
820
+ 2 PLAC The place
821
+ 2 TYPE OCCU
822
+ 2 ADDR Work address line 1
823
+ 3 CONT Work address line 2
824
+ 3 CONT Work address line 3
825
+ 2 CAUS Need for money
826
+ 2 AGNC Employer
827
+ 2 OBJE
828
+ 3 FORM gif
829
+ 3 TITL GIF Image File
830
+ 3 FILE ImgFile.GIF
831
+ 2 SOUR @SOURCE1@
832
+ 3 PAGE 42
833
+ 3 DATA
834
+ 4 DATE 31 DEC 1900
835
+ 4 TEXT Some occupation source text.
836
+ 3 QUAY 3
837
+ 3 NOTE An occupation source note.
838
+ 2 NOTE Occupation attribute note (the type of work or profession of an individual).
839
+ 1 OCCU Another occupation
840
+ 2 DATE 31 DEC 1998
841
+ 2 PLAC The place
842
+ 2 TYPE OCCU
843
+ 2 SOUR @SOURCE1@
844
+ 3 PAGE 42
845
+ 3 DATA
846
+ 4 DATE 31 DEC 1900
847
+ 4 TEXT Some occupation source text.
848
+ 3 QUAY 3
849
+ 3 NOTE An occupation source note.
850
+ 2 NOTE Occupation attribute note. This is the second occupation attribute in the record.
851
+ 1 EDUC Education
852
+ 2 DATE 31 DEC 1997
853
+ 2 PLAC The place
854
+ 2 TYPE EDUC
855
+ 2 SOUR @SOURCE1@
856
+ 3 PAGE 42
857
+ 3 DATA
858
+ 4 DATE 31 DEC 1900
859
+ 4 TEXT Some education source text.
860
+ 3 QUAY 3
861
+ 3 NOTE An education source note.
862
+ 2 NOTE Education attribute note (indicator of a level of education attained).
863
+ 1 DSCR Physical description
864
+ 2 DATE 31 DEC 1997
865
+ 2 PLAC The place
866
+ 2 TYPE PHYS
867
+ 2 SOUR @SOURCE1@
868
+ 3 PAGE 42
869
+ 3 DATA
870
+ 4 DATE 31 DEC 1900
871
+ 4 TEXT Some physical description source text.
872
+ 3 QUAY 3
873
+ 3 NOTE A physical description source note.
874
+ 2 NOTE Physical description attribute note (the physical characteristics of a person, place, or
875
+ 3 CONC thing).
876
+ 1 RELI Religion
877
+ 2 DATE 31 DEC 1997
878
+ 2 PLAC The place
879
+ 2 TYPE RELI
880
+ 2 SOUR @SOURCE1@
881
+ 3 PAGE 42
882
+ 3 DATA
883
+ 4 DATE 31 DEC 1900
884
+ 4 TEXT Some religion source text.
885
+ 3 QUAY 3
886
+ 3 NOTE A religion source note.
887
+ 2 NOTE Religion attribute note (a religious denomination to which a person is affiliated or for
888
+ 3 CONC which a record applies).
889
+ 1 SSN 6942
890
+ 2 DATE 31 DEC 1997
891
+ 2 PLAC The place
892
+ 2 TYPE SSN
893
+ 2 SOUR @SOURCE1@
894
+ 3 PAGE 42
895
+ 3 DATA
896
+ 4 DATE 31 DEC 1900
897
+ 4 TEXT Some Social security number source text.
898
+ 3 QUAY 3
899
+ 3 NOTE An Social security number source note.
900
+ 2 NOTE Social security number attribute note (a number assigned by the United States Social
901
+ 3 CONC Security Administration. Used for tax identification purposes).
902
+ 1 IDNO 6942
903
+ 2 DATE 31 DEC 1997
904
+ 2 PLAC The place
905
+ 2 TYPE IDNO
906
+ 2 SOUR @SOURCE1@
907
+ 3 PAGE 42
908
+ 3 DATA
909
+ 4 DATE 31 DEC 1900
910
+ 4 TEXT Some national identification number source text.
911
+ 3 QUAY 3
912
+ 3 NOTE An national identification number source note.
913
+ 2 NOTE National identification number attribute note (a number assigned to identify a person
914
+ 3 CONC within some significant external system).
915
+ 1 PROP Possessions
916
+ 2 DATE 31 DEC 1997
917
+ 2 PLAC The place
918
+ 2 TYPE PROP
919
+ 2 SOUR @SOURCE1@
920
+ 3 PAGE 42
921
+ 3 DATA
922
+ 4 DATE 31 DEC 1900
923
+ 4 TEXT Some possessions source text.
924
+ 3 QUAY 3
925
+ 3 NOTE @N11@
926
+ 2 NOTE Possessions or property attribute note (pertaining to possessions such as real estate
927
+ 3 CONC or other property of interest).
928
+ 1 CAST Cast name
929
+ 2 DATE 31 DEC 1997
930
+ 2 PLAC The place
931
+ 2 TYPE CAST
932
+ 2 SOUR @SOURCE1@
933
+ 3 PAGE 42
934
+ 3 DATA
935
+ 4 DATE 31 DEC 1900
936
+ 4 TEXT Some caste name source text.
937
+ 3 QUAY 3
938
+ 3 NOTE A caste name source note.
939
+ 2 NOTE Caste name attribute note (the name of an individual's rank or status in society, based
940
+ 3 CONC on racial or religious differences, or differences in wealth, inherited rank, profession,
941
+ 3 CONC occupation, etc).
942
+ 1 NCHI 42
943
+ 2 DATE 31 DEC 1997
944
+ 2 PLAC The place
945
+ 2 TYPE NCHI
946
+ 2 SOUR @SOURCE1@
947
+ 3 PAGE 42
948
+ 3 DATA
949
+ 4 DATE 31 DEC 1900
950
+ 4 TEXT Some number of children source text.
951
+ 3 QUAY 3
952
+ 3 NOTE Am number of children source note.
953
+ 2 NOTE Number of children attribute note.
954
+ 1 NMR 42
955
+ 2 DATE 31 DEC 1997
956
+ 2 PLAC The place
957
+ 2 TYPE NMR
958
+ 2 SOUR @SOURCE1@
959
+ 3 PAGE 42
960
+ 3 DATA
961
+ 4 DATE 31 DEC 1900
962
+ 4 TEXT Some number of marriages source text.
963
+ 3 QUAY 3
964
+ 3 NOTE An number of marriages source note.
965
+ 2 NOTE Number of marriages attribute note.
966
+ 1 TITL Nobility title
967
+ 2 DATE 31 DEC 1997
968
+ 2 PLAC The place
969
+ 2 TYPE TITL
970
+ 2 SOUR @SOURCE1@
971
+ 3 PAGE 42
972
+ 3 DATA
973
+ 4 DATE 31 DEC 1900
974
+ 4 TEXT Some title source text.
975
+ 3 QUAY 3
976
+ 3 NOTE A title source note.
977
+ 2 NOTE Title attribute note (a description of a specific writing or other work, such as the title
978
+ 3 CONC of a book when used in a source context, or a formal designation used by an
979
+ 3 CONC individual in connection with positions of royalty or other social status,
980
+ 3 CONT such as Grand Duke).
981
+ 1 NATI National or tribe origin
982
+ 2 DATE 31 DEC 1997
983
+ 2 PLAC The place
984
+ 2 TYPE NATI
985
+ 2 SOUR @SOURCE1@
986
+ 3 PAGE 42
987
+ 3 DATA
988
+ 4 DATE 31 DEC 1900
989
+ 4 TEXT Some nationality source text.
990
+ 3 QUAY 3
991
+ 3 NOTE An nationality source note.
992
+ 2 NOTE Nationality attribute note (the national heritage of an individual).
993
+ 1 NOTE @N4@
994
+ 2 SOUR @SOURCE1@
995
+ 1 NOTE This is a second set of notes for this single individual record. It is embedded in the
996
+ 2 CONC INDIVIDUAL record instead of being in a separate NOTE record.
997
+ 2 CONT
998
+ 2 CONT These notes also have a source citation to a SOURCE record. In GEDCOM
999
+ 2 CONC this source can only be a single line and links to a SOURCE record.
1000
+ 2 SOUR @SOURCE1@
1001
+ 1 SOUR @SOURCE1@
1002
+ 2 PAGE 42
1003
+ 2 DATA
1004
+ 3 DATE 31 DEC 1900
1005
+ 3 TEXT Some sample text from the first source on this record.
1006
+ 2 QUAY 0
1007
+ 2 NOTE A source note.
1008
+ 1 SOUR @SR2@
1009
+ 2 NOTE @N12@
1010
+ 1 SOUR This source is embedded in the record instead of being a link to a
1011
+ 2 CONC separate SOURCE record.
1012
+ 2 CONT The source description can use any number of lines
1013
+ 2 TEXT Text from a source. The preferred approach is to cite sources by
1014
+ 3 CONC links to SOURCE records.
1015
+ 3 CONT Here is a new line of text from the source.
1016
+ 2 NOTE @N17@
1017
+ 1 OBJE
1018
+ 2 FORM gif
1019
+ 2 TITL GIF Image File
1020
+ 2 FILE ImgFile.GIF
1021
+ 1 ALIA @I9@
1022
+ 1 ASSO @I9@
1023
+ 2 RELA Has multimedia links
1024
+ 2 SOUR @SOURCE1@
1025
+ 3 PAGE 42
1026
+ 3 DATA
1027
+ 4 DATE 31 DEC 1900
1028
+ 4 TEXT Sample text about this source on an association.
1029
+ 2 NOTE Note on association link.
1030
+ 1 ASSO @PERSON5@
1031
+ 2 RELA Father
1032
+ 1 SUBM @SUBMITTER@
1033
+ 1 ANCI @SUBMITTER@
1034
+ 1 DESI @SUBMITTER@
1035
+ 1 REFN User reference number
1036
+ 2 TYPE Type of user number
1037
+ 1 RIN 12
1038
+ 1 RFN Record File Number
1039
+ 1 AFN Ancestral File Number
1040
+ 1 CHAN
1041
+ 2 DATE 17 Feb 2003
1042
+ 3 TIME 9:55:13
1043
+ 0 @PERSON7@ INDI
1044
+ 1 NAME Pat Smith /Torture/
1045
+ 1 BIRT
1046
+ 2 DATE 1 JAN 2001
1047
+ 2 PLAC London, UK
1048
+ 1 FAMC @FAMILY2@
1049
+ 1 NOTE @N30@
1050
+ 1 CHAN
1051
+ 2 DATE 11 Jan 2001
1052
+ 3 TIME 15:56:49
1053
+ 1 RIN 13
1054
+ 0 @PERSON4@ INDI
1055
+ 1 NAME Sandy Privacy /Torture/
1056
+ 1 RESN privacy
1057
+ 1 BIRT
1058
+ 2 DATE 15 FEB 2000
1059
+ 2 PLAC Chicago, IL, USA
1060
+ 1 FAMC @FAMILY1@
1061
+ 1 NOTE @N29@
1062
+ 1 CHAN
1063
+ 2 DATE 11 Jan 2001
1064
+ 3 TIME 15:56:15
1065
+ 1 RIN 14
1066
+ 0 @PERSON5@ INDI
1067
+ 1 NAME William Joseph /Torture/
1068
+ 1 SEX M
1069
+ 1 BIRT
1070
+ 2 DATE ABT 1930
1071
+ 1 DEAT Y
1072
+ 2 DATE INT 1995 (from estimated age)
1073
+ 2 AGE 65
1074
+ 2 CAUS Old age
1075
+ 1 FAMS @PARENTS@
1076
+ 1 FAMC @F6@
1077
+ 1 NOTE @N28@
1078
+ 1 CHAN
1079
+ 2 DATE 11 Jan 2001
1080
+ 3 TIME 15:59:40
1081
+ 1 RIN 15
1082
+ 0 @FAMILY1@ FAM
1083
+ 1 HUSB @PERSON1@
1084
+ 1 WIFE @PERSON2@
1085
+ 1 MARR
1086
+ 2 DATE 31 DEC 1997
1087
+ 2 PLAC The place
1088
+ 2 TYPE Man and Wife
1089
+ 2 ADDR A Church
1090
+ 3 CONT Main Street, USA
1091
+ 2 CAUS Love
1092
+ 2 AGNC Catholic Church
1093
+ 2 HUSB
1094
+ 3 AGE 42y
1095
+ 2 WIFE
1096
+ 3 AGE 42y 6m
1097
+ 2 OBJE
1098
+ 3 FORM jpeg
1099
+ 3 TITL Multimedia link about the marriage event
1100
+ 3 FILE ImgFile.JPG
1101
+ 2 SOUR @SOURCE1@
1102
+ 3 PAGE 42
1103
+ 3 DATA
1104
+ 4 DATE 31 DEC 1900
1105
+ 4 TEXT Text from marriage source.
1106
+ 3 QUAY 3
1107
+ 3 NOTE A note about the marriage source.
1108
+ 2 NOTE Marriage event note (a legal, common-law, or customary event of creating a family
1109
+ 3 CONC unit of a man and a woman as husband and wife).
1110
+ 1 CHIL @PERSON3@
1111
+ 1 CHIL @PERSON4@
1112
+ 1 NCHI 42
1113
+ 1 ENGA Y
1114
+ 2 DATE 31 DEC 1997
1115
+ 2 PLAC The place
1116
+ 2 AGE 42
1117
+ 2 TYPE ENGA
1118
+ 2 ADDR The house
1119
+ 3 CONT Anytown, USA
1120
+ 2 CAUS Desire
1121
+ 2 AGNC None
1122
+ 2 HUSB
1123
+ 3 AGE 42y
1124
+ 2 WIFE
1125
+ 3 AGE STILLBORN
1126
+ 2 OBJE
1127
+ 3 FORM bmp
1128
+ 3 TITL BMP Image File
1129
+ 3 FILE ImgFile.BMP
1130
+ 2 SOUR @SOURCE1@
1131
+ 3 PAGE 42
1132
+ 3 DATA
1133
+ 4 DATE 31 DEC 1900
1134
+ 4 TEXT Sample text from engagement source.
1135
+ 3 QUAY 3
1136
+ 3 NOTE A note about this engagement source.
1137
+ 2 NOTE Engagement event note (an event of recording or announcing an agreement between
1138
+ 3 CONC two people to become married).
1139
+ 1 MARB
1140
+ 2 DATE 31 DEC 1997
1141
+ 2 PLAC The place
1142
+ 2 TYPE MARB
1143
+ 2 HUSB
1144
+ 3 AGE 42y
1145
+ 2 WIFE
1146
+ 3 AGE 42y 6m
1147
+ 2 SOUR @SOURCE1@
1148
+ 3 PAGE 42
1149
+ 3 DATA
1150
+ 4 DATE 31 DEC 1900
1151
+ 4 TEXT Sample text from marriage banns source.
1152
+ 3 QUAY 3
1153
+ 3 NOTE A note about this marriage banns source.
1154
+ 2 NOTE Marriage banns event note (an event of an official public notice given that two people
1155
+ 3 CONC intend to marry).
1156
+ 1 MARC
1157
+ 2 DATE 31 DEC 1997
1158
+ 2 PLAC The place
1159
+ 2 TYPE MARC
1160
+ 2 HUSB
1161
+ 3 AGE 42y
1162
+ 2 WIFE
1163
+ 3 AGE >42y 6m
1164
+ 2 SOUR @SOURCE1@
1165
+ 3 PAGE 42
1166
+ 3 DATA
1167
+ 4 DATE 31 DEC 1900
1168
+ 4 TEXT Sample text from marriage contract source.
1169
+ 3 QUAY 3
1170
+ 3 NOTE A note about this marriage contract source.
1171
+ 2 NOTE Marriage contract event note (an event of recording a formal agreement of marriage,
1172
+ 3 CONC including the prenuptial agreement in which marriage partners reach agreement about
1173
+ 3 CONC the property rights of one or both, securing property to their children).
1174
+ 1 MARL
1175
+ 2 DATE 31 DEC 1997
1176
+ 2 PLAC The place
1177
+ 2 TYPE MARL
1178
+ 2 HUSB
1179
+ 3 AGE 42y
1180
+ 2 WIFE
1181
+ 3 AGE <42y 6m
1182
+ 2 SOUR @SOURCE1@
1183
+ 3 PAGE 42
1184
+ 3 DATA
1185
+ 4 DATE 31 DEC 1900
1186
+ 4 TEXT Sample text from marriage license source.
1187
+ 3 QUAY 3
1188
+ 3 NOTE A note about this marriage license source.
1189
+ 2 NOTE Marriage license event note (an event of obtaining a legal license to marry).
1190
+ 1 MARS
1191
+ 2 DATE 31 DEC 1997
1192
+ 2 PLAC The place
1193
+ 2 TYPE MARS
1194
+ 2 HUSB
1195
+ 3 AGE 42y
1196
+ 2 WIFE
1197
+ 3 AGE INFANT
1198
+ 2 SOUR @SOURCE1@
1199
+ 3 PAGE 42
1200
+ 3 DATA
1201
+ 4 DATE 31 DEC 1900
1202
+ 4 TEXT Sample text from marriage settlement source.
1203
+ 3 QUAY 3
1204
+ 3 NOTE A note about this marriage settlement source.
1205
+ 2 NOTE Marriage settlement event note (an event of creating an agreement between two
1206
+ 3 CONC people contemplating marriage, at which time they agree to release or modify
1207
+ 3 CONC property rights that would otherwise arise from the marriage).
1208
+ 1 DIV
1209
+ 2 DATE 31 DEC 1997
1210
+ 2 PLAC The place
1211
+ 2 TYPE DIV
1212
+ 2 HUSB
1213
+ 3 AGE 42y 3d
1214
+ 2 WIFE
1215
+ 3 AGE 42m
1216
+ 2 SOUR @SOURCE1@
1217
+ 3 PAGE 42
1218
+ 3 DATA
1219
+ 4 DATE 31 DEC 1900
1220
+ 4 TEXT Sample text from divorce source.
1221
+ 3 QUAY 3
1222
+ 3 NOTE A note about this divorce source.
1223
+ 2 NOTE Divorce event note (an event of dissolving a marriage through civil action).
1224
+ 1 DIVF
1225
+ 2 DATE 31 DEC 1997
1226
+ 2 PLAC The place
1227
+ 2 HUSB
1228
+ 3 AGE 42d
1229
+ 2 WIFE
1230
+ 3 AGE CHILD
1231
+ 2 SOUR @SOURCE1@
1232
+ 3 PAGE 42
1233
+ 3 DATA
1234
+ 4 DATE 31 DEC 1900
1235
+ 4 TEXT Sample text from divorce filing source.
1236
+ 3 QUAY 3
1237
+ 3 NOTE A note about this divorce filing source.
1238
+ 2 NOTE DIVORCE_FILED event note (an event of filing for a divorce by a spouse).
1239
+ 1 ANUL Y
1240
+ 2 DATE 31 DEC 1997
1241
+ 1 CENS
1242
+ 2 DATE 31 DEC 1997
1243
+ 2 PLAC The place
1244
+ 2 TYPE CENS
1245
+ 2 HUSB
1246
+ 3 AGE 42y 6m 9d
1247
+ 2 WIFE
1248
+ 3 AGE 6m 9d
1249
+ 2 SOUR @SOURCE1@
1250
+ 3 PAGE 42
1251
+ 3 DATA
1252
+ 4 DATE 31 DEC 1900
1253
+ 4 TEXT Sample text from census source.
1254
+ 3 QUAY 3
1255
+ 3 NOTE A note about this census source.
1256
+ 2 NOTE Census event note (the event of the periodic count of the population for a designated
1257
+ 3 CONC locality, such as a national or state Census).
1258
+ 1 EVEN
1259
+ 2 DATE 31 DEC 1997
1260
+ 2 PLAC The place
1261
+ 2 TYPE EVEN
1262
+ 2 HUSB
1263
+ 3 AGE 42y
1264
+ 2 WIFE
1265
+ 3 AGE 42y 6m
1266
+ 2 SOUR @SOURCE1@
1267
+ 3 PAGE 42
1268
+ 3 DATA
1269
+ 4 DATE 31 DEC 1900
1270
+ 4 TEXT Sample text from generic family event source.
1271
+ 3 QUAY 3
1272
+ 3 NOTE A note about this generic family event source.
1273
+ 2 NOTE Generic family vent note (a noteworthy happening related to an individual, a group, or
1274
+ 3 CONC an organization).
1275
+ 1 SLGS
1276
+ 2 DATE 12 DEC 1976
1277
+ 2 PLAC Temple
1278
+ 2 STAT Child
1279
+ 2 TEMP Temple Code
1280
+ 2 SOUR @SOURCE1@
1281
+ 3 DATA
1282
+ 4 TEXT Sample text from LDS spouse sealing source.
1283
+ 3 NOTE @N19@
1284
+ 2 NOTE @N6@
1285
+ 1 NOTE Comments on "Joseph Tag Torture-Mary First Jones" FAMILY Record.
1286
+ 2 CONT
1287
+ 2 CONT This record contains all possible types of data that can be stored in a FAMILY
1288
+ 2 CONC (FAM) GEDCOM record. Here are some comments on the data tested here and
1289
+ 2 CONC things to look for when this file is imported into any GEDCOM application:
1290
+ 2 CONT
1291
+ 2 CONT 1. The marriage event (MARR) uses all possible tags for such a structure including
1292
+ 2 CONC notes, sources, and a link to a multimedia file.
1293
+ 2 CONT
1294
+ 2 CONT 2. This family has two children.
1295
+ 2 CONT
1296
+ 2 CONT 3. This family has all possible family events (including a generic event or EVEN
1297
+ 2 CONC structure). Some notes are:
1298
+ 2 CONT a. The engaged structure has all possible tags for event detail.
1299
+ 2 CONT b. The annulment event (ANUL) has no data except a "Y" in the first line to
1300
+ 2 CONC indicate that the event has occurred. The importing software should keep this event in
1301
+ 2 CONC this record even though it contains no data.
1302
+ 2 CONT c. The LDS Spouse Sealing event tests all possible detail tags for an LDS.
1303
+ 2 CONT d. The TYPE tag of each event has the name of the GEDCOM tag for that event.
1304
+ 2 CONC There is no TYPE tag in the annulment event because that structure is empty.
1305
+ 2 CONT
1306
+ 2 CONT 4. This record has this one note structure which is to a set of embedded notes (and
1307
+ 2 CONC which you are reading now).
1308
+ 2 CONT
1309
+ 2 CONT 5. This record has one source citation.
1310
+ 2 CONT
1311
+ 2 CONT 6. This record is linked a submitter.
1312
+ 2 CONT
1313
+ 2 CONT 7. This record has all remaining tags allowed in FAMILY records for user reference
1314
+ 2 CONC number, record ID, and the changed date.
1315
+ 1 SOUR @SOURCE1@
1316
+ 2 PAGE 42
1317
+ 2 DATA
1318
+ 3 DATE 31 DEC 1900
1319
+ 3 TEXT A sample text from a source of this family
1320
+ 2 QUAY 0
1321
+ 2 NOTE A note this source on the FAMILY record.
1322
+ 1 OBJE
1323
+ 2 FORM bmp
1324
+ 2 TITL BMP Image File
1325
+ 2 FILE ImgFile.BMP
1326
+ 1 SUBM @SUBMITTER@
1327
+ 1 REFN User Reference Number
1328
+ 2 TYPE Type of user number
1329
+ 1 RIN 1
1330
+ 1 CHAN
1331
+ 2 DATE 11 Jan 2001
1332
+ 3 TIME 16:18:40
1333
+ 0 @PARENTS@ FAM
1334
+ 1 HUSB @PERSON5@
1335
+ 1 CHIL @PERSON1@
1336
+ 1 NOTE @N33@
1337
+ 1 CHAN
1338
+ 2 DATE 13 Jun 2000
1339
+ 3 TIME 17:00:35
1340
+ 1 RIN 2
1341
+ 0 @ADOPTIVE_PARENTS@ FAM
1342
+ 1 WIFE @PERSON6@
1343
+ 1 CHIL @PERSON1@
1344
+ 1 NOTE @N34@
1345
+ 1 CHAN
1346
+ 2 DATE 13 Jun 2000
1347
+ 3 TIME 17:01:18
1348
+ 1 RIN 3
1349
+ 0 @FAMILY2@ FAM
1350
+ 1 HUSB @PERSON1@
1351
+ 1 WIFE @PERSON8@
1352
+ 1 CHIL @PERSON7@
1353
+ 1 NOTE @N35@
1354
+ 1 CHAN
1355
+ 2 DATE 13 Jun 2000
1356
+ 3 TIME 17:01:46
1357
+ 1 RIN 4
1358
+ 0 @F5@ FAM
1359
+ 1 HUSB @I9@
1360
+ 1 WIFE @I15@
1361
+ 1 CHIL @I10@
1362
+ 1 CHIL @I11@
1363
+ 1 CHIL @I12@
1364
+ 1 NOTE @N36@
1365
+ 1 RIN 5
1366
+ 1 CHAN
1367
+ 2 DATE 11 Jan 2001
1368
+ 3 TIME 16:50:37
1369
+ 0 @F6@ FAM
1370
+ 1 HUSB @I14@
1371
+ 1 WIFE @I13@
1372
+ 1 CHIL @PERSON5@
1373
+ 1 NOTE @N37@
1374
+ 1 RIN 6
1375
+ 1 CHAN
1376
+ 2 DATE 11 Jan 2001
1377
+ 3 TIME 16:51:48
1378
+ 0 @F7@ FAM
1379
+ 1 WIFE @I10@
1380
+ 1 CHIL @I14@
1381
+ 1 NOTE @N38@
1382
+ 1 RIN 7
1383
+ 1 CHAN
1384
+ 2 DATE 11 Jan 2001
1385
+ 3 TIME 16:52:53
1386
+ 0 @SOURCE1@ SOUR
1387
+ 1 TITL Everything You Every Wanted to Know about GEDCOM Tags, But
1388
+ 2 CONC Were Afraid to Ask!
1389
+ 2 CONT You can start new lines in this field too.
1390
+ 1 ABBR All About GEDCOM Tags
1391
+ 1 AUTH Author or Authorss of this Source using multiple lines if
1392
+ 2 CONC necessary.
1393
+ 2 CONT Here is a new line in this field
1394
+ 1 PUBL Details of the publisher of this source using multiple lines
1395
+ 2 CONC if necessary.
1396
+ 2 CONT Here is a new line in this field
1397
+ 1 REPO @R1@
1398
+ 2 CALN 920.23
1399
+ 3 MEDI Book (or other description of this source)
1400
+ 2 NOTE A short note about the repository link. This note is about the repository (if more
1401
+ 3 CONC information is needed other than call number and simple description). Notes about
1402
+ 3 CONC the Source itself are usually entered elsewhere.
1403
+ 1 TEXT This section is used to generic text from the course. It will usually be a
1404
+ 2 CONC quote from the text that is relevant to the use of this source in the current
1405
+ 2 CONC GEDCOM file.
1406
+ 2 CONT
1407
+ 2 CONT It may use as many lines as needed.
1408
+ 1 DATA
1409
+ 2 EVEN BIRT, CHR
1410
+ 3 DATE FROM 1 JAN 1980 TO 1 FEB 1982
1411
+ 3 PLAC Anytown, Anycounty, USA
1412
+ 2 EVEN DEAT
1413
+ 3 DATE FROM 1 JAN 1980 TO 1 FEB 1982
1414
+ 3 PLAC County Some, Ireland
1415
+ 2 AGNC Responsible agency for data in this source
1416
+ 2 NOTE A note about data in source.
1417
+ 3 CONT
1418
+ 3 CONT This note includes a blank line before this text. These notes are used to describe the
1419
+ 3 CONC data in this source. Notes about the source itself are usually entered in a different set
1420
+ 3 CONC of notes.
1421
+ 1 NOTE @N15@
1422
+ 1 NOTE These are notes embedded in the SOURCE Record instead of in a separate NOTE
1423
+ 2 CONC RECORD.
1424
+ 1 OBJE
1425
+ 2 TITL JPEG image file link
1426
+ 2 FORM jpeg
1427
+ 2 NOTE @N14@
1428
+ 2 FILE ImgFile.JPG
1429
+ 1 REFN User Reference Number
1430
+ 2 TYPE User Reference Type
1431
+ 1 RIN 1
1432
+ 1 CHAN
1433
+ 2 DATE 14 Jan 2001
1434
+ 3 TIME 14:29:25
1435
+ 0 @SR2@ SOUR
1436
+ 1 TITL All I Know About GEDCOM, I Learned on the Internet
1437
+ 1 ABBR What I Know About GEDCOM
1438
+ 1 AUTH Second Source Author
1439
+ 1 NOTE @N16@
1440
+ 1 CHAN
1441
+ 2 DATE 11 Jan 2001
1442
+ 3 TIME 16:21:39
1443
+ 1 RIN 2
1444
+ 0 @R1@ REPO
1445
+ 1 NAME Family History Library
1446
+ 1 ADDR 35 North West Temple
1447
+ 2 CONT Salt Lake City, UT 84111
1448
+ 2 CONT USA
1449
+ 2 ADR1 35 North West Temple
1450
+ 2 ADR2 Across the street from Temple Square
1451
+ 2 CITY Salt Lake City
1452
+ 2 STAE Utah
1453
+ 2 POST 84111
1454
+ 2 CTRY USA
1455
+ 1 PHON +1-801-240-2331 (information)
1456
+ 1 PHON +1-801-240-1278 (gifts & donations)
1457
+ 1 PHON +1-801-240-2584 (support)
1458
+ 1 NOTE @N2@
1459
+ 1 REFN User Ref Number
1460
+ 2 TYPE Sample
1461
+ 1 RIN 1
1462
+ 1 CHAN
1463
+ 2 DATE 12 Mar 2000
1464
+ 3 TIME 10:36:02
1465
+ 0 @N1@ NOTE
1466
+ 1 CONC Test link to a graphics file about the main Submitter of this file.
1467
+ 1 CHAN
1468
+ 2 DATE 24 May 1999
1469
+ 3 TIME 16:39:55
1470
+ 0 @N2@ NOTE
1471
+ 1 CONC Comments on "Family History Library" REPOSITORY Record.
1472
+ 1 CONT
1473
+ 1 CONT This record uses all possible GEDCOM tags for a REPOSITORY record. Some
1474
+ 1 CONC things to look for are:
1475
+ 1 CONT
1476
+ 1 CONT 1. The address is specified twice. Once in a multi-line address record and once in
1477
+ 1 CONC separate lines. The first method is usually enough. The second method is to be more
1478
+ 1 CONC specific about parts of the address. Is everything imported?
1479
+ 1 CONT
1480
+ 1 CONT 2. There are multiple phone numbers. Are they all imported?
1481
+ 1 SOUR @SOURCE1@
1482
+ 2 PAGE 1
1483
+ 2 DATA
1484
+ 3 DATE 1 MAY 1999
1485
+ 3 TEXT Text from the source about this repository.
1486
+ 2 QUAY 3
1487
+ 1 CHAN
1488
+ 2 DATE 12 Mar 2000
1489
+ 3 TIME 11:44:05
1490
+ 0 @N4@ NOTE
1491
+ 1 CONC Comments on "Joseph Tag Torture" INDIVIDUAL Record.
1492
+ 1 CONT
1493
+ 1 CONT This record contains all possible types of data that can be stored in an INDIVIDUAL (INDI)
1494
+ 1 CONC GEDCOM record. Here are some comments on the data tested here and things to look for
1495
+ 1 CONC when this file is imported into any GEDCOM application:
1496
+ 1 CONT
1497
+ 1 CONT 1. This record has two NAME structures. How will a program handle this type of data which
1498
+ 1 CONC is allowed in GEDCOM? (Because some GEDCOM files get very bothered by a second
1499
+ 1 CONC name, the files TGC551.ged and TGC551LF files are identical to the TGC55.ged and
1500
+ 1 CONC TGC55LF.ged files except only one name structure is used for this individual - hence the "1"
1501
+ 1 CONC in their names).
1502
+ 1 CONT
1503
+ 1 CONT 2. The first NAME structure has all possible subordinate tags for a NAME structure
1504
+ 1 CONC including source and notes a source citation and some notes. The second NAME structure
1505
+ 1 CONC (when used) has a source citation and some notes. Are these all imported?
1506
+ 1 CONT
1507
+ 1 CONT 3. The Birth and Death events use all possible fields including subordinate tags, sources,
1508
+ 1 CONC multimedia links (in Birth), and notes. The birth data has an attached family link which is
1509
+ 1 CONC sometimes needed in case of ambiguous parentage.
1510
+ 1 CONT
1511
+ 1 CONT 4. This individual has two spouses. The links to the spouses have attached notes.
1512
+ 1 CONT
1513
+ 1 CONT 5. This individual has two sets of parents - natural parents and adoptive parents. Each parent
1514
+ 1 CONC link has attached notes. The adoptive parents has a subordinate pedigree (PEDI) tag.
1515
+ 1 CONT
1516
+ 1 CONT 6. This individual has all possible events (including a generic event or EVEN structure). The
1517
+ 1 CONC GEDCOM tags for the events are given in the TYPE tag of each event. Some comments are:
1518
+ 1 CONT a. The baptism record has all possible tags for event detail.
1519
+ 1 CONT b. There are 2 christening records to see how programs react to duplicate events (which
1520
+ 1 CONC are allowed).
1521
+ 1 CONT c. The adoption event has a family link to give more information about adoptive parentage.
1522
+ 1 CONT d. The cremation event (CREM) has no data except a "Y" in the first line to indicate that
1523
+ 1 CONC the event has occurred. The importing software should keep this event in this record even
1524
+ 1 CONC though it contains no data (The GEDCOM tag is not in this TYPE tag).
1525
+ 1 CONT e. The LDS Baptism event tests all possible detail tags for an LDS ordinance.
1526
+ 1 CONT f. The LDS confirmation has no data except a "Y" in the first line to indicate that the event
1527
+ 1 CONC has occurred. The importing software should keep this event in this record even though it
1528
+ 1 CONC contains no data.
1529
+ 1 CONT g. The date fields in the various events test the possible GEDCOM methods for
1530
+ 1 CONC expressing dates, approximate dates, date ranges, and interpreted dates. There are also a few
1531
+ 1 CONC Hebrew dates, French Republic dates. and "B.C" dates.
1532
+ 1 CONT
1533
+ 1 CONT 7. The residence structure use all possible subordinate tags in the address part of the
1534
+ 1 CONC residence.
1535
+ 1 CONT
1536
+ 1 CONT 8. This individual has all possible attributes. The GEDCOM tags for the attributes are given
1537
+ 1 CONC in the TYPE tag of each attribute. Some notes are:
1538
+ 1 CONT a. There are 2 occupation attributes to test how programs handle multiple tags of the same
1539
+ 1 CONC type (which is allowed).
1540
+ 1 CONT b. The first OCCU attribute uses all possible subordinate tags for an attribute.
1541
+ 1 CONT
1542
+ 1 CONT 9. This record has three note structures. The first is this set of notes which is in a separate
1543
+ 1 CONC NOTE record. The other two are NOTE structures embedded in the record. Are all imported
1544
+ 1 CONC and kept separate? Furthermore, the two embedded note structures have subordinate source
1545
+ 1 CONC citations. The second set of notes has a source citation to a SOURCE record and the third set
1546
+ 1 CONC of notes has an embedded source citation.
1547
+ 1 CONT
1548
+ 1 CONT 10. This record has three source citations. Two are citations to a SOURCE record; one is an
1549
+ 1 CONC embedded source citation (used in older GEDCOM files).
1550
+ 1 CONT
1551
+ 1 CONT 11. This record has one link to a multimedia file. For more testing of multimedia links, see
1552
+ 1 CONC the "Standard GEDCOM Filelinks," "Nonstandard Multimedia Filelinks," "General Custom
1553
+ 1 CONC Filelinks," and "Extra URL Filelinks" INDIVIDUAL records.
1554
+ 1 CONT
1555
+ 1 CONT 12. This individual has one alias and two associations. All possible tags in the first
1556
+ 1 CONC association link are used.
1557
+ 1 CONT
1558
+ 1 CONT 13. This record is linked to a submitter and to two submitters with interest in the ancestors
1559
+ 1 CONC and descendants of this individual.
1560
+ 1 CONT
1561
+ 1 CONT 14. This record has all remaining tags allowed in individual records for user reference
1562
+ 1 CONC number, record ID, record file number, ancestral file number, and the changed date.
1563
+ 1 CHAN
1564
+ 2 DATE 12 Jan 2001
1565
+ 3 TIME 0:36:39
1566
+ 0 @N5@ NOTE
1567
+ 1 CONC Notes on this LDS event. All possible LDS ordinance detail tags are used in
1568
+ 1 CONC this event.
1569
+ 1 CHAN
1570
+ 2 DATE 6 Mar 2000
1571
+ 3 TIME 22:05:42
1572
+ 0 @N6@ NOTE
1573
+ 1 CONC Notes on this LDS Spouse Sealing Event.
1574
+ 1 SOUR @SOURCE1@
1575
+ 1 CHAN
1576
+ 2 DATE 26 May 1999
1577
+ 3 TIME 22:38:25
1578
+ 0 @N8@ NOTE
1579
+ 1 CONC Some specific note about the birth event.
1580
+ 1 CONT
1581
+ 1 CONT These notes are in a separate NOTE record. These notes also have their own source
1582
+ 1 CONC citation structure.
1583
+ 1 SOUR @SR2@
1584
+ 2 DATA
1585
+ 3 DATE 1 JUN 1945
1586
+ 3 TEXT Here is some text from the source. The source is about the notes
1587
+ 4 CONC for the birth event.
1588
+ 2 QUAY 3
1589
+ 2 NOTE @N9@
1590
+ 2 PAGE 102
1591
+ 2 EVEN Event type cited in source
1592
+ 3 ROLE Role in cited event
1593
+ 1 CHAN
1594
+ 2 DATE 18 Jun 2000
1595
+ 3 TIME 1:09:46
1596
+ 0 @N9@ NOTE
1597
+ 1 CONC These are notes in a NOTE record. It is a bit redundant, but you can add source
1598
+ 1 CONC citations directly to NOTE records in addition to adding source citations to the
1599
+ 1 CONC initial GEDCOM structure that the notes are about.
1600
+ 1 CONT
1601
+ 1 CONT This example source citation in a NOTE record has all possible source citation
1602
+ 1 CONC fields filled in.
1603
+ 1 CHAN
1604
+ 2 DATE 9 Jun 1999
1605
+ 3 TIME 13:16:57
1606
+ 0 @N11@ NOTE
1607
+ 1 CONC A possessions source note.
1608
+ 1 CHAN
1609
+ 2 DATE 18 Jun 2000
1610
+ 3 TIME 1:37:42
1611
+ 0 @N12@ NOTE
1612
+ 1 CONC This is a second source citation in this record.
1613
+ 1 CHAN
1614
+ 2 DATE 6 Mar 2000
1615
+ 3 TIME 22:18:51
1616
+ 0 @N14@ NOTE
1617
+ 1 CONC These notes can be used to add more information about the multimedia file linked to
1618
+ 1 CONC this SOURCE record.
1619
+ 1 CHAN
1620
+ 2 DATE 12 Mar 2000
1621
+ 3 TIME 9:49:23
1622
+ 0 @N15@ NOTE
1623
+ 1 CONC Comments on "Everything You Every Wanted to Know about GEDCOM Tags" SOURCE Record.
1624
+ 1 CONT
1625
+ 1 CONT This is a set of notes about this SOURCE record. These notes are for anything else
1626
+ 1 CONC needed. There are other places to enter notes about the storage of the source (in the
1627
+ 1 CONC Repository link) and about the data in the source (in the DATA structure).
1628
+ 1 CONT
1629
+ 1 CONT This particular SOURCE record uses all possible GEDCOM tags for a SOURCE
1630
+ 1 CONC record. Some things to check are:
1631
+ 1 CONT
1632
+ 1 CONT 1. Are the separate notes structures in the Repository link and the DATA structure
1633
+ 1 CONC preserved on importing?
1634
+ 1 CONT
1635
+ 1 CONT 2. Does the software recognize two sets of event types in the DATA structure?
1636
+ 1 CONT
1637
+ 1 CONT 3. Are the multimedia links preserved?
1638
+ 1 CONT
1639
+ 1 CONT 4. This record as two sets of notes - this one in a separate record and a second one
1640
+ 1 CONC embedded in the SOURCE record. Are they both imported and kept separate?
1641
+ 1 CHAN
1642
+ 2 DATE 13 Jun 2000
1643
+ 3 TIME 17:04:24
1644
+ 0 @N16@ NOTE
1645
+ 1 CONC Comments on "All I Know About GEDCOM, I Learned on the Internet" SOURCE record.
1646
+ 1 CONT
1647
+ 1 CONT This is another SOURCE record. How does the importing software handle multiple
1648
+ 1 CONC sources in the GEDCOM file? This source only fills a few GEDCOM structures.
1649
+ 1 CHAN
1650
+ 2 DATE 12 Mar 2000
1651
+ 3 TIME 12:46:21
1652
+ 0 @N17@ NOTE
1653
+ 1 CONC How does software handle embedded SOURCE records on import? Such source
1654
+ 1 CONC citations are common in old GEDCOM files. More modern GEDCOM files should
1655
+ 1 CONC use source citations to SOURCE records.
1656
+ 1 CHAN
1657
+ 2 DATE 12 Mar 2000
1658
+ 3 TIME 10:56:56
1659
+ 0 @N18@ NOTE
1660
+ 1 CONC Comments on "Standard GEDCOM Filelinks" INDIVIDUAL Record.
1661
+ 1 CONT
1662
+ 1 CONT The GEDCOM standard lets you link records to multimedia objects kept in separate
1663
+ 1 CONC files. When GEDCOM 5.5 was released, it only mentioned allowing links to a small
1664
+ 1 CONC number of multimedia files types and some of them are Windows-only file types.
1665
+ 1 CONC The recommended list is
1666
+ 1 CONT
1667
+ 1 CONT bmp - Windows but map file
1668
+ 1 CONT gif - Bit map, 256 color GIF files (common on the Internet)
1669
+ 1 CONT jpeg - Bit-mapped files developed for photographs (also common on the Internet)
1670
+ 1 CONT ole - Linked object
1671
+ 1 CONT pcx - Windows paintbrush file
1672
+ 1 CONT tiff - Tagged image format file
1673
+ 1 CONT wav - Windows sound file
1674
+ 1 CONT
1675
+ 1 CONT This INDIVIDUAL record has links to this limited set of multimedia files (except
1676
+ 1 CONC for ole). These links are created by having an OBJE structure with the path name to
1677
+ 1 CONC the file in a subordinate FILE tag and the format of the file in a subordinate FORM
1678
+ 1 CONC tag.
1679
+ 1 CONT
1680
+ 1 CONT It does not make sense to limit files links to this small set of file types. It does not
1681
+ 1 CONC allow for future file types and, for example, it ignores movie files types. You can visit
1682
+ 1 CONC the "Nonstandard Multimedia Filelinks" record to see links to other types of multimedia files.
1683
+ 1 CONC You can visit the "General Custom Filelinks" and the "Extra URL Filelinks" records to see links to
1684
+ 1 CONC any file type and to universal resource locators.
1685
+ 1 CONT
1686
+ 1 CONT NOTE: The path names for the linked files here are just the file names. A good
1687
+ 1 CONC GEDCOM program should search for the files and might look first in the same
1688
+ 1 CONC folder as this test GEDCOM file. A weaker program might be unable to locate these
1689
+ 1 CONC files and you will have to enter the full path names.
1690
+ 1 CONT
1691
+ 1 CONT EMBEDDED Multimedia Object:
1692
+ 1 CONT GEDCOM 5.5 has a method for encoding multimedia objects and storing them in
1693
+ 1 CONC MULTIMEDIA Records. This INDIVIDUAL has a link to such an embedded
1694
+ 1 CONC object. The object has encoded data, written using the GEDCOM 5.5 encoding
1695
+ 1 CONC algorithm, for the image of a small flower. To my knowledge, there are no genealogy
1696
+ 1 CONC programs that can actually read and decode such objects. The main reason for
1697
+ 1 CONC inclusion of the object here is to see how programs will treat this record. Good
1698
+ 1 CONC programs will leave them in the file (it is bad manners to delete someone's data). Bad
1699
+ 1 CONC programs will simple delete the object from the file.
1700
+ 1 REFN User Reference Number
1701
+ 2 TYPE User Reference Type
1702
+ 1 RIN 1
1703
+ 1 CHAN
1704
+ 2 DATE 11 Jan 2001
1705
+ 3 TIME 15:41:51
1706
+ 0 @N19@ NOTE
1707
+ 1 CONC A note about this LDS spouse sealing source.
1708
+ 1 CHAN
1709
+ 2 DATE 12 Mar 2000
1710
+ 3 TIME 12:32:13
1711
+ 0 @N20@ NOTE
1712
+ 1 CONC Comments on "Chris Locked Torture" record.
1713
+ 1 CONT
1714
+ 1 CONT These notes test line breaking in note records with multiple lines. These notes are for
1715
+ 1 CONC a locked individual and thus you should not be able to edit them.
1716
+ 1 CONT
1717
+ 1 CONT TEST #1: Line breaks in the middle of a word
1718
+ 1 CONT These lines appear together. The word TE
1719
+ 1 CONC ST should appear as a single word and
1720
+ 1 CONC not be broken onto two lines.
1721
+ 1 CONT
1722
+ 1 CONT TEST #2: Translation of "at" signs
1723
+ 1 CONT The GEDCOM standard says the "@@" sign should appear in any text in the file
1724
+ 1 CONC as double "@@@@" signs. This recommendation is superfluous, because there is
1725
+ 1 CONC never a case when an "@@" sign in data can be confused with other GEDCOM uses
1726
+ 1 CONC of the "@@" sign. The question here is how does the software import:
1727
+ 1 CONT
1728
+ 1 CONT A single @@ sign in some notes entered by using two characters.
1729
+ 1 CONT
1730
+ 1 CONT If all "at" signs above appear above as 2 or 4 at signs, that GEDCOM software is not
1731
+ 1 CONC converting double at signs to single at signs.
1732
+ 1 CONT
1733
+ 1 CONT TEST #3: Bad line breaks between word but a forgotten space
1734
+ 1 CONT A little below, the words "End" and "Start" are on two lines in the note record.
1735
+ 1 CONC The line with "End," however, forgot the required trailing blank. Thus, a proper
1736
+ 1 CONC importing of these bad notes should combine the two words with no space between
1737
+ 1 CONC "End" and "Start". Here is End
1738
+ 1 CONC Start as described above. They should appear as one
1739
+ 1 CONC word.
1740
+ 1 CONT
1741
+ 1 CONT TEST #4: Blank lines
1742
+ 1 CONT The above paragraphs should have blank lines between them.
1743
+ 1 CHAN
1744
+ 2 DATE 11 Jan 2001
1745
+ 3 TIME 15:35:25
1746
+ 0 @N21@ NOTE
1747
+ 1 CONC Comments on "Nonstandard Multimedia Filelinks" INDIVIDUAL Record.
1748
+ 1 CONT
1749
+ 1 CONT File links in GEDCOM are created by having an OBJE structure with the path name
1750
+ 1 CONC to the file in a subordinate FILE tag and the format of the file in a subordinate
1751
+ 1 CONC FORM tag. It does not make sense to limit file links to the small set of file types
1752
+ 1 CONC mentioned in the GEDCOM standard (see INDIVIDUAL record "Standard GEDCOM Filelinks"
1753
+ 1 CONC for those file types). This INDIVIDUAL record has links to
1754
+ 1 CONC other types of multimedia files including movie files, other image file types, and some
1755
+ 1 CONC Macintosh file types.
1756
+ 1 CONT
1757
+ 1 CONT What will a genealogy program do when in encounters to logical extensions to
1758
+ 1 CONC GEDCOM file links? Good programs will follow the links. Weaker programs will
1759
+ 1 CONC simply delete them from your file (it is bad manners to delete someone's data).
1760
+ 1 CONT
1761
+ 1 CONT Some other possible multimedia file type not yet linked to this record are:
1762
+ 1 CONT avi - Microsoft movie file
1763
+ 1 CONT midi - sound file
1764
+ 1 CONT mp3 - music file
1765
+ 1 CHAN
1766
+ 2 DATE 11 Jan 2001
1767
+ 3 TIME 15:43:04
1768
+ 0 @N22@ NOTE
1769
+ 1 CONC Comments on "General Custom Filelinks" INDIVIDUAL Record.
1770
+ 1 CONT
1771
+ 1 CONT File links in GEDCOM are created by having an OBJE structure with the path name
1772
+ 1 CONC to the file in a subordinate FILE tag and the format of the file in a subordinate
1773
+ 1 CONC FORM tag. It does not make sense to limit file links to the small set of multimedia
1774
+ 1 CONC file types mentioned in the GEDCOM standard (see INDIVIDUAL record
1775
+ 1 CONC "Standard GEDCOM Filelinks" for those file types). The INDIVIDUAL record
1776
+ 1 CONC "Nonstandard Multimedia Filelinks" has sample links to other types of multimedia files not
1777
+ 1 CONC included in the standard GEDCOM list. This INDIVIDUAL record has links to
1778
+ 1 CONC some non-multimedia files types.
1779
+ 1 CONT
1780
+ 1 CONT What will a genealogy program do when it encounters such logical extensions to
1781
+ 1 CONC GEDCOM file links? Good programs will follow the links. Weaker programs will
1782
+ 1 CONC simply delete them from your file (it is bad manners to delete someone's data).
1783
+ 1 CHAN
1784
+ 2 DATE 20 Jun 2000
1785
+ 3 TIME 1:06:34
1786
+ 0 @N23@ NOTE
1787
+ 1 CONC Comments on "Extra URL Filelinks" INDIVIDUAL Record.
1788
+ 1 CONT
1789
+ 1 CONT File links in GEDCOM are created by having an OBJE structure with the path name
1790
+ 1 CONC to the file in a subordinate FILE tag and the format of the file in a subordinate
1791
+ 1 CONC FORM tag. It does not make sense to limit file links to the small set of multimedia
1792
+ 1 CONC file types mentioned in the GEDCOM standard (see INDIVIDUAL record
1793
+ 1 CONC "Standard GEDCOM Filelinks" for those file types) or even to limit them to local
1794
+ 1 CONC files. This INDIVIDUAL record has a series of links with universal resource
1795
+ 1 CONC locators (URL) in the FILE tag and the file "URL" in the FORM tag.
1796
+ 1 CONT
1797
+ 1 CONT The sample URL links include links to a web sites, a link to an FTP site, and a link to
1798
+ 1 CONC send email.
1799
+ 1 CONT
1800
+ 1 CONT This extension of file links to URL links is non-standard GEDCOM. What will a
1801
+ 1 CONC genealogy program do when in encounters URL file links? Cleaver programs will
1802
+ 1 CONC find the file on the Internet using your default browser, FTP program, or email
1803
+ 1 CONC program. Weaker programs will simply delete them from your file (it is bad manners
1804
+ 1 CONC to delete someone's data).
1805
+ 1 CHAN
1806
+ 2 DATE 20 Jun 2000
1807
+ 3 TIME 1:09:48
1808
+ 0 @N24@ NOTE
1809
+ 1 CONC Comments on "Charlie Accented ANSEL" INDIVIDUAL Record.
1810
+ 1 CONT
1811
+ 1 CONT To represent accented characters, the ANSEL character set uses two-byte codes. The
1812
+ 1 CONC first byte is E0 to FB or FE (hexadecimal); the second byte is the letter to be
1813
+ 1 CONC accented.
1814
+ 1 CONT
1815
+ 1 CONT These notes have all possible accented characters. How many of the characters are
1816
+ 1 CONC represented correctly? Even programs that fully support ANSEL will not draw all
1817
+ 1 CONC these accented characters correctly. Many of them correspond to accents that can not
1818
+ 1 CONC be found in any langauge and therefore do not correspond to any computer fonts.
1819
+ 1 CONT
1820
+ 1 CONT code: E0 (Unicode: hook above, 0309) low rising tone mark
1821
+ 1 CONT �A�B�C�D�E�F�G�H�I�J�K�L�M
1822
+ 1 CONT �N�O�P�Q�R�S�T�U�V�W�X�Y�Z
1823
+ 1 CONT �a�b�c�d�e�f�g�h�i�j�k�l�m
1824
+ 1 CONT �n�o�p�q�r�s�t�u�v�w�x�y�z
1825
+ 1 CONT
1826
+ 1 CONT code: E1 (Unicode: grave, 0300) grave accent
1827
+ 1 CONT �A�B�C�D�E�F�G�H�I�J�K�L�M
1828
+ 1 CONT �N�O�P�Q�R�S�T�U�V�W�X�Y�Z
1829
+ 1 CONT �a�b�c�d�e�f�g�h�i�j�k�l�m
1830
+ 1 CONT �n�o�p�q�r�s�t�u�v�w�x�y�z
1831
+ 1 CONT
1832
+ 1 CONT code: E2 (Unicode: acute, 0301) acute accent:
1833
+ 1 CONT �A�B�C�D�E�F�G�H�I�J�K�L�M
1834
+ 1 CONT �N�O�P�Q�R�S�T�U�V�W�X�Y�Z
1835
+ 1 CONT �a�b�c�d�e�f�g�h�i�j�k�l�m
1836
+ 1 CONT �n�i�p�q�r�s�t�u�v�w�x�y�z
1837
+ 1 CONT
1838
+ 1 CONT code: E3 (Unicode: circumflex, 0302) circumflex accent
1839
+ 1 CONT �A�B�C�D�E�F�G�H�I�J�K�L�M
1840
+ 1 CONT �N�O�P�Q�R�S�T�U�V�W�X�Y�Z
1841
+ 1 CONT �a�b�c�d�e�f�g�h�i�j�k�l�m
1842
+ 1 CONT �n�o�p�q�r�s�t�u�v�w�x�y�z
1843
+ 1 CONT
1844
+ 1 CONT code: E4 (Unicode: tilde, 0303) tilde
1845
+ 1 CONT �A�B�C�D�E�F�G�H�I�J�K�L�M
1846
+ 1 CONT �N�O�P�Q�R�S�T�U�V�W�X�Y�Z
1847
+ 1 CONT �N�b�c�d�e�f�g�h�i�j�k�l�m
1848
+ 1 CONT �n�o�p�q�r�s�t�u�v�w�x�y�z
1849
+ 1 CONT
1850
+ 1 CONT code: E5 (Unicode: macron, 0304) macron
1851
+ 1 CONT �A�B�C�D�E�F�G�H�I�J�K�L�M
1852
+ 1 CONT �N�O�P�Q�R�S�T�U�V�W�X�Y�Z
1853
+ 1 CONT �a�b�c�d�e�f�g�h�i�j�k�l�m
1854
+ 1 CONT �n�o�p�q�r�s�t�u�v�w�x�y�z
1855
+ 1 CONT
1856
+ 1 CONT code: E6 (Unicode: breve, 0306) breve
1857
+ 1 CONT �A�B�C�D�E�F�G�H�I�J�K�L�M
1858
+ 1 CONT �N�O�P�Q�R�S�T�U�V�W�X�Y�Z
1859
+ 1 CONT �a�b�c�d�e�f�g�h�i�j�k�l�m
1860
+ 1 CONT �n�o�p�q�r�s�t�u�v�w�x�y�z
1861
+ 1 CONT
1862
+ 1 CONT code: E7 (Unicode: dot above, 0307) dot above
1863
+ 1 CONT �A�B�C�D�E�F�G�H�I�J�K�L�M
1864
+ 1 CONT �N�O�P�Q�R�S�T�U�V�W�X�Y�Z
1865
+ 1 CONT �a�b�c�d�e�f�g�h�i�j�k�l�m
1866
+ 1 CONT �n�o�p�q�r�s�t�u�v�w�x�y�z
1867
+ 1 CONT
1868
+ 1 CONT code: E8 (Unicode: diaeresis, 0308) umlaut (dieresis)
1869
+ 1 CONT �A�B�C�D�E�F�G�H�I�J�K�L�M
1870
+ 1 CONT �N�O�P�Q�R�S�T�U�V�W�X�Y�Z
1871
+ 1 CONT �a�b�c�d�e�f�g�h�i�j�k�l�m
1872
+ 1 CONT �n�o�p�q�r�s�t�u�v�w�x�y�z
1873
+ 1 CONT
1874
+ 1 CONT code: E9 (Unicode: caron, 030C) hacek
1875
+ 1 CONT �A�B�C�D�E�F�G�H�I�J�K�L�M
1876
+ 1 CONT �N�O�P�Q�R�S�T�U�V�W�X�Y�Z
1877
+ 1 CONT �a�b�c�d�e�f�g�h�i�j�k�l�m
1878
+ 1 CONT �n�o�p�q�r�s�t�u�v�w�x�y�z
1879
+ 1 CONT
1880
+ 1 CONT code: EA (Unicode: ring above, 030A) circle above (angstrom)
1881
+ 1 CONT �A�B�C�D�E�F�G�H�I�J�K�L�M
1882
+ 1 CONT �N�O�P�Q�R�S�T�U�V�W�X�Y�Z
1883
+ 1 CONT �a�b�c�d�e�f�g�h�i�j�k�l�m
1884
+ 1 CONT �n�o�p�q�r�s�t�u�v�w�x�y�z
1885
+ 1 CONT
1886
+ 1 CONT code: EB (Unicode: ligature left half, FE20) ligature, left half
1887
+ 1 CONT �A�B�C�D�E�F�G�H�I�J�K�L�M
1888
+ 1 CONT �N�O�P�Q�R�S�T�U�V�W�X�Y�Z
1889
+ 1 CONT �a�b�c�d�e�f�g�h�i�j�k�l�m
1890
+ 1 CONT �n�o�p�q�r�s�t�u�v�w�x�y�z
1891
+ 1 CONT
1892
+ 1 CONT code: EC (Unicode: ligature right half, FE21) ligature, right half
1893
+ 1 CONT �A�B�C�D�E�F�G�H�I�J�K�L�M
1894
+ 1 CONT �N�O�P�Q�R�S�T�U�V�W�X�Y�Z
1895
+ 1 CONT �a�b�c�d�e�f�g�h�i�j�k�l�m
1896
+ 1 CONT �n�o�p�q�r�s�t�u�v�w�x�y�z
1897
+ 1 CONT
1898
+ 1 CONT code: ED (Unicode: comma above right, 0315) high comma, off center
1899
+ 1 CONT �A�B�C�D�E�F�G�H�I�J�K�L�M
1900
+ 1 CONT �N�O�P�Q�R�S�T�U�V�W�X�Y�Z
1901
+ 1 CONT �a�b�c�d�e�f�g�h�i�j�k�l�m
1902
+ 1 CONT �n�o�p�q�r�s�t�u�v�w�x�y�z
1903
+ 1 CONT
1904
+ 1 CONT code: EE (Unicode: double acute, 030B) double acute accent
1905
+ 1 CONT �A�B�C�D�E�F�G�H�I�J�K�L�M
1906
+ 1 CONT �N�O�P�Q�R�S�T�U�V�W�X�Y�Z
1907
+ 1 CONT �a�b�c�d�e�f�g�h�i�j�k�l�m
1908
+ 1 CONT �n�o�p�q�r�s�t�u�v�w�x�y�z
1909
+ 1 CONT
1910
+ 1 CONT code: EF (Unicode: candrabindu, 0310) candrabindu
1911
+ 1 CONT �A�B�C�D�E�F�G�H�I�J�K�L�M
1912
+ 1 CONT �N�O�P�Q�R�S�T�U�V�W�X�Y�Z
1913
+ 1 CONT �a�b�c�d�e�f�g�h�i�j�k�l�m
1914
+ 1 CONT �n�o�p�q�r�s�t�u�v�w�x�y�z
1915
+ 1 CONT
1916
+ 1 CONT code: F0 (Unicode: cedilla, 0327) cedilla
1917
+ 1 CONT �A�B�C�D�E�F�G�H�I�J�K�L�M
1918
+ 1 CONT �N�O�P�Q�R�S�T�U�V�W�X�Y�Z
1919
+ 1 CONT �a�b�c�d�e�f�g�h�i�j�k�l�m
1920
+ 1 CONT �n�o�p�q�r�s�t�u�v�w�x�y�z
1921
+ 1 CONT
1922
+ 1 CONT code: F1 (Unicode: ogonek, 0328) right hook
1923
+ 1 CONT �A�B�C�D�E�F�G�H�I�J�K�L�M
1924
+ 1 CONT �N�O�P�Q�R�S�T�U�V�W�X�Y�Z
1925
+ 1 CONT �a�b�c�d�e�f�g�h�i�j�k�l�m
1926
+ 1 CONT �n�o�p�q�r�s�t�u�v�w�x�y�z
1927
+ 1 CONT
1928
+ 1 CONT code: F2 (Unicode: dot below, 0323) dot below
1929
+ 1 CONT �A�B�C�D�E�F�G�H�I�J�K�L�M
1930
+ 1 CONT �N�O�P�Q�R�S�T�U�V�W�X�Y�Z
1931
+ 1 CONT �a�b�c�d�e�f�g�h�i�j�k�l�m
1932
+ 1 CONT �n�o�p�q�r�s�t�u�v�w�x�y�z
1933
+ 1 CONT
1934
+ 1 CONT code: F3 (Unicode: diaeresis below, 0324) double dot below
1935
+ 1 CONT �A�B�C�D�E�F�G�H�I�J�K�L�M
1936
+ 1 CONT �N�O�P�Q�R�S�T�U�V�W�X�Y�Z
1937
+ 1 CONT �a�b�c�d�e�f�g�h�i�j�k�l�m
1938
+ 1 CONT �n�o�p�q�r�s�t�u�v�w�x�y�z
1939
+ 1 CONT
1940
+ 1 CONT code: F4 (Unicode: ring below, 0325) circle below
1941
+ 1 CONT �A�B�C�D�E�F�G�H�I�J�K�L�M
1942
+ 1 CONT �N�O�P�Q�R�S�T�U�V�W�X�Y�Z
1943
+ 1 CONT �a�b�c�d�e�f�g�h�i�j�k�l�m
1944
+ 1 CONT �n�o�p�q�r�s�t�u�v�w�x�y�z
1945
+ 1 CONT
1946
+ 1 CONT code: F5 (Unicode: double low line, 0333) double underscore
1947
+ 1 CONT �A�B�C�D�E�F�G�H�I�J�K�L�M
1948
+ 1 CONT �N�O�P�Q�R�S�T�U�V�W�X�Y�Z
1949
+ 1 CONT �a�b�c�d�e�f�g�h�i�j�k�l�m
1950
+ 1 CONT �n�o�p�q�r�s�t�u�v�w�x�y�z
1951
+ 1 CONT
1952
+ 1 CONT code: F6 (Unicode: line below, 0332) underscore
1953
+ 1 CONT �A�B�C�D�E�F�G�H�I�J�K�L�M
1954
+ 1 CONT �N�O�P�Q�R�S�T�U�V�W�X�Y�Z
1955
+ 1 CONT �a�b�c�d�e�f�g�h�i�j�k�l�m
1956
+ 1 CONT �n�o�p�q�r�s�t�u�v�w�x�y�z
1957
+ 1 CONT
1958
+ 1 CONT code: F7 (Unicode: comma below, 0326) left hook
1959
+ 1 CONT �A�B�C�D�E�F�G�H�I�J�K�L�M
1960
+ 1 CONT �N�O�P�Q�R�S�T�U�V�W�X�Y�Z
1961
+ 1 CONT �a�b�c�d�e�f�g�h�i�j�k�l�m
1962
+ 1 CONT �n�o�p�q�r�s�t�u�v�w�x�y�z
1963
+ 1 CONT
1964
+ 1 CONT code: F8 (Unicode: left half ring below, 031C) right cedilla
1965
+ 1 CONT �A�B�C�D�E�F�G�H�I�J�K�L�M
1966
+ 1 CONT �N�O�P�Q�R�S�T�U�V�W�X�Y�Z
1967
+ 1 CONT �a�b�c�d�e�f�g�h�i�j�k�l�m
1968
+ 1 CONT �n�o�p�q�r�s�t�u�v�w�x�y�z
1969
+ 1 CONT
1970
+ 1 CONT code: F9 (Unicode: breve below, 032E) half circle below
1971
+ 1 CONT �A�B�C�D�E�F�G�H�I�J�K�L�M
1972
+ 1 CONT �N�O�P�Q�R�S�T�U�V�W�X�Y�Z
1973
+ 1 CONT �a�b�c�d�e�f�g�h�i�j�k�l�m
1974
+ 1 CONT �n�o�p�q�r�s�t�u�v�w�x�y�z
1975
+ 1 CONT
1976
+ 1 CONT code: FA (Unicode: double tilde left half, FE22) double tilde, left half
1977
+ 1 CONT �A�B�C�D�E�F�G�H�I�J�K�L�M
1978
+ 1 CONT �N�O�P�Q�R�S�T�U�V�W�X�Y�Z
1979
+ 1 CONT �a�b�c�d�e�f�g�h�i�j�k�l�m
1980
+ 1 CONT �n�o�p�q�r�s�t�u�v�w�x�y�z
1981
+ 1 CONT
1982
+ 1 CONT code: FB (Unicode: double tilde right half, FE23) double tilde, right half
1983
+ 1 CONT �A�B�C�D�E�F�G�H�I�J�K�L�M
1984
+ 1 CONT �N�O�P�Q�R�S�T�U�V�W�X�Y�Z
1985
+ 1 CONT �a�b�c�d�e�f�g�h�i�j�k�l�m
1986
+ 1 CONT �n�o�p�q�r�s�t�u�v�w�x�y�z
1987
+ 1 CONT
1988
+ 1 CONT code: FE (Unicode: comma above, 0313) high comma, centered
1989
+ 1 CONT �A�B�C�D�E�F�G�H�I�J�K�L�M
1990
+ 1 CONT �N�O�P�Q�R�S�T�U�V�W�X�Y�Z
1991
+ 1 CONT �a�b�c�d�e�f�g�h�i�j�k�l�m
1992
+ 1 CONT �n�o�p�q�r�s�t�u�v�w�x�y�z
1993
+ 1 CHAN
1994
+ 2 DATE 12 Jan 2001
1995
+ 3 TIME 0:32:24
1996
+ 0 @N25@ NOTE
1997
+ 1 CONC Comments on "Lucy Special ANSEL" INDIVIDUAL Record.
1998
+ 1 CONT
1999
+ 1 CONT The following are the special characters supported by the ANSEL character set. The first two letters
2000
+ 1 CONC are the Hex code. The following text describes the character.
2001
+ 1 CONC Finally, that character, or a character as close as possible to that
2002
+ 1 CONC character, should appear in the parentheses.
2003
+ 1 CONT
2004
+ 1 CONT A1 slash l - uppercase (�)
2005
+ 1 CONT A2 slash o - uppercase (�)
2006
+ 1 CONT A3 slash d - uppercase (�)
2007
+ 1 CONT A4 thorn - uppercase (�)
2008
+ 1 CONT A5 ligature ae - uppercase (�)
2009
+ 1 CONT A6 ligature oe - uppercase (�)
2010
+ 1 CONT A7 single prime (�)
2011
+ 1 CONT A8 middle dot (�)
2012
+ 1 CONT A9 musical flat (�)
2013
+ 1 CONT AA registered sign (�)
2014
+ 1 CONT AB plus-or-minus (�)
2015
+ 1 CONT AC hook o - uppercase (�)
2016
+ 1 CONT AD hook u - uppercase (�)
2017
+ 1 CONT AE left half ring (�)
2018
+ 1 CONT BO right half ring (�)
2019
+ 1 CONT B1 slash l - lowercase (�)
2020
+ 1 CONT B2 slash o - lowercase (�)
2021
+ 1 CONT B3 slash d - lowercase (�)
2022
+ 1 CONT B4 thorn - lowercase (�)
2023
+ 1 CONT B5 ligature ae - lowercase (�)
2024
+ 1 CONT B6 ligature oe - lowercase (�)
2025
+ 1 CONT B7 double prime (�)
2026
+ 1 CONT B8 dotless i - lowercase (�)
2027
+ 1 CONT B9 british pound (�)
2028
+ 1 CONT BA eth (�)
2029
+ 1 CONT BC hook o - lowercase (�)
2030
+ 1 CONT BD hook u - lowercase (�)
2031
+ 1 CONT BE empty box - LDS extension (�)
2032
+ 1 CONT BF black box - LDS extensions (�)
2033
+ 1 CONT CO degree sign (�)
2034
+ 1 CONT C1 script l (�)
2035
+ 1 CONT C2 phonograph copyright mark (�)
2036
+ 1 CONT C3 copyright symbol (�)
2037
+ 1 CONT C4 musical sharp (�)
2038
+ 1 CONT C5 inverted question mark (�)
2039
+ 1 CONT C6 inverted exclamation mark (�)
2040
+ 1 CONT CD midline e - LDS extension (�)
2041
+ 1 CONT CE midline o - LDS extension (�)
2042
+ 1 CONT CF es zet (�)
2043
+ 1 CHAN
2044
+ 2 DATE 13 Jun 2000
2045
+ 3 TIME 16:28:45
2046
+ 0 @N27@ NOTE
2047
+ 1 CONC Comments on "Teresa Mary Caregiver" INDIVIDUAL Record.
2048
+ 1 CONT
2049
+ 1 CONT This record is the adoptive mother of "Joseph Tag Torture". She is linked to a family
2050
+ 1 CONC record, but there is no husband in that record.
2051
+ 1 CHAN
2052
+ 2 DATE 13 Jun 2000
2053
+ 3 TIME 17:14:28
2054
+ 0 @N28@ NOTE
2055
+ 1 CONC Comments on "William Joseph Torture" INDIVIDUAL Record.
2056
+ 1 CONT
2057
+ 1 CONT This record is the natural father of "Joseph Tag Torture". He is linked to a family
2058
+ 1 CONC record, but there is no wife in that record.
2059
+ 1 CHAN
2060
+ 2 DATE 11 Jan 2001
2061
+ 3 TIME 15:31:12
2062
+ 0 @N29@ NOTE
2063
+ 1 CONC Comments on "Sandy Privacy Torture" INDIVIDUAL Record.
2064
+ 1 CONT
2065
+ 1 CONT This record has a restriction setting of "privacy." In public applications of
2066
+ 1 CONC GEDCOM files, "privacy" records should be hidden from all viewing and printing. It
2067
+ 1 CONC is less clear how GEDCOM software on your own PC reading your own copies of
2068
+ 1 CONC GEDCOM files should treat "privacy" records. At a minimum, it should import and
2069
+ 1 CONC preserve the "privacy" setting.
2070
+ 1 CHAN
2071
+ 2 DATE 11 Jan 2001
2072
+ 3 TIME 15:36:50
2073
+ 0 @N30@ NOTE
2074
+ 1 CONC Comments on "Pat Smith Torture" INDIVIDUAL Record.
2075
+ 1 CONT
2076
+ 1 CONT The record simply provides a child to "Joseph Tag Torture" in his family with "Mary First
2077
+ 1 CONC Jones" as his spouse.
2078
+ 1 CHAN
2079
+ 2 DATE 11 Jan 2001
2080
+ 3 TIME 15:40:04
2081
+ 0 @N31@ NOTE
2082
+ 1 CONC Comments on "Mary First Jones" INDIVIDUAL Record.
2083
+ 1 CONT
2084
+ 1 CONT This record is used to provide the first wife to "Joseph Tag Torture." Not many other
2085
+ 1 CONC tags are used.
2086
+ 1 CHAN
2087
+ 2 DATE 11 Jan 2001
2088
+ 3 TIME 15:38:17
2089
+ 0 @N32@ NOTE
2090
+ 1 CONC Comments on "Elizabeth Second Smith" INDIVIDUAL Record.
2091
+ 1 CONT
2092
+ 1 CONT This record is used to provide a second wife to "Joseph Tag Torture." Not many
2093
+ 1 CONC other tags are used.
2094
+ 1 CHAN
2095
+ 2 DATE 11 Jan 2001
2096
+ 3 TIME 15:38:55
2097
+ 0 @N33@ NOTE
2098
+ 1 CONC Comments on "William Joseph Torture-<unknown>" FAMILY Record.
2099
+ 1 CONT
2100
+ 1 CONT This record has the natural father of "Joseph Tag Torture." The wife is not known.
2101
+ 1 CHAN
2102
+ 2 DATE 11 Jan 2001
2103
+ 3 TIME 16:49:33
2104
+ 0 @N34@ NOTE
2105
+ 1 CONC Comments on "<unknown>-Teresa Mary Caregiver" FAMILY Record.
2106
+ 1 CONT
2107
+ 1 CONT This record has the adoptive mother of "Joseph Tag Torture." The husband is not
2108
+ 1 CONC known.
2109
+ 1 CHAN
2110
+ 2 DATE 11 Jan 2001
2111
+ 3 TIME 16:50:06
2112
+ 0 @N35@ NOTE
2113
+ 1 CONC Comments on "Joseph Tag Torture-Elizabeth Second Smith" FAMILY Record.
2114
+ 1 CONT
2115
+ 1 CONT This record has a second marriage for "Joseph Tag Torture" and the family has one
2116
+ 1 CONC child.
2117
+ 1 CHAN
2118
+ 2 DATE 11 Jan 2001
2119
+ 3 TIME 16:50:21
2120
+ 0 @N36@ NOTE
2121
+ 1 CONC Comments on "Standard GEDCOM Filelinks-Torture GEDCOM Matriarch"
2122
+ 1 CONC FAMILY record.
2123
+ 1 CONT
2124
+ 1 CONT The children in this family test logical extensions to the GEDCOM method for
2125
+ 1 CONC linking to a multimedia file.
2126
+ 1 CHAN
2127
+ 2 DATE 11 Jan 2001
2128
+ 3 TIME 16:51:33
2129
+ 0 @N37@ NOTE
2130
+ 1 CONC Comments on "Charlie Accented ANSEL-Lucy Special ANSEL" FAMILY Record.
2131
+ 1 CONT
2132
+ 1 CONT The two spouses in this family test reading of the ANSEL character set.
2133
+ 1 CHAN
2134
+ 2 DATE 11 Jan 2001
2135
+ 3 TIME 16:52:38
2136
+ 0 @N38@ NOTE
2137
+ 1 CONC Comments on "<unknown>-Nonstandard Multimedia Filelinks" FAMILY Record.
2138
+ 1 CONT
2139
+ 1 CONT The record is simply used to make family connections between records in this file.
2140
+ 1 CHAN
2141
+ 2 DATE 11 Jan 2001
2142
+ 3 TIME 16:53:38
2143
+ 0 @M1@ OBJE
2144
+ 1 TITL Dummy Multimedia Object
2145
+ 1 FORM PICT
2146
+ 1 BLOB
2147
+ 2 CONT .HM.......k.1..F.jwA.Dzzzzw............A....1.........0U.66..E.8
2148
+ 2 CONT .......A..k.a6.A.......A..k.........../6....G.......0../..U.....
2149
+ 2 CONT .w1/m........HC0..../...zzzzzzzz..5zzk..AnA..U..W6U....2rRrRrRrR
2150
+ 2 CONT .Dw...............k.1.......1..A...5ykE/zzzx/.g//.Hxzk6/.Tzy/.k1
2151
+ 2 CONT /Dw/.Tvz.E5zzUE9/kHz.Tw2/DzzzEEA.kE2zk5yzk2/zzs21.U2/Dw/.Tw/.Tzy
2152
+ 2 CONT /.fy/.HzzkHzzzo21Ds00.E2.UE2.U62/.k./Ds0.UE0/Do0..E8/UE2.U62.U9w
2153
+ 2 CONT /.Tx/.20.jg2/jo2..9u/.0U.6A.zk
2154
+ 1 NOTE Here are some notes on this multimedia object.
2155
+ 2 CONT If decoded it should be an image of a flower.
2156
+ 1 REFN User Reference Number
2157
+ 2 TYPE User Reference Type
2158
+ 1 RIN 1
2159
+ 1 CHAN
2160
+ 2 DATE 14 Jan 2001
2161
+ 3 TIME 14:10:31
2162
+ 0 TRLR