Difference between revisions of "Gramps XML"

From Gramps
Jump to: navigation, search
(Parsing Gramps XML file)
(Parsing Gramps XML file)
Line 64: Line 64:
 
* [[Xsl|XSLT]] scripts: [http://www.gramps-project.org/grampsExhibit/0.0.1/grampsexhibit.xsl gramps exhibit] (Michiel Nauta), [[media:Ancestors.xsl.gz|Ancestors.xsl]], [[media:Birthday.xsl.gz|Birthday.xsl]] (Gramps 1) or [[media:Tellico.tar.gz|Tellico scripts]], see [[media:Xpaths.gz|XPaths]].
 
* [[Xsl|XSLT]] scripts: [http://www.gramps-project.org/grampsExhibit/0.0.1/grampsexhibit.xsl gramps exhibit] (Michiel Nauta), [[media:Ancestors.xsl.gz|Ancestors.xsl]], [[media:Birthday.xsl.gz|Birthday.xsl]] (Gramps 1) or [[media:Tellico.tar.gz|Tellico scripts]], see [[media:Xpaths.gz|XPaths]].
 
* A [http://offog.org/darcs/misccode/familytree sample of standalone script] which parses a Gramps XML file for drawing a family tree.
 
* A [http://offog.org/darcs/misccode/familytree sample of standalone script] which parses a Gramps XML file for drawing a family tree.
 +
* [http://www.gramps.van-staveren.net/ GrampsXMLview] is a number of PHP scripts in combination with a Gramps XML database.
 
* A [http://sourceforge.net/projects/joomlagen/ Joomla! component/module] for uploading the Gramps XML database and for showing genealogical information and overviews.
 
* A [http://sourceforge.net/projects/joomlagen/ Joomla! component/module] for uploading the Gramps XML database and for showing genealogical information and overviews.
 
* [http://www.phpgedview.net PhpGedView] supports output to Gramps XML file (''old specification: Gramps-2.2.x'') format for the Clippings Cart and has an option to download entire Gedcom in Gramps XML form as well as being able to retrieve raw data from the SOAP web service in Gramps XML format.
 
* [http://www.phpgedview.net PhpGedView] supports output to Gramps XML file (''old specification: Gramps-2.2.x'') format for the Clippings Cart and has an option to download entire Gedcom in Gramps XML form as well as being able to retrieve raw data from the SOAP web service in Gramps XML format.

Revision as of 17:24, 12 November 2010

GRAMPS XML is the 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

Starting with XML 1.0, each revision of 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/.

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]

For versions of Gramps earlier than 3.1.1 refer to the table to decide which version to use to import a specific version of the xml, consult the table below.

Gramps release XML version Imports XML version Example
3.1.x 1.3.0 >= 1.0.0 - best 1.1.0 [2]
3.0.x 1.2.0 >= 1.1.0 [3]
2.2.x 1.1.0-1.1.4 >= 0.0.0 [4]
2.0.x 1.0.0 >= 0.0.0 [5]
1.0.x no official version (0.0.0) - [6]
0.0.x beta software (0.0.0) Unsupported Unsupported

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 (2010-09-19) 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

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