Difference between revisions of "Gramps XML"

From Gramps
Jump to: navigation, search
m (See also)
(?? not working ??? Undo revision 79892 by Bamaustin (talk))
(Tag: Undo)
Line 184: Line 184:
 
* [[Gramps Old database]]
 
* [[Gramps Old database]]
 
* [[Previous releases of Gramps]]
 
* [[Previous releases of Gramps]]
* [[Other Genealogy XML examples]]
 
  
 
[[Category:Developers/Reference]]
 
[[Category:Developers/Reference]]
 
[[Category:Developers/General]]
 
[[Category:Developers/General]]

Revision as of 02:43, 10 July 2020

Gramps XML is the Extensible Markup Language XML format designed for storing Gramps data. The goal is to have a fully portable, human- and machine-readable XML format so that the data can be read and written without any loss. In addition, XML format allows for smaller files (if compressed) and for using the version control system for tracking the changes (if uncompressed).

The reason XML is not used by Gramps as the working database ("internal") format is performance, specifically memory considerations.

Gramps XML Resources

Gramps-notes.png
Starting with Gramps XML 1.0

Each revision of Gramps XML has its own resource page, with references to that version's DTD and RELAX NG schema.
The resource pages are listed at http://www.gramps-project.org/xml/.

Gramps release XML schema Imports XML schema Database Example Changes/Note
master no change against 4.2 yet >= 1.0.0 - best 1.7 19 Unreleased
example.gramps
Unreleased
Gramps-notes.png
Note

Commencing with Gramps 3.1.2 all official versions of Gramps XML files can be imported. However, a warning will be given on import of 1.0.0 XML.[1]

Note: For versions of Gramps earlier than 3.1.1 refer to and the consult the table below to decide which version to use to import a specific version of the XML.

Gramps release XML schema Imports XML schema Database Example Changes/Note
5.1.x 1.7.0 - 1.7.1 >= 1.0.0 - 1.7 19 [2]
  • DB-API (SQLite) is default backend
  • BSDDB is Legacy backend
5.0.x 1.7.0 - 1.7.1 >= 1.0.0 - 1.7 19 [3]
  • Database backends become plugins
  • BSDDB is default, convert default handle (metadata) to str
  • DB-API (SQLite) is tested as viable replacement
4.2.x 1.7.0 - 1.7.1 >= 1.0.0 - 1.7 18 [4]
  • Added PlaceNames (with Date and Language) Place
4.1.x 1.6.0 >= 1.0.0 - best 1.5.1 17 [5]
  • added Tags to Event, Place, Repository, Source, and Citation
  • Source/Citation.data became SourceAttributes
  • added optional support for checksum on Media object
  • added PlaceRef and Place Hierarchies
4.0.x 1.5.0 - 1.5.1 >= 1.0.0 - best 1.4.0 16 [6] -
3.4.x 1.5.0 - 1.5.1 >= 1.0.0 - best 1.4.0 16 [7]
  • Citations support
  • Gramps XML is now idempotent[8].4365
  • Exporter does not change records order any more, making it easier to look at differences between versions/revisions.
3.3.x 1.4.0 >= 1.0.0 - best 1.3.0 15 [9]
  • Added new field "locality" to the Place schema
  • Added surnames to the Name schema (surnames is a list of surnames / prefix and patronymic are moved to the surname)
  • Replaced Markers with Tags ( marker removed from all / tags added to Person, Media, Family, and Notes)
  • Transaction
  • Merging
  • Improvements on Import/Export file formats (vcard, gedcom, xml)
  • Gramps_3.3_Wiki_Manual_-_What's_new?#Database Changes
3.1.x 1.3.0 >= 1.0.0 - best 1.1.0 15 [10]
  • Added lat/long to places
3.0.x 1.2.0 >= 1.1.0 14 [11]
  • added newyear to Dates
  • Replace plain text with StyledText in Notes
2.2.x 1.1.0-1.1.4 >= 0.0.0 13 [12]
2.0.x 1.0.0 >= 0.0.0 13 [13]
  • changed name formats
1.0.x no official version (0.0.0) - [14] (Install Gramps 2.2.10 to import and convert old beta Gramps XML backups - see Gramps_Old_database & issue 6129)
0.0.x beta software (0.0.0) Unsupported Unsupported Unsupported
Gramps-notes.png
Note:

To convert an old Gramps XML file you could use VirtualBox or Vmware and the old lgenealogy images from:
http://ftp.gwdg.de/pub/linux/gramps/

DTD generation

Tool like xml2dtd could help people not familiar with DTD grammar by generating a DTD file from a XML file. New content on Gramps XML could be tested with the tool and be merged on current Gramps DTD.

RELAX NG generation

Tools like trang or NekoDTD could help to convert a Gramps DTD file to a RELAX NG file. Some others tools and up-to-date informations are listed on this page.

Validating Gramps XML file

To validate the Gramps XML file against its DTD, use xmllint program (comes with the libxml2-utils package):

xmllint --noout filename.gramps
Gnome-important.png
If the Gramps XML file does not validate

this indicates an error in either the DTD or the XML Writer.
Please file the bug report at http://bugs.gramps-project.org in that case.

Parsing Gramps XML file

See also