<?xml version="1.0"?>
<?xml-stylesheet type="text/css" href="http://fileformats.archiveteam.org/skins/common/feed.css?303"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>http://fileformats.archiveteam.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=DavidFichtmueller</id>
		<title>Just Solve the File Format Problem - User contributions [en]</title>
		<link rel="self" type="application/atom+xml" href="http://fileformats.archiveteam.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=DavidFichtmueller"/>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/Special:Contributions/DavidFichtmueller"/>
		<updated>2026-05-12T14:40:49Z</updated>
		<subtitle>User contributions</subtitle>
		<generator>MediaWiki 1.19.2</generator>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/Category:File_formats_with_extension_.whl</id>
		<title>Category:File formats with extension .whl</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/Category:File_formats_with_extension_.whl"/>
				<updated>2016-04-06T09:53:53Z</updated>
		
		<summary type="html">&lt;p&gt;DavidFichtmueller: Created page with &amp;quot;W&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:File formats by extension|W]]&lt;/div&gt;</summary>
		<author><name>DavidFichtmueller</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/Python</id>
		<title>Python</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/Python"/>
				<updated>2016-04-06T09:53:04Z</updated>
		
		<summary type="html">&lt;p&gt;DavidFichtmueller: added whl for python packages&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{FormatInfo&lt;br /&gt;
|formattype=Languages&lt;br /&gt;
|subcat=Programming Languages&lt;br /&gt;
|extensions={{ext|py}}, {{ext|pyc}}, {{ext|pyo}}, {{ext|pyd}}, {{ext|whl}}&lt;br /&gt;
|released=1991&lt;br /&gt;
}}&lt;br /&gt;
'''Python''' is a [[Programming Languages|programming language]]. &lt;br /&gt;
&lt;br /&gt;
It is one of the possibilities for the P in LAMP (a set of technologies used in many web back-ends, including Linux, Apache, and MySQL, notable for being free, open-source software in contrast to proprietary technologies such as those from Microsoft) along with [[Perl]] and [[PHP]].&lt;br /&gt;
&lt;br /&gt;
Media reports of [http://www.cbc.ca/news/canada/story/2013/08/06/f-exotic-animals-laws-canada.html python-linked deaths] have nothing to do with the safety of this language, honest! Actually, the name of the language was inspired by [[Wikipedia:Monty Python|Monty Python]], not any actual reptile (or even [http://www.youtube.com/watch?v=R4yBv4sSKTw fictional ones]). &lt;br /&gt;
&lt;br /&gt;
A notable feature of Python is its use of whitespace as a syntactically-significant part of its structure; the level of indenting of code blocks actually determines its place structurally, in contrast to most other languages which use explicit items such as curly braces or keywords such as [[Pascal]]'s '''begin''' and '''end''' (though in those languages it is still customary to indent code blocks for readability). Other novel features of Python include native support of complex arithmetic (involving both real and imaginary numbers and sums of them).&lt;br /&gt;
&lt;br /&gt;
The easy learnability of the language is enhanced by the fact that it has a command-line interpreter which lets you type commands from a prompt in immediate mode, much like the old-time [[BASIC]] interpreters on which so many people first learned to program back in the days of the Apple II and Commodore 64. However, any program of significant length is likely to be created in a text editor and saved in files.&lt;br /&gt;
&lt;br /&gt;
Python is often affiliated with [[reStructuredText]] documents.  Python comments are often formatted with reStructuredText markup.&lt;br /&gt;
&lt;br /&gt;
Versions 2 and 3 of Python (with various sub-versions of each) are both in wide use, with version 2 still usually being the default version included in Linux/Unix distributions, but version 3 gaining popularity; there are a number of minor syntax differences between the two.&lt;br /&gt;
&lt;br /&gt;
O'Reilly's technical books are famous for having animals on their covers. Their book, ''Programming Python'', has a snake on the cover, logically enough. However, other Python-related books from this publisher have different animals, and, in particular, the introductory book ''Learning Python'' has a rodent. Pythons ''eat'' rodents, so is this trying to imply that the Python community will eat newbies whole?&lt;br /&gt;
&lt;br /&gt;
== File extensions ==&lt;br /&gt;
&lt;br /&gt;
Python has a number of file endings associated with it, including .py, .pyc, .pyo, and .pyd. When people have desired a MIME type for Python code, they run into the fact that no standard has been established, and even the nonstandard types don't seem to have reached any degree of consistency; people have tried ''text/python'', ''text/python3'', ''application/python'', ''text/x-python'', and others.&lt;br /&gt;
&lt;br /&gt;
;.py&lt;br /&gt;
:  A text file that contains python source code.  It is often [[utf-8]] encoded, but it does not have to be.&lt;br /&gt;
;.pyc&lt;br /&gt;
:  Compiled [[bytecode]] of a python source file&lt;br /&gt;
;.pyo&lt;br /&gt;
:  Optimized compiled [[bytecode]]&lt;br /&gt;
;.pyd&lt;br /&gt;
:  A python version of a Windows [[Dynamic-link library (Windows)|.dll]] file&lt;br /&gt;
;.whl&lt;br /&gt;
: A python wheel which is a package distribution for using a &amp;quot;[[ZIP|ZIP-formated]] archive  with a specially formatted filename&amp;quot; &amp;lt;ref&amp;gt;Wheel, Python Package Index https://pypi.python.org/pypi/wheel&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
* [[Pickle]]&lt;br /&gt;
&lt;br /&gt;
== Links ==&lt;br /&gt;
&lt;br /&gt;
=== References ===&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Specifications and file format info ===&lt;br /&gt;
* [http://daeken.com/2010-02-20_Python_Marshal_Format.html Python Marshal Format (bytecode)]&lt;br /&gt;
&lt;br /&gt;
=== Programming tips and tutorials ===&lt;br /&gt;
* [http://docs.python.org/2/tutorial/index.html Python 2 tutorial]&lt;br /&gt;
* [http://docs.python.org/3/tutorial/index.html Python 3 tutorial]&lt;br /&gt;
* [http://www.python.org/dev/peps/pep-0008/ PEP 8: Style guide for Python code]&lt;br /&gt;
* [http://hubsec.eu/blog/introduction-to-python.html Python for Investigative Journalists: An introduction]&lt;br /&gt;
* [http://www.greenteapress.com/thinkpython/thinkpython.html Think Python (free online book)]&lt;br /&gt;
&lt;br /&gt;
=== Program code, libraries, and APIs ===&lt;br /&gt;
* [https://pypi.python.org/pypi/internetarchive Python interface to archive.org]&lt;br /&gt;
* [https://github.com/LindseyB/starwars-dot-gif Python script to generate GIFs from Star Wars based on input dialogue line]&lt;br /&gt;
* [http://www.pkcarlisle.com/blog.html#tth Python script to create 'Tweet this' link that doesn't require JavaScript]&lt;br /&gt;
* [http://www.brython.info/ Brython: Python implemented in JavaScript]&lt;br /&gt;
&lt;br /&gt;
=== Online utilities ===&lt;br /&gt;
* [http://pypyjs.org/ In-browser Python interpreter]&lt;br /&gt;
&lt;br /&gt;
=== Metaformat files ===&lt;br /&gt;
&lt;br /&gt;
* [https://www.synalysis.net/Grammars/pyc.grammar Synalysis grammar file for Python bytecode] (for Hexinator / Synalize It!; [[Synalysis grammar file|more details]])&lt;br /&gt;
&lt;br /&gt;
=== Commentary ===&lt;br /&gt;
* [http://blogs.computerworlduk.com/simon-says/2013/02/responding-to-pythons-batsignal/index.htm Python trademark filer ignorant of Python?]&lt;br /&gt;
* [http://www.linuxjournal.com/article/3882 Why Python?]&lt;br /&gt;
* [http://www.developerdrive.com/2014/11/should-you-be-using-python-for-web-development/ Should you be using Python for web development?]&lt;br /&gt;
&lt;br /&gt;
=== Other links and references ===&lt;br /&gt;
* [http://www.python.org/ Official website]&lt;br /&gt;
* [[Wikipedia:Python (programming_language)|Python (Wikipedia)]]&lt;br /&gt;
* [http://www.quora.com/Why-does-the-lifetime-of-a-variable-defined-in-a-loop-last-after-the-loop-in-Python/ Why does the lifetime of a variable defined in a loop last after the loop in Python?]&lt;br /&gt;
* [http://cacm.acm.org/blogs/blog-cacm/176450-python-is-now-the-most-popular-introductory-teaching-language-at-top-us-universities/fulltext Python is now the most popular introductory teaching language at top U.S. universities]&lt;/div&gt;</summary>
		<author><name>DavidFichtmueller</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/DBase_III</id>
		<title>DBase III</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/DBase_III"/>
				<updated>2015-02-20T08:36:58Z</updated>
		
		<summary type="html">&lt;p&gt;DavidFichtmueller: link formatting&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{FormatInfo&lt;br /&gt;
| subcat                 = Databases&lt;br /&gt;
| extensions             = {{ext|dbf}}&lt;br /&gt;
| pronom                 = {{PRONOM|x-fmt/9}}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
This article describes how to export data out of a dBase III Table File (*.dbf). &lt;br /&gt;
&lt;br /&gt;
== Opening the data with Libre Office ==&lt;br /&gt;
It is possible to import *.dbf files into Libre Office (or Open Office) Calc or Base: http://help.libreoffice.org/Calc/Importing_and_Exporting_dBASE_Files . &lt;br /&gt;
&lt;br /&gt;
Libre Office will try to recognize the character encoding of the data and preselect this option in the import window. Once a file imported, it can be saved in/exported to a variety of different formats. &lt;br /&gt;
&lt;br /&gt;
== Importing the data directly into a mySQL database ==&lt;br /&gt;
Alternatively the data can directly be imported into a running mySQL database using the linux program &amp;lt;code&amp;gt;[http://manpages.ubuntu.com/manpages/lucid/man1/dbf2mysql.1.html dbf2mysql]&amp;lt;/code&amp;gt;. Importing the data directly however could cause some problems with the character encoding for non ASCII characters.&lt;br /&gt;
&lt;br /&gt;
If the mysql server is already running, the following commands will import the data:&lt;br /&gt;
 user@linux:~$ mysql -u root -p&lt;br /&gt;
 mysql&amp;gt; create database database_name;&lt;br /&gt;
 mysql&amp;gt; exit&lt;br /&gt;
 user@linux:~$ sudo apt-get install dbf2mysql&lt;br /&gt;
 user@linux:~$ dbf2mysql -vvv -c -f -d database_name -U root -P password DATA_FILE.DBF &lt;br /&gt;
&lt;br /&gt;
The data can then be exported using &amp;lt;code&amp;gt;mysqldump&amp;lt;/code&amp;gt;&lt;br /&gt;
 user@linux:~$ mysqldump -u root -p database_name &amp;gt; data_export.sql&lt;br /&gt;
&lt;br /&gt;
== Specifications ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.dbase.com/Knowledgebase/INT/db7_file_fmt.htm dBase version 7 file header format]&lt;br /&gt;
&lt;br /&gt;
== Metaformat files ==&lt;br /&gt;
&lt;br /&gt;
* [https://www.synalysis.net/Grammars/dbase.grammar Synalysis grammar file] (for Hexinator / Synalize It!; [[Synalysis grammar file|more details]])&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
* [[dBase programming language]]&lt;br /&gt;
&lt;br /&gt;
== Additional Weblinks ==&lt;br /&gt;
* [http://en.wikipedia.org/wiki/DBase Wikipedia article about dBase]&lt;br /&gt;
* [http://www.nationalarchives.gov.uk/pronom/x-fmt/9 dBase III entry in PRONOM]&lt;br /&gt;
* [http://www.digitalpreservation.gov/formats/fdd/fdd000325.shtml dBase entry at digitalpreservation.gov]&lt;br /&gt;
* [http://www.dbf2002.com/dbf-file-format.html DBF File structure]&lt;br /&gt;
* [http://www.dbase.com/Knowledgebase/INT/db7_file_fmt.htm dBase File Structure at dBase knowledge base]&lt;br /&gt;
* [http://www.clicketyclick.dk/databases/xbase/format/index.html Xbase file format description]&lt;br /&gt;
* [http://www.dbase.com/ Current dBase product]&lt;br /&gt;
* [http://www.textfiles.com/programming/FORMATS/dbasefil.inf dBase III file structure]&lt;br /&gt;
* [http://stackoverflow.com/questions/14008534/opening-and-searching-dbase-iii-dbf-databases-in-python Opening and searching dBase III (DBF) databases in Python]&lt;/div&gt;</summary>
		<author><name>DavidFichtmueller</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/File_identification_software</id>
		<title>File identification software</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/File_identification_software"/>
				<updated>2014-12-01T16:22:46Z</updated>
		
		<summary type="html">&lt;p&gt;DavidFichtmueller: updated DROID requirements&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{|&lt;br /&gt;
|[[Software]]&lt;br /&gt;
| &amp;gt;&lt;br /&gt;
|[[File identification software]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
Software that automates the process of [[Identifying Files]].&lt;br /&gt;
&lt;br /&gt;
* [[Apache Tika]] (cross-platform, open source, [http://tika.apache.org/ website]): &amp;quot;The Apache Tika™ toolkit detects and extracts metadata and structured text content from various documents using existing parser libraries.&amp;quot; Written in [[Java]].&lt;br /&gt;
* [[DROID]] (cross-platform, open source, [http://digital-preservation.github.com/droid/ website]): ''&amp;quot;DROID is a software tool developed by The National Archives [of the United Kingdom] to perform automated batch identification of file formats.&amp;quot;'' Requires [[Java]] 7 or 8 (Version 6.1.5).&lt;br /&gt;
* [[FIDO]] (cross-platform, open source) [http://www.openplanetsfoundation.org/software/fido website]: Format Identification for Digital Objects, written in [[Python]].&lt;br /&gt;
* [[FIDOO]] (web-based online file identification): [http://www.techmaurice.com/fidoo/ website]&lt;br /&gt;
* [[File command]] (various implementations): a standard Unix command, found on almost all Unix and Unix-like (i.e., Linux) systems. See the [http://manpages.debian.net/cgi-bin/man.cgi?query=file&amp;amp;apropos=0&amp;amp;sektion=0&amp;amp;manpath=Debian+6.0+squeeze&amp;amp;format=html&amp;amp;locale=en Debian man page] for an overview.&lt;br /&gt;
* [[File Information Tool Set]]: software from the Harvard University library to identify file formats and extract metadata&lt;br /&gt;
*[[FI Tools]] (Windows, commercial, [http://www.forensicinnovations.com/fitools.html website])&lt;br /&gt;
* [[G-Spot]] (Windows, freeware, [http://www.headbands.com/gspot/ website]): Identifies [[audio]] and [[video]] codecs need to play a media file.&lt;br /&gt;
* [[JHOVE]] (tool to classify/identify/validate file formats)&lt;br /&gt;
* [[MediaInfo]] (cross-platform, open source, [http://mediainfo.sourceforge.net/en website]): &amp;quot;MediaInfo is a convenient unified display of the most relevant technical and tag data for video and audio files.&amp;quot;&lt;br /&gt;
* [[Siegfried]] (signature-based file identification tool) [http://www.itforarchivists.com/siegfried website] [http://www.openplanetsfoundation.org/blogs/2014-09-27-siegfried-pronom-based-file-format-identification-tool blog post]&lt;br /&gt;
* [[TrID]] (Windows/Linux, free for non-commercial use, [http://mark0.net/soft-trid-e.html website]): identifies files using a database of filetype signatures. Also has an [http://mark0.net/onlinetrid.aspx online version].&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
* http://www.forensicswiki.org/wiki/File_Format_Identification&lt;/div&gt;</summary>
		<author><name>DavidFichtmueller</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/Databases</id>
		<title>Databases</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/Databases"/>
				<updated>2014-01-20T15:27:20Z</updated>
		
		<summary type="html">&lt;p&gt;DavidFichtmueller: XML databases added as well as two others&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{FormatInfo&lt;br /&gt;
|formattype=electronic&lt;br /&gt;
|thiscat=Databases&lt;br /&gt;
|image=File manager.png&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
Classes of databases:&lt;br /&gt;
&lt;br /&gt;
== CODASYL databases ==&lt;br /&gt;
&lt;br /&gt;
* [[DBMS32]] (DEC)&lt;br /&gt;
* [[DMS1100]] (Univac)&lt;br /&gt;
* [[IDS/2]] (Honeywell)&lt;br /&gt;
* [[IDMS]] (Cullinet, and later Computer Associates)&lt;br /&gt;
&lt;br /&gt;
== General databases ==&lt;br /&gt;
&lt;br /&gt;
* [[dBase II]]&lt;br /&gt;
* [[dBase III]]&lt;br /&gt;
* [[FoxPro]]&lt;br /&gt;
* [[Mork]]&lt;br /&gt;
&lt;br /&gt;
== Hierarchical databases ==&lt;br /&gt;
&lt;br /&gt;
* [[IMS]]&lt;br /&gt;
&lt;br /&gt;
== ISAM (Indexed Sequential Access Method) ==&lt;br /&gt;
&lt;br /&gt;
* [[Ability Database]] (.adb)&lt;br /&gt;
* [[Access]] (was also known as Jet)&lt;br /&gt;
* [[Extensible Storage Engine]] (ESE, EDB)&lt;br /&gt;
* [[Paradox]]&lt;br /&gt;
&lt;br /&gt;
== NoSQL databases ==&lt;br /&gt;
&lt;br /&gt;
* [[CouchDB]]&lt;br /&gt;
* [[MongoDB]]&lt;br /&gt;
* [[Clusterpoint]]&lt;br /&gt;
&lt;br /&gt;
== Object-oriented databases ==&lt;br /&gt;
&lt;br /&gt;
* [[Cache]]&lt;br /&gt;
* [[db40]]&lt;br /&gt;
* [[Gemstone]]&lt;br /&gt;
* [[Objectivity]]&lt;br /&gt;
* [[ObjectStore]]&lt;br /&gt;
* [[Versant]]&lt;br /&gt;
&lt;br /&gt;
== Relational databases ==&lt;br /&gt;
&lt;br /&gt;
* [[Derby]]&lt;br /&gt;
* [[HSQLDB]]&lt;br /&gt;
* [[IBM DB2]]&lt;br /&gt;
* [[Ingres]]&lt;br /&gt;
* [[MemSQL]]&lt;br /&gt;
* [[MySQL]]&lt;br /&gt;
* [[Oracle]]&lt;br /&gt;
** [[ARC (database backup format)]]&lt;br /&gt;
* [[PostGRESQL]]&lt;br /&gt;
* [[DB SQL Anywhere|SQL Anywhere]]&lt;br /&gt;
* [[DB (SQLite)|SQLite]]&lt;br /&gt;
* [[Virtuoso]]&lt;br /&gt;
* [[DB (Watcom-SQL)|Watcom SQL]]&lt;br /&gt;
&lt;br /&gt;
== Triplestores ==&lt;br /&gt;
&lt;br /&gt;
* [[3store]]&lt;br /&gt;
* [[Apache Jena]]&lt;br /&gt;
* [[Mulgara]]&lt;br /&gt;
&lt;br /&gt;
== XML databases ==&lt;br /&gt;
* [[BaseX]]&lt;br /&gt;
* [[Documentum xDB]]&lt;br /&gt;
* [[eXist-db]]&lt;br /&gt;
* [[MarkLogic]]&lt;br /&gt;
* [[Oracle XML DB]]&lt;br /&gt;
* [[Qizx]]&lt;br /&gt;
* [[Sedna]]&lt;br /&gt;
* [[Tamino]]&lt;br /&gt;
* [[TEXTML]]&lt;br /&gt;
* [[TigerLogic XDMS]]&lt;br /&gt;
* [[Xpriori XMS]]&lt;br /&gt;
* [[XQuantum]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Links ==&lt;br /&gt;
&lt;br /&gt;
* [http://blog.okfn.org/2013/04/24/frictionless-data-making-it-radically-easier-to-get-stuff-done-with-data/ Frictionless data]&lt;br /&gt;
* [http://oddc.opendataresearch.org/ Open Data Research Network]&lt;br /&gt;
* [http://www.chrisstucchio.com/blog/2013/hadoop_hatred.html Don't use Hadoop - your data isn't that big]&lt;br /&gt;
* [http://www.itnews.com.au/News/357842,social-networks-stick-with-mysql.aspx Social networks stick with MySQL]&lt;br /&gt;
* [http://scholarworks.umass.edu/cpo/vol1/iss1/4/ From Punched Cards to &amp;quot;Big Data&amp;quot;: A Social History of Database Populism]&lt;br /&gt;
* [http://support.microsoft.com/kb/168702 If you move your mouse continually the query may not fail. Do not stop moving] (that's Microsoft for you)&lt;/div&gt;</summary>
		<author><name>DavidFichtmueller</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/DOC</id>
		<title>DOC</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/DOC"/>
				<updated>2012-12-05T13:48:11Z</updated>
		
		<summary type="html">&lt;p&gt;DavidFichtmueller: added section: Opening Word for DOS files in a modern Microsoft Word&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{FormatInfo&lt;br /&gt;
|subcat=Document&lt;br /&gt;
|extensions={{ext|doc}}&lt;br /&gt;
|mimetypes=&lt;br /&gt;
{{mimetype|application/msword}}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
'''MS Word Doc''' format is a family of formats used by older versions of MS Word (they now use [[DOCX]] as a default as of Office 2007). &lt;br /&gt;
&lt;br /&gt;
== File Types ==&lt;br /&gt;
[https://en.wikipedia.org/wiki/Microsoft_Word#File_formats Wikipedia says] the following four types exist &lt;br /&gt;
* Word for DOS&lt;br /&gt;
* Word 1 &amp;amp; Word 2 for MS Windows, and Word 4 &amp;amp; 5 for Mac&lt;br /&gt;
* Word 6 &amp;amp; Word 95 for MS Windows, and Word 6 for Mac&lt;br /&gt;
* Word 97, 2000, 2002, 2003, 2007 &amp;amp; 2010 for MS Windows, and Word 98, 2001, X, &amp;amp; 2004 for Mac&lt;br /&gt;
&lt;br /&gt;
== What's up, DOC? ==&lt;br /&gt;
&lt;br /&gt;
But just because the file you stumbled onto has a DOC extension doesn't mean it is necessarily actually an MS Word file, though if it's not that old it probably is. Older files, like from the 1980s or 1990s, might be something else entirely. Several other word processors in that era used .DOC file extensions, even though their format was nothing like MS Word's. Also, it was fairly common for people to save plain text files with that extension when they were DOCumenting something, like the instructions for a program that was packed up in an [[ARC]] or [[ZIP]] file for download on a bulletin board system (BBS). But you might still try opening them with Word (as will normally happen in Windows if you have Word installed and double-click on a DOC file), since it will open plain-text files all right (even ancient ones).&lt;br /&gt;
&lt;br /&gt;
== Opening Word for DOS files in a modern Microsoft Word ==&lt;br /&gt;
Word for DOS files can't be opened natively with the current versions of Microsoft Word anymore. However it is possible to import such old Word files with an additional converter for Word.&lt;br /&gt;
# Download the file ftp://ftp.microsoft.com/Softlib/MSLFILES/WDSUPCNV.EXE, open it (it is a self extracting zip file) and select a directory to save the files.&lt;br /&gt;
# Copy all the resulting *.cnv files (but most importantly &amp;lt;code&amp;gt;Doswrd32.cnv&amp;lt;/code&amp;gt;) to &amp;lt;code&amp;gt;C:\Program Files (x86)\Common Files\microsoft shared\TextConv&amp;lt;/code&amp;gt; (For users with a 32-bit Windows it is just &amp;lt;code&amp;gt;C:\Program Files\Common Files\microsoft shared\TextConv&amp;lt;/code&amp;gt;)&lt;br /&gt;
# (Re)Start Microsoft Word&lt;br /&gt;
# Open the old Word file via the Open-dialog within Word.&lt;br /&gt;
# Word will show a prompt informing you that a text converter has to be started and that this might impose a security risk which you should only do if you trust the source where you got the files from. Press OK (if you trust the source of the files).&lt;br /&gt;
# Word will most likely show a prompt like &amp;quot;Style Sheet D:/STANDARD.DFV not found&amp;quot;. Press Ok. Now a file selector dialog will open asking you to select a style sheet (*.sty) file. If you do have a style sheet for the file then select this. Otherwise create a new empty file in the regular Windows Explorer, rename it &amp;quot;empty.sty&amp;quot; and select it in the file selector. Selecting such an empty file could cause opened file to loose some general properties like print margins etc.&lt;br /&gt;
# Now you should be able to see the Word for DOS file within the modern Microsoft Word.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
* [http://msdn.microsoft.com/en-us/library/cc313153.aspx Microsoft's specification on the .DOC format]&lt;/div&gt;</summary>
		<author><name>DavidFichtmueller</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/MzML</id>
		<title>MzML</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/MzML"/>
				<updated>2012-11-20T17:26:43Z</updated>
		
		<summary type="html">&lt;p&gt;DavidFichtmueller: added category Category:XML based file formats&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{FormatInfo&lt;br /&gt;
|formattype=electronic&lt;br /&gt;
|subcat=Scientific Data formats&lt;br /&gt;
|extensions={{ext|mzml}}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
== General description ==&lt;br /&gt;
&lt;br /&gt;
This stub page describes the mzML file format for encoding raw spectrometer output. It is described in the [http://www.psidev.info/mzml mzML specification] at the HUPO Proteomics Standards Initiative site. MzML replaces two previous file formats, [[mzDATA]] developed by PSI and [[mzXML]] developed by the Seattle Proteome Center at the Institute for Systems Biology.&lt;br /&gt;
&lt;br /&gt;
The current version is mzML version 1.1, releaseed in 2009.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--Include link to any authoritative web site(s) about the format, particularly the prime sponsor, and if possible a direct link to a specification, schema etc. --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Other information ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--Include other information describing the format, eg Wikipedia pages, PRONOM or LoC identifiers, etc. Eg --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--The format is referenced in the Wikipedia [http://en.wikipedia.org/wiki/xxxxx page on xxxxx]. --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--Indicate any version-specific information that may be available. Indicate openness (or otherwise) of the format. --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Software ==&lt;br /&gt;
&lt;br /&gt;
The [http://www.psidev.info/mzml specification page] lists many software packages that produce or can process mzML files.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--Include processing and/or migration information, eg: --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--The file format can be created, read and manipulated using the [http://url xxx Open Source software application]. --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Sample files ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--Many sample xxxxx files are available in the yyyyy --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Identification ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--Factors that can help identify a candidate file as of this format. Include magic numbers, signatures etc if available. Eg: --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The file extension is .mzml and the MIME Type is not known. &lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;br /&gt;
&amp;lt;!--List articles, books or web pages describing the format or supporting the evidence.--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:XML based file formats]]&lt;/div&gt;</summary>
		<author><name>DavidFichtmueller</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/AAS</id>
		<title>AAS</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/AAS"/>
				<updated>2012-11-20T17:17:15Z</updated>
		
		<summary type="html">&lt;p&gt;DavidFichtmueller: added category Category:XML based file formats&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{FormatInfo&lt;br /&gt;
|formattype=electronic&lt;br /&gt;
|subcat=Interactive Fiction&lt;br /&gt;
|extensions={{ext|aas}}&lt;br /&gt;
|mimetypes=application/x-authorware-seg&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
AAS (Advanced Authoring System) is an [[Interactive Fiction]] development system, created as a hoax. The GUI editor and game interpreter both run in Java. The game source is an XML file that is run directly by the interpreter.&lt;br /&gt;
&lt;br /&gt;
== Software ==&lt;br /&gt;
* [http://ifarchive.org/indexes/if-archiveXprogrammingXaas.html IF Archive: AAS Programming]&lt;br /&gt;
&lt;br /&gt;
== Sample Files ==&lt;br /&gt;
* [http://ifarchive.org/if-archive/games/aas/aasmasters.aas aasmasters.aas]: AAS Masters, by &amp;quot;David Banner&amp;quot; (Stephen Granade)&lt;br /&gt;
* [http://ifarchive.org/if-archive/games/aas/darkness.aas darkness.aas]: Cloak of Ultimate Darkness, by &amp;quot;Roddy Ramieson&amp;quot; (Ian Merrick)&lt;br /&gt;
&lt;br /&gt;
== Resources ==&lt;br /&gt;
* [http://diden.net/if/aas/ AAS homepage]: an archive of the original hoax site&lt;br /&gt;
* [http://www.ifwiki.org/index.php/AAS IFwiki: AAS]&lt;br /&gt;
&lt;br /&gt;
[[Category:XML based file formats]]&lt;/div&gt;</summary>
		<author><name>DavidFichtmueller</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/KML</id>
		<title>KML</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/KML"/>
				<updated>2012-11-20T17:16:16Z</updated>
		
		<summary type="html">&lt;p&gt;DavidFichtmueller: added category Category:XML based file formats&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{FormatInfo&lt;br /&gt;
|formattype=electronic&lt;br /&gt;
|subcat=Geospatial&lt;br /&gt;
|extensions={{ext|kml}} {{ext|kmz}}&lt;br /&gt;
|pronom={{PRONOM|fmt/244}}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
'''[[KML]]''' is derived from Keyhole Markup Language. KML is an [[XML]] notation for geographic annotation and visualization of features for use in two-dimensional maps and three-dimensional Earth browsers used on the Internet.  The KML file specifies a set of features (place marks, images, polygons, 3D models, textual descriptions, etc.) for display in applications such as Google Earth and Google Maps or any other geospatial software implementing the KML encoding. Positions are located using longitude and latitude as defined by the World Geodetic System of 1984 (WGS84). KML became an international standard of the Open Geospatial Consortium in 2008.&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
* [http://www.opengeospatial.org/standards/kml/ KML specification from OGC]&lt;br /&gt;
* [http://schemas.opengis.net/kml/ KML schemas from OGC]&lt;br /&gt;
* [https://developers.google.com/kml/documentation/ KML documentation and examples from Google]&lt;br /&gt;
* [http://en.wikipedia.org/wiki/Keyhole_Markup_Language Keyhole Markup Language : Wikipedia]&lt;br /&gt;
* [http://www.digitalpreservation.gov/formats/fdd/fdd000340.shtml KML, Version 2.2, from Library of Congress resource on Sustainability of Digital Formats]&lt;br /&gt;
&lt;br /&gt;
[[Category:XML based file formats]]&lt;/div&gt;</summary>
		<author><name>DavidFichtmueller</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/VOTable</id>
		<title>VOTable</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/VOTable"/>
				<updated>2012-11-20T17:15:51Z</updated>
		
		<summary type="html">&lt;p&gt;DavidFichtmueller: added category Category:XML based file formats&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{|&lt;br /&gt;
|[[File Formats]]&lt;br /&gt;
| &amp;gt;&lt;br /&gt;
|[[Electronic File Formats]]&lt;br /&gt;
| &amp;gt;&lt;br /&gt;
|[[Scientific Data formats]]&lt;br /&gt;
| &amp;gt;&lt;br /&gt;
|[[VOTable]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== General description ==&lt;br /&gt;
&lt;br /&gt;
VOTable is an XML-based table format used for interchange within the International Virtual Observatory Alliance ([http://www.ivoa.net IVOA]) suite of standards.&lt;br /&gt;
&lt;br /&gt;
The current version (as of late 2012) is VOTable 1.2, standardised in an IVOA Recommendation&amp;lt;ref&amp;gt;Francois Ochsenbein and Roy Williams, ''VOTable Format Definition, Version 1.2''.  Online: http://www.ivoa.net/Documents/VOTable/&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Other information ==&lt;br /&gt;
&lt;br /&gt;
The [http://en.wikipedia.org/wiki/International_Virtual_Observatory_Alliance IVOA] acts as a standardisation body for [http://en.wikipedia.org/wiki/Virtual_observatory Virtual Observatory] projects.  In a process modelled on the W3C's, it provides a forum for standards documents to be proposed, discussed, and eventually promoted to Recommendations.&lt;br /&gt;
&lt;br /&gt;
The IVOA's [http://wiki.ivoa.net/twiki/bin/view/IVOA/IvoaVOTable VOTable Working Group] maintains an informal list of versions and implementations.&lt;br /&gt;
&lt;br /&gt;
The MIME type &amp;lt;code&amp;gt;application/x-votable+xml&amp;lt;/code&amp;gt; is often used for VOTable documents, but has not been registered with the IETF.&lt;br /&gt;
&lt;br /&gt;
File extensions &amp;lt;code&amp;gt;.vot&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;.xml&amp;lt;/code&amp;gt; are reasonably common, but there is no recommendation or fixed convention.&lt;br /&gt;
&lt;br /&gt;
== Software ==&lt;br /&gt;
&lt;br /&gt;
See the IVOA Working Group page mentioned above.&lt;br /&gt;
&lt;br /&gt;
== Sample files ==&lt;br /&gt;
&lt;br /&gt;
No collections known.&lt;br /&gt;
&lt;br /&gt;
== Identification ==&lt;br /&gt;
&lt;br /&gt;
The v1.2 VOTable XML-Schema uses the namespace &amp;lt;code&amp;gt;http://www.ivoa.net/xml/VOTable/v1.2&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:XML based file formats]]&lt;/div&gt;</summary>
		<author><name>DavidFichtmueller</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/QCDml</id>
		<title>QCDml</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/QCDml"/>
				<updated>2012-11-20T17:15:05Z</updated>
		
		<summary type="html">&lt;p&gt;DavidFichtmueller: added category Category:XML based file formats&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{FormatInfo&lt;br /&gt;
|formattype=electronic&lt;br /&gt;
|subcat=Scientific Data formats&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
'''QCDml''' is an XML Schema defined by the [http://www.usqcd.org/ildg/ International Lattice Data Grid] Metadata Working Group in order to make is easy to share data generated by Lattice QCD simulations.&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
* [http://cdsweb.cern.ch/record/793008/files/0409055.pdf?version=1 QCDml: First milestone for building an International Lattice Data Grid]&lt;br /&gt;
* [http://www.lqcd.org/ildg/QCDml/ XML Schemas]&lt;br /&gt;
* [http://buphy.bu.edu/~brower/SciDAC/doc/QCDML.pdf QCDML, summary of discussion, proposed solution]&lt;br /&gt;
* [http://code.google.com/p/qcdutils/ qcdutils] related software that can handle QCD data formats.&lt;br /&gt;
&lt;br /&gt;
[[Category:XML based file formats]]&lt;/div&gt;</summary>
		<author><name>DavidFichtmueller</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/Mm</id>
		<title>Mm</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/Mm"/>
				<updated>2012-11-20T17:14:38Z</updated>
		
		<summary type="html">&lt;p&gt;DavidFichtmueller: added category Category:XML based file formats&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{|&lt;br /&gt;
|[[File Formats]]&lt;br /&gt;
| &amp;gt;&lt;br /&gt;
|[[Electronic File Formats]]&lt;br /&gt;
| &amp;gt;&lt;br /&gt;
|[[Mind maps, Topic maps etc]]&lt;br /&gt;
| &amp;gt;&lt;br /&gt;
|[[mm]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
This page describes the FreeMind file format, which is reportedly used by several other mind mapping software programs (at least for import and/or export). The file format can be created, read and manipulated using the [http://freemind.sourceforge.net/wiki/index.php/Main_Page FreeMind Open Source software application]. Tools and mechanisms for [http://freemind.sourceforge.net/wiki/index.php/Import_and_export import and export of maps] and [http://freemind.sourceforge.net/wiki/index.php/Accessories conversion to other formats] are listed.&lt;br /&gt;
&lt;br /&gt;
The format is referenced in the Wikipedia [http://en.wikipedia.org/wiki/List_of_mind_mapping_software#File_format page on mind mapping software]. The XML schema for version 0.9.0 beta 2 (the latest &amp;quot;production version as of November 2012) is at [http://freemind.cvs.sourceforge.net/viewvc/freemind/freemind/freemind.xsd?pathrev=fm_0_9_0_beta2&amp;amp;revision=1.1.2.4 http://freemind.cvs.sourceforge.net/viewvc/freemind/freemind/freemind.xsd?pathrev=fm_0_9_0_beta2&amp;amp;revision=1.1.2.4]. The schema for the latest development version as of November 2012 is identical.&lt;br /&gt;
&lt;br /&gt;
Many sample FreeMind maps are available in the [http://freemind.sourceforge.net/wiki/index.php/Mind_Map_Gallery FreeMind Map Gallery]. Some of these are shown in a [http://freemind.sourceforge.net/wiki/index.php/Flash_browser Flash-based browser].&lt;br /&gt;
&lt;br /&gt;
The file extension is .mm and the MIME Type is application/freemind or application/x-freemind.&lt;br /&gt;
&lt;br /&gt;
[[Category:XML based file formats]]&lt;/div&gt;</summary>
		<author><name>DavidFichtmueller</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/XML</id>
		<title>XML</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/XML"/>
				<updated>2012-11-20T17:11:06Z</updated>
		
		<summary type="html">&lt;p&gt;DavidFichtmueller: character fix&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{FormatInfo&lt;br /&gt;
|formattype=electronic&lt;br /&gt;
|subcat=Document&lt;br /&gt;
|extensions={{ext|xml}}&lt;br /&gt;
|mimetypes=&lt;br /&gt;
{{mimetype|application/xml}}&amp;lt;br&amp;gt;&lt;br /&gt;
{{mimetype|text/xml}}&lt;br /&gt;
}}&lt;br /&gt;
'''Extensible Markup Language''' (XML) is a markup language used to encode data.&lt;br /&gt;
&lt;br /&gt;
XML is a language from which languages are made. A body of rules for how an XML document for specific purpose may be constructed is often called a &amp;quot;language&amp;quot; or a &amp;quot;format&amp;quot; in its own right. These rules may be specified in several different ways, the most common being Document Type Definition (DTD) and Schema. A document which follows the syntactic rules of XML is considered &amp;quot;well-formed.&amp;quot; A document which is well-formed and also conforms to its DTD or schema declarations is considered &amp;quot;valid.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
A Document Type Definition may be included in an XML document or be referenced by a Document Type Declaration, or both approaches may be combined. An external reference to a DTD is provided by a Document Type Declaration, which confusingly has the same initials.&lt;br /&gt;
&lt;br /&gt;
A Schema, unlike a DTD, is itself written in XML. A document can have a Schema for each of its namespaces. DTDs have been largely superseded by Schemas because of the former's limitation of one DTD per document and the latter's greater capacity for describing rules and namespace support.&lt;br /&gt;
&lt;br /&gt;
XML documents refer to both Schemas and DTDs by a URI. It is crucial to remember that this reference is a Universal Resource Identifier, nor a Universal Resource Locator (URL). There is no requirement that the URI point to a resource on the Internet, or even that such a resource exist. This is a potential preservation risk with XML documents, as they may outlive the DTD and Schema documents that characterize them, or the documents may move and be difficult to locate.&lt;br /&gt;
&lt;br /&gt;
There are variants of [[HTML]] which are expressed in XML-compliant syntax (which, for instance, requires the tags to be consistently lowercase, and elements with no closing tag have a slash before the right angle bracket at the end of the tag, like &amp;amp;lt;BR /&amp;amp;gt; instead of &amp;amp;lt;BR&amp;amp;gt;), and these are known as XHTML. This format may be served under the XML or HTML MIME types, and browsers might treat them differently in these cases.&lt;br /&gt;
&lt;br /&gt;
== Specifications ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.w3.org/TR/xml/ XML 1.0]&lt;br /&gt;
** [http://www.w3.org/TR/2008/REC-xml-20081126/ XML 1.0, Fifth Edition (2008-11-26)]&lt;br /&gt;
** [http://www.w3.org/TR/2006/REC-xml-20060816/ XML 1.0, Fourth Edition (2006-09-29)]&lt;br /&gt;
** [http://www.w3.org/TR/2004/REC-xml-20040204/ XML 1.0, Third Edition (2004-02-04)]&lt;br /&gt;
** [http://www.w3.org/TR/2000/REC-xml-20001006 XML 1.0, Second Edition (2000-10-06)]&lt;br /&gt;
** [http://www.w3.org/TR/1998/REC-xml-19980210 XML 1.0, First Edition (1998-02-10)]&lt;br /&gt;
* [http://www.w3.org/TR/xml11/ XML 1.1]&lt;br /&gt;
** [http://www.w3.org/TR/2006/REC-xml11-20060816/ XML 1.1, Second Edition (2006-09-29)]&lt;br /&gt;
** [http://www.w3.org/TR/2004/REC-xml11-20040204/ XML 1.1, First Edition (2004-04-15)]&lt;br /&gt;
&lt;br /&gt;
== External links ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.w3.org/XML/ W3C XML Homepage]&lt;br /&gt;
* [http://www.w3.org/XML/Core/ W3C XML Core Working Group Public Page]&lt;br /&gt;
&lt;br /&gt;
[[Category:Text-based data]]&lt;br /&gt;
[[Category:XML based file formats| ]]&lt;/div&gt;</summary>
		<author><name>DavidFichtmueller</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/XML</id>
		<title>XML</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/XML"/>
				<updated>2012-11-20T17:10:11Z</updated>
		
		<summary type="html">&lt;p&gt;DavidFichtmueller: added category ! as the general overview page of the category&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{FormatInfo&lt;br /&gt;
|formattype=electronic&lt;br /&gt;
|subcat=Document&lt;br /&gt;
|extensions={{ext|xml}}&lt;br /&gt;
|mimetypes=&lt;br /&gt;
{{mimetype|application/xml}}&amp;lt;br&amp;gt;&lt;br /&gt;
{{mimetype|text/xml}}&lt;br /&gt;
}}&lt;br /&gt;
'''Extensible Markup Language''' (XML) is a markup language used to encode data.&lt;br /&gt;
&lt;br /&gt;
XML is a language from which languages are made. A body of rules for how an XML document for specific purpose may be constructed is often called a &amp;quot;language&amp;quot; or a &amp;quot;format&amp;quot; in its own right. These rules may be specified in several different ways, the most common being Document Type Definition (DTD) and Schema. A document which follows the syntactic rules of XML is considered &amp;quot;well-formed.&amp;quot; A document which is well-formed and also conforms to its DTD or schema declarations is considered &amp;quot;valid.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
A Document Type Definition may be included in an XML document or be referenced by a Document Type Declaration, or both approaches may be combined. An external reference to a DTD is provided by a Document Type Declaration, which confusingly has the same initials.&lt;br /&gt;
&lt;br /&gt;
A Schema, unlike a DTD, is itself written in XML. A document can have a Schema for each of its namespaces. DTDs have been largely superseded by Schemas because of the former's limitation of one DTD per document and the latter's greater capacity for describing rules and namespace support.&lt;br /&gt;
&lt;br /&gt;
XML documents refer to both Schemas and DTDs by a URI. It is crucial to remember that this reference is a Universal Resource Identifier, nor a Universal Resource Locator (URL). There is no requirement that the URI point to a resource on the Internet, or even that such a resource exist. This is a potential preservation risk with XML documents, as they may outlive the DTD and Schema documents that characterize them, or the documents may move and be difficult to locate.&lt;br /&gt;
&lt;br /&gt;
There are variants of [[HTML]] which are expressed in XML-compliant syntax (which, for instance, requires the tags to be consistently lowercase, and elements with no closing tag have a slash before the right angle bracket at the end of the tag, like &amp;amp;lt;BR /&amp;amp;gt; instead of &amp;amp;lt;BR&amp;amp;gt;), and these are known as XHTML. This format may be served under the XML or HTML MIME types, and browsers might treat them differently in these cases.&lt;br /&gt;
&lt;br /&gt;
== Specifications ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.w3.org/TR/xml/ XML 1.0]&lt;br /&gt;
** [http://www.w3.org/TR/2008/REC-xml-20081126/ XML 1.0, Fifth Edition (2008-11-26)]&lt;br /&gt;
** [http://www.w3.org/TR/2006/REC-xml-20060816/ XML 1.0, Fourth Edition (2006-09-29)]&lt;br /&gt;
** [http://www.w3.org/TR/2004/REC-xml-20040204/ XML 1.0, Third Edition (2004-02-04)]&lt;br /&gt;
** [http://www.w3.org/TR/2000/REC-xml-20001006 XML 1.0, Second Edition (2000-10-06)]&lt;br /&gt;
** [http://www.w3.org/TR/1998/REC-xml-19980210 XML 1.0, First Edition (1998-02-10)]&lt;br /&gt;
* [http://www.w3.org/TR/xml11/ XML 1.1]&lt;br /&gt;
** [http://www.w3.org/TR/2006/REC-xml11-20060816/ XML 1.1, Second Edition (2006-09-29)]&lt;br /&gt;
** [http://www.w3.org/TR/2004/REC-xml11-20040204/ XML 1.1, First Edition (2004-04-15)]&lt;br /&gt;
&lt;br /&gt;
== External links ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.w3.org/XML/ W3C XML Homepage]&lt;br /&gt;
* [http://www.w3.org/XML/Core/ W3C XML Core Working Group Public Page]&lt;br /&gt;
&lt;br /&gt;
[[Category:Text-based data]]&lt;br /&gt;
[[Category:XML based file formats|!]]&lt;/div&gt;</summary>
		<author><name>DavidFichtmueller</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/CML</id>
		<title>CML</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/CML"/>
				<updated>2012-11-20T17:09:27Z</updated>
		
		<summary type="html">&lt;p&gt;DavidFichtmueller: added category Category:XML based file formats&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{FormatInfo&lt;br /&gt;
|formattype=electronic&lt;br /&gt;
|subcat=Scientific Data formats&lt;br /&gt;
|subcat2=Chemical data&lt;br /&gt;
|extensions={{ext|cml}}&lt;br /&gt;
|mimetypes={{mimetype|chemical/x-cml}}&lt;br /&gt;
}}&lt;br /&gt;
'''Chemical Markup Language''' ('''CML''') is an XML-based format for encoding detailed information about a wide range of chemical concepts. It has existed in several versions, originally based on a XML DTD and latterly on a XML Schema. Some aspects of v1 are now deprecated. Schemas and other information are now hosted on [http://cml.sourceforge.net/ the CML SourceForge pages].&lt;br /&gt;
&lt;br /&gt;
The [http://en.wikipedia.org/wiki/Chemical_Markup_Language Wikipedia page for CML] describes several Open Source libraries and tools for creating, reading and processing CML.&lt;br /&gt;
&lt;br /&gt;
The CML file extension is .cml and the MIME-type is chemical/x-cml.&lt;br /&gt;
&lt;br /&gt;
[[Category:XML based file formats]]&lt;/div&gt;</summary>
		<author><name>DavidFichtmueller</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/Scalable_Vector_Graphics</id>
		<title>Scalable Vector Graphics</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/Scalable_Vector_Graphics"/>
				<updated>2012-11-20T17:07:20Z</updated>
		
		<summary type="html">&lt;p&gt;DavidFichtmueller: added category Category:XML based file formats&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{FormatInfo&lt;br /&gt;
|formattype=electronic&lt;br /&gt;
|subcat=Graphics&lt;br /&gt;
|extensions={{ext|svg}}&lt;br /&gt;
|mimetypes={{mimetype|image/svg+xml}}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
Scalable Vector Graphics (SVG) is an [[XML]] based method for storing [[Graphics|vector images]].&lt;br /&gt;
&lt;br /&gt;
The [http://www.w3.org/TR/SVG/ specification] is open and there is a [http://www.w3.org/Graphics/SVG/ working group].&lt;br /&gt;
&lt;br /&gt;
The following is an example of a simple svg file:&lt;br /&gt;
&lt;br /&gt;
  &amp;lt;svg xmlns=&amp;quot;http://www.w3.org/2000/svg&amp;quot; version=&amp;quot;1.1&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;circle cx=&amp;quot;100&amp;quot; cy=&amp;quot;50&amp;quot; r=&amp;quot;40&amp;quot; stroke=&amp;quot;black&amp;quot; stroke-width=&amp;quot;2&amp;quot; fill=&amp;quot;red&amp;quot; /&amp;gt;&lt;br /&gt;
  &amp;lt;/svg&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
* [http://www.w3.org/TR/SVG/ Official specification]&lt;br /&gt;
&lt;br /&gt;
[[Category:XML based file formats]]&lt;/div&gt;</summary>
		<author><name>DavidFichtmueller</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/AbiWord</id>
		<title>AbiWord</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/AbiWord"/>
				<updated>2012-11-20T17:05:54Z</updated>
		
		<summary type="html">&lt;p&gt;DavidFichtmueller: added category Category:XML based file formats&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{FormatInfo&lt;br /&gt;
|formattype=electronic&lt;br /&gt;
|subcat=Document&lt;br /&gt;
|extensions={{ext|abw}}, {{ext|zabw}}, {{ext|abw.gz}}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
'''ABW''' is the format used by AbiWord a Free multi-platform word processor.&lt;br /&gt;
It is a [[XML]] based format.  The .zabw and .abw.gz versions are compressed using [[GZIP]].&lt;br /&gt;
&lt;br /&gt;
* [http://abisource.com/ AbiWord website]&lt;br /&gt;
* [http://www.abisource.com/wiki/File_format info about the file format]&lt;br /&gt;
* [http://www.abisource.com/wiki/AbiWord page has a sample file]&lt;br /&gt;
* [http://www.abisource.com/wiki/FaqAbiWordNativeFormatToText to convert to plain text]&lt;br /&gt;
&lt;br /&gt;
[[Category:XML based file formats]]&lt;/div&gt;</summary>
		<author><name>DavidFichtmueller</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/EPUB</id>
		<title>EPUB</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/EPUB"/>
				<updated>2012-11-20T17:05:17Z</updated>
		
		<summary type="html">&lt;p&gt;DavidFichtmueller: added category Category:XML based file formats&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{FormatInfo&lt;br /&gt;
|formattype=electronic&lt;br /&gt;
|subcat=Electronic Publishing formats&lt;br /&gt;
|extensions={{ext|epub}}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
== Description ==&lt;br /&gt;
&lt;br /&gt;
ePub is an open format defined by the Open eBook Forum of the International Digital Publishing Forum ([[IDPF]]). It is based on [[XHTML]] and [[XML]] along with optional [[CSS]] style sheets. Its predecessor was the [[OEB]] standard.&lt;br /&gt;
&lt;br /&gt;
Quoted from the IDPF web site:&lt;br /&gt;
&lt;br /&gt;
: '.epub' is the file extension of an XML format for reflowable digital books and publications. '.epub' is composed of three open standards, the Open Publication Structure (OPS), Open Packaging Format (OPF) and Open Container Format (OCF), produced by the IDPF. '.epub' allows publishers to produce and send a single digital publication file through distribution and offers consumers interoperability between software/hardware for unencrypted reflowable digital books and other publications. The Open eBook Publication Structure or 'OEB', originally produced in 1999, is the precursor to OPS. &lt;br /&gt;
&lt;br /&gt;
The intent of ePub is to serve both as a source file format and an end user format. For this reason the files are collected into a container for easy dissemination and use. This container is generally a zip file but the extension has been renamed to .epub. It has special requirements by including an uncompressed mime type file while the rest of the data in the file is compressed. An ePub reader should be capable of reading the content in its compressed format. &amp;lt;sup&amp;gt;http://wiki.mobileread.com/wiki/EPUB&amp;lt;/sup&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Version 2 ==&lt;br /&gt;
&lt;br /&gt;
[http://www.idpf.org/specs.htm The IDPF specification page] contains the specifications for this format. In particular check the version 2.01 OPS and OPF specifications and the version 1.01 OCF specifications. The informational documents are also quite useful in understanding the standard's intent and content.&lt;br /&gt;
&lt;br /&gt;
=== References ===&lt;br /&gt;
&lt;br /&gt;
* http://wiki.mobileread.com/wiki/EPUB&lt;br /&gt;
* http://www.idpf.org/specs.htm&lt;br /&gt;
&lt;br /&gt;
== Version 3 ==&lt;br /&gt;
&lt;br /&gt;
ePub version 3 is the newest version of the standard and has now been recommended by the idpf standards committee.&lt;br /&gt;
&lt;br /&gt;
In version 2.01 there were three defining documents, the [[OPF]] (Open Packaging Format), the [[OCF]] (Open Container Format), and the [[OPS]] (Open Publications Structure). The OPS referenced a [[DAISY]] standard for the [[NCX]] file. The new 3.0 standard has 4 defining documents with new names. The OPF becomes the [[ePub Publications standard]]. The OCF remains the same and the OPS received the most changes to become the [[ePub Content Documents]]. This now includes the old NCX specifications which are no longer used. A fourth document is concerned with [[Media Overlays]] and is a new feature of ePub version 3. &amp;lt;sup&amp;gt;http://wiki.mobileread.com/wiki/EPub_3&amp;lt;/sup&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== References ===&lt;br /&gt;
&lt;br /&gt;
* http://wiki.mobileread.com/wiki/EPub_3&lt;br /&gt;
* http://idpf.org/epub/30/spec/epub30-overview.html&lt;br /&gt;
&lt;br /&gt;
[[Category:XML based file formats]]&lt;/div&gt;</summary>
		<author><name>DavidFichtmueller</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/HTML</id>
		<title>HTML</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/HTML"/>
				<updated>2012-11-20T17:03:46Z</updated>
		
		<summary type="html">&lt;p&gt;DavidFichtmueller: removed category Category:XML based file formats, it was moved to XHTML&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{FormatInfo&lt;br /&gt;
|formattype=electronic&lt;br /&gt;
|subcat=Document&lt;br /&gt;
|extensions={{ext|html}}, {{ext|htm}}&lt;br /&gt;
|mimetypes={{mimetype|text/html}}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
'''HTML''' ('''h'''yper'''t'''ext '''m'''arkup '''l'''anguage) originally was a [[SGML]] based markup language. XHTML is HTML redeveloped using the stricter [[XML]] rules. Disagreement over the direction of W3C developments from some of the browser vendors lead to the formation of the Web Hypertext Application Technology Working Group (WHATWG). They maintain the spec for the HTML5 or HTML Next or HTML Living Standard, which is not based on SGML any more. The W3C standardisation group will work to formalise the WHATWG specification as a series of standardised [http://wiki.whatwg.org/wiki/HTML_snapshots 'snapshots'] of the living standard.&lt;br /&gt;
&lt;br /&gt;
== Identifiers ==&lt;br /&gt;
* File extension: '''.HTML''', '''.HTM'''&lt;br /&gt;
* MIME type (Internet media type): '''text/html'''&lt;br /&gt;
&lt;br /&gt;
== Resources ==&lt;br /&gt;
* W3C specifications:&lt;br /&gt;
** [http://www.w3.org/MarkUp/HTMLPlus/htmlplus_1.html HTML (1) specification]&lt;br /&gt;
** [http://www.w3.org/MarkUp/html-spec/ HTML 2.0 specification] (see also the [http://tools.ietf.org/html/rfc1866 RFC])&lt;br /&gt;
** [http://www.w3.org/TR/REC-html32 HTML 3.2 specification]&lt;br /&gt;
** [http://www.w3.org/TR/REC-html40/ HTML 4.01 specification]&lt;br /&gt;
** [http://www.w3.org/TR/html5/ HTML5 working draft]&lt;br /&gt;
** [http://www.w3.org/TR/xhtml1 XHTML 1.0 specification]&lt;br /&gt;
** [http://www.w3.org/TR/xhtml11 XHTML 1.1 specification]&lt;br /&gt;
* Web Hypertext Application Technology Working Group (WHATWG) specifications:&lt;br /&gt;
** [http://wiki.whatwg.org/ The WHATWG Wiki]&lt;br /&gt;
** [http://www.whatwg.org/specs/web-apps/current-work/multipage/ HTML Living Standard] &lt;br /&gt;
** [http://blog.whatwg.org/html-is-the-new-html5 Blog post describing the background information of the living standard]&lt;br /&gt;
** [http://www.whatwg.org/specs/ List of all WHATWG specifications]&lt;br /&gt;
** [http://wiki.whatwg.org/wiki/HTML_derivatives List of 'HTML derivatives' and other spin-off specifications]&lt;br /&gt;
** [http://wiki.whatwg.org/wiki/HTML_snapshots HTML Snapshots]&lt;br /&gt;
* [http://www.w3.org/community/webhistory/ W3C Web History Community Group]&lt;/div&gt;</summary>
		<author><name>DavidFichtmueller</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/XHTML</id>
		<title>XHTML</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/XHTML"/>
				<updated>2012-11-20T17:03:33Z</updated>
		
		<summary type="html">&lt;p&gt;DavidFichtmueller: added category Category:XML based file formats&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT [[HTML]]&lt;br /&gt;
&lt;br /&gt;
[[Category:XML based file formats]]&lt;/div&gt;</summary>
		<author><name>DavidFichtmueller</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/XLSX</id>
		<title>XLSX</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/XLSX"/>
				<updated>2012-11-20T17:02:12Z</updated>
		
		<summary type="html">&lt;p&gt;DavidFichtmueller: added category Category:XML based file formats&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{FormatInfo&lt;br /&gt;
|formattype=electronic&lt;br /&gt;
|subcat=Document&lt;br /&gt;
|extensions={{ext|xlsx}}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
Office Open XML Spreadsheet (.XLSX) is the default file format for documents used by Microsoft Excel as of Excel 2007. In prior versions, the default version was [[XLS]].&lt;br /&gt;
&lt;br /&gt;
== History ==&lt;br /&gt;
&lt;br /&gt;
This (along with the other Office Open XML items [[DOCX]] and [[PPTX]]) was initially standardized as ECMA-376 in 2006. Three formats of this standard have been produced; the second version also corresponds to ISO/IEC 29500.&lt;br /&gt;
&lt;br /&gt;
== References == &lt;br /&gt;
* [http://www.ecma-international.org/publications/standards/Ecma-376.htm ECMA-376 specification ]&lt;br /&gt;
* [http://standards.iso.org/ittf/PubliclyAvailableStandards/index.html ISO/IEC 29500 specification]&lt;br /&gt;
&lt;br /&gt;
[[Category:XML based file formats]]&lt;/div&gt;</summary>
		<author><name>DavidFichtmueller</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/DOCX</id>
		<title>DOCX</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/DOCX"/>
				<updated>2012-11-20T17:02:00Z</updated>
		
		<summary type="html">&lt;p&gt;DavidFichtmueller: added category Category:XML based file formats&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{FormatInfo&lt;br /&gt;
|formattype=electronic&lt;br /&gt;
|subcat=Document&lt;br /&gt;
|extensions={{ext|docx}}&lt;br /&gt;
|mimetypes={{mimetype|application/msword}}&lt;br /&gt;
}}&lt;br /&gt;
Office Open XML (OOXML) representation (.DOCX) is the default file format for documents created by Microsoft Word as of Word 2007.  The format is based on [[XML]] component files in a container based on the [[ZIP]] format.    &lt;br /&gt;
&lt;br /&gt;
== History ==&lt;br /&gt;
&lt;br /&gt;
This (along with the other Office Open XML document types [[PPTX]] and [[XLSX]]) was initially standardized as ECMA-376 in 2006. Three versions of ECMA-376 have been produced; the second version corresponds to ISO/IEC 29500:2008, approved as an ISO/IEC standard in April 2008.  Changes to the standard between 2008 and 2012 were primarily corrections based on individual defects reported as implementation of the standard proceeded and required to ensure functional interoperability with existing applications.  They do not introduce new functionality.&lt;br /&gt;
&lt;br /&gt;
== References == &lt;br /&gt;
* [http://www.ecma-international.org/publications/standards/Ecma-376.htm ECMA-376 specification ]&lt;br /&gt;
* [http://standards.iso.org/ittf/PubliclyAvailableStandards/index.html ISO publicly available standards, including the latest ISO/IEC 29500 specification] (as of November 2012, this is ISO/IEC 29500:2012)&lt;br /&gt;
* [http://en.wikipedia.org/wiki/Office_Open_XML Office Open XML : Wikipedia]&lt;br /&gt;
&lt;br /&gt;
[[Category:XML based file formats]]&lt;/div&gt;</summary>
		<author><name>DavidFichtmueller</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/PPTX</id>
		<title>PPTX</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/PPTX"/>
				<updated>2012-11-20T17:01:47Z</updated>
		
		<summary type="html">&lt;p&gt;DavidFichtmueller: added category Category:XML based file formats&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{FormatInfo&lt;br /&gt;
|formattype=electronic&lt;br /&gt;
|subcat=Document&lt;br /&gt;
|extensions={{ext|pptx}}&lt;br /&gt;
|mimetypes={{mimetype|application/vnd.openxmlformats-officedocument.presentationml.presentation}}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
Office Open XML (OOXML) Powerpoint (.PPTX) is the default file format for documents used by Microsoft Powerpoint as of Powerpoint 2007. The format can be read by the Open Source OpenOffice and LibreOffice suites.&lt;br /&gt;
&lt;br /&gt;
The file extension is .pptx and the approved MIME type is application/vnd.openxmlformats-officedocument.presentationml.presentation.&lt;br /&gt;
&lt;br /&gt;
== History ==&lt;br /&gt;
&lt;br /&gt;
This (along with the other Office Open XML items [[DOCX]] and [[XLSX]]) was initially standardized as ECMA-376 in 2006. Three formats of this standard have been produced; the second version also corresponds to ISO/IEC 29500. OOXML may not completely comply with the latter as of 2012.&lt;br /&gt;
&lt;br /&gt;
== References == &lt;br /&gt;
* [http://www.ecma-international.org/publications/standards/Ecma-376.htm ECMA-376 specification ]&lt;br /&gt;
* [http://standards.iso.org/ittf/PubliclyAvailableStandards/index.html ISO/IEC 29500 specification]&lt;br /&gt;
&lt;br /&gt;
[[Category:XML based file formats]]&lt;/div&gt;</summary>
		<author><name>DavidFichtmueller</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/HTML</id>
		<title>HTML</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/HTML"/>
				<updated>2012-11-20T17:00:38Z</updated>
		
		<summary type="html">&lt;p&gt;DavidFichtmueller: added category XHTML, since XHTML redirects here&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{FormatInfo&lt;br /&gt;
|formattype=electronic&lt;br /&gt;
|subcat=Document&lt;br /&gt;
|extensions={{ext|html}}, {{ext|htm}}&lt;br /&gt;
|mimetypes={{mimetype|text/html}}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
'''HTML''' ('''h'''yper'''t'''ext '''m'''arkup '''l'''anguage) originally was a [[SGML]] based markup language. XHTML is HTML redeveloped using the stricter [[XML]] rules. Disagreement over the direction of W3C developments from some of the browser vendors lead to the formation of the Web Hypertext Application Technology Working Group (WHATWG). They maintain the spec for the HTML5 or HTML Next or HTML Living Standard, which is not based on SGML any more. The W3C standardisation group will work to formalise the WHATWG specification as a series of standardised [http://wiki.whatwg.org/wiki/HTML_snapshots 'snapshots'] of the living standard.&lt;br /&gt;
&lt;br /&gt;
== Identifiers ==&lt;br /&gt;
* File extension: '''.HTML''', '''.HTM'''&lt;br /&gt;
* MIME type (Internet media type): '''text/html'''&lt;br /&gt;
&lt;br /&gt;
== Resources ==&lt;br /&gt;
* W3C specifications:&lt;br /&gt;
** [http://www.w3.org/MarkUp/HTMLPlus/htmlplus_1.html HTML (1) specification]&lt;br /&gt;
** [http://www.w3.org/MarkUp/html-spec/ HTML 2.0 specification] (see also the [http://tools.ietf.org/html/rfc1866 RFC])&lt;br /&gt;
** [http://www.w3.org/TR/REC-html32 HTML 3.2 specification]&lt;br /&gt;
** [http://www.w3.org/TR/REC-html40/ HTML 4.01 specification]&lt;br /&gt;
** [http://www.w3.org/TR/html5/ HTML5 working draft]&lt;br /&gt;
** [http://www.w3.org/TR/xhtml1 XHTML 1.0 specification]&lt;br /&gt;
** [http://www.w3.org/TR/xhtml11 XHTML 1.1 specification]&lt;br /&gt;
* Web Hypertext Application Technology Working Group (WHATWG) specifications:&lt;br /&gt;
** [http://wiki.whatwg.org/ The WHATWG Wiki]&lt;br /&gt;
** [http://www.whatwg.org/specs/web-apps/current-work/multipage/ HTML Living Standard] &lt;br /&gt;
** [http://blog.whatwg.org/html-is-the-new-html5 Blog post describing the background information of the living standard]&lt;br /&gt;
** [http://www.whatwg.org/specs/ List of all WHATWG specifications]&lt;br /&gt;
** [http://wiki.whatwg.org/wiki/HTML_derivatives List of 'HTML derivatives' and other spin-off specifications]&lt;br /&gt;
** [http://wiki.whatwg.org/wiki/HTML_snapshots HTML Snapshots]&lt;br /&gt;
* [http://www.w3.org/community/webhistory/ W3C Web History Community Group]&lt;br /&gt;
&lt;br /&gt;
[[Category:XML based file formats|XHTML]]&lt;/div&gt;</summary>
		<author><name>DavidFichtmueller</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/CapXML</id>
		<title>CapXML</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/CapXML"/>
				<updated>2012-11-20T16:58:39Z</updated>
		
		<summary type="html">&lt;p&gt;DavidFichtmueller: added category Category:XML based file formats&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{FormatInfo&lt;br /&gt;
|formattype=electronic&lt;br /&gt;
|subcat=Audio&lt;br /&gt;
|extensions={{ext|capx}}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
== Description ==&lt;br /&gt;
&lt;br /&gt;
CapXML is used by the Capella notation software to represent musical scores. It is an evolution of the previous binary format, [[CAP]]. There are two versions: CapXML 1.0 and CapXML 2.0.&lt;br /&gt;
&lt;br /&gt;
== Information ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.capella.de/download/mehr/workshops/capxml.pdf Some info on the CapXML format] (PDF, German)&lt;br /&gt;
* [http://mfi.math.uni-siegen.de/barcelona.pdf CapXML Design Goals] (PDF)&lt;br /&gt;
&lt;br /&gt;
[[Category:XML based file formats]]&lt;/div&gt;</summary>
		<author><name>DavidFichtmueller</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/PSI-MI_XML</id>
		<title>PSI-MI XML</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/PSI-MI_XML"/>
				<updated>2012-11-20T16:57:01Z</updated>
		
		<summary type="html">&lt;p&gt;DavidFichtmueller: added category Category:XML based file formats&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{FormatInfo&lt;br /&gt;
|formattype=electronic&lt;br /&gt;
|subcat=Scientific Data formats&lt;br /&gt;
|extensions={{ext|obo}}, {{ext|dag}}, {{ext|def}}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
== General description ==&lt;br /&gt;
&lt;br /&gt;
This page describes the PSI-MI XML file format, also known as MIF. The PSI MI format is a data exchange format for molecular interactions.&lt;br /&gt;
&lt;br /&gt;
The file format is described at the HUPO Proteomics Standards Initiative site, see the [http://psidev.info/mif specification]. The current version is 2.5.&lt;br /&gt;
&lt;br /&gt;
Released December 5, 2005; last maintenance update June 1, 2006, to version 2.5.3.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--Include link to any authoritative web site(s) about the format, particularly the prime sponsor, and if possible a direct link to a specification, schema etc. --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Other information ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--Include other information describing the format, eg Wikipedia pages, PRONOM or LoC identifiers, etc. Eg --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--The format is referenced in the Wikipedia [http://en.wikipedia.org/wiki/xxxxx page on xxxxx]. --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--Indicate any version-specific information that may be available. Indicate openness (or otherwise) of the format. --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Software ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--Include processing and/or migration information, eg: --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--The file format can be created, read and manipulated using the [http://url xxx Open Source software application]. --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Sample files ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--Many sample xxxxx files are available in the yyyyy --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Identification ==&lt;br /&gt;
&lt;br /&gt;
The newer OBO file type appears to be .obo; previously DAG file types of .dag and .def were used. &amp;lt;Uncertain.&amp;gt;&lt;br /&gt;
&amp;lt;!--Factors that can help identify a candidate file as of this format. Include magic numbers, signatures etc if available. Eg: --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--The file extension is .xx and the MIME Type is xxxxx. --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;br /&gt;
&amp;lt;!--List articles, books or web pages describing the format or supporting the evidence.--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:XML based file formats]]&lt;/div&gt;</summary>
		<author><name>DavidFichtmueller</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/OME-XML</id>
		<title>OME-XML</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/OME-XML"/>
				<updated>2012-11-20T16:56:31Z</updated>
		
		<summary type="html">&lt;p&gt;DavidFichtmueller: added category Category:XML based file formats&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{FormatInfo&lt;br /&gt;
|formattype=electronic&lt;br /&gt;
|subcat=Scientific Data formats&lt;br /&gt;
|extensions={{ext|ome.xml}}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
== General description ==&lt;br /&gt;
This page describes the OME-XML file format for Open Microscopy, defined to make it simple to move microscopy data from one site and user to another. This format is related to [[OME-TIFF]], which was developed from it. The format is described on the [http://www.openmicroscopy.org/site/support/file-formats/the-ome-xml-file OME-XML page] at the Open Microscopy site.&lt;br /&gt;
&lt;br /&gt;
== Other information ==&lt;br /&gt;
NA&lt;br /&gt;
&lt;br /&gt;
== Software ==&lt;br /&gt;
The file format can be created, read and manipulated using the [http://loci.wisc.edu/software/bio-formats Bio-Formats Library] and the [http://www.openmicroscopy.org/site/support/omero4 OMERO Server]. There is an [http://validator.openmicroscopy.org.uk/ OME Validator] to check files, which can lso tell you the OME-XML version. However, almost any software can read the files; you don't need OME software to use OME-XML.&lt;br /&gt;
&lt;br /&gt;
== Sample files ==&lt;br /&gt;
NA&lt;br /&gt;
&lt;br /&gt;
== Identification ==&lt;br /&gt;
The file extension is .ome.xml and the MIME Type is xxxxx.&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
The original paper describing the concept is Goldberg, I. G., Allan, C., Burel, J.-M., Creager, D., Falconi, A., Hochheiser, H., Johnston, J., et al. (2005). The Open Microscopy Environment (OME) Data Model and XML file: open tools for informatics and quantitative analysis in biological imaging. Genome biology, 6(5), R47. doi:10.1186/gb-2005-6-5-r47 .&lt;br /&gt;
&lt;br /&gt;
[[Category:XML based file formats]]&lt;/div&gt;</summary>
		<author><name>DavidFichtmueller</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/Early_Mind_Manager_XML_format</id>
		<title>Early Mind Manager XML format</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/Early_Mind_Manager_XML_format"/>
				<updated>2012-11-20T16:55:10Z</updated>
		
		<summary type="html">&lt;p&gt;DavidFichtmueller: added category Category:XML based file formats&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{FormatInfo&lt;br /&gt;
|formattype=electronic&lt;br /&gt;
|subcat=Mind maps, Topic maps etc&lt;br /&gt;
|subcat2=Mind Manager formats&lt;br /&gt;
|extensions={{ext|xml}}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
The Commercial mind mapping software Mind Manager has had at least two different XML-based file formats. From about 2003 Mind Manager seems to have produced XML files with a file extension of .xml. The schema for these files is at [http://schemas.mindjet.com/MindManager/Application/2003/ http://schemas.mindjet.com/MindManager/Application/2003/].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:XML based file formats]]&lt;/div&gt;</summary>
		<author><name>DavidFichtmueller</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/Category:XML_based_file_formats</id>
		<title>Category:XML based file formats</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/Category:XML_based_file_formats"/>
				<updated>2012-11-20T16:54:36Z</updated>
		
		<summary type="html">&lt;p&gt;DavidFichtmueller: Created page with &amp;quot;Category:Electronic File Formats&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Electronic File Formats]]&lt;/div&gt;</summary>
		<author><name>DavidFichtmueller</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/Scientific_Data_formats</id>
		<title>Scientific Data formats</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/Scientific_Data_formats"/>
				<updated>2012-11-20T16:48:51Z</updated>
		
		<summary type="html">&lt;p&gt;DavidFichtmueller: /* Biological */ ABCDDNA and ABCDEFG now linked to the sections in ABCD&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{|&lt;br /&gt;
|[[File Formats]]&lt;br /&gt;
| &amp;gt;&lt;br /&gt;
|[[Electronic File Formats]]&lt;br /&gt;
| &amp;gt;&lt;br /&gt;
|[[Scientific Data formats]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== General ==&lt;br /&gt;
* [[cdf]] (Common Data Format)&lt;br /&gt;
* [[EAS3]] (binary file format for structured data)&lt;br /&gt;
* [[hdf]] (Hierarchical Data Format, originally from NCSA, now maintained by The HDF Group)&lt;br /&gt;
** [[HDF4]]&lt;br /&gt;
** [[HDF5]]&lt;br /&gt;
* [[NRRD]] (Nearly Raw Raster Data -- a simple format for n-dimensional raster data)&lt;br /&gt;
* [[NetCDF]] (Network Common Data Format)&lt;br /&gt;
* There are several formats abbreviated as [[SDF]], including:&lt;br /&gt;
** [[Simple Data format]] (SDF) By George H. Fisher, Space Sciences Lab, UC Berkeley (A platform-independent, precision-preserving binary data I/O format capable of handling large, multi-dimensional arrays)&lt;br /&gt;
** [[Simple Data format-DPT]] A new format from the Data Protocols Team for publishing and sharing data&lt;br /&gt;
** [[Standard Delay Format]] A standard data structure for timing data&lt;br /&gt;
** [[Structure Data File]]  A file format for a chemical table file&lt;br /&gt;
* [[SDXF]] (Structured Data Exchange Format)&lt;br /&gt;
* [[Silo]] (a storage format for visualization developed at Lawrence Livermore National Laboratory)&lt;br /&gt;
* [[XDF]] (eXtensible Data Format)&lt;br /&gt;
* [[XSIL]] (Extensible Scientific Interchange Language)&lt;br /&gt;
&lt;br /&gt;
== Astronomical and Space ==&lt;br /&gt;
* [[Flexible Image Transport System]] (FITS)&lt;br /&gt;
* [[PDS/ODL]] (Planetary Data System)&lt;br /&gt;
* [[VOTable]] (IVOA standard table format)&lt;br /&gt;
* [[Starlink_Data_Format|SDF]] (Starlink Data Format) and [[N-Dimensional_Data_Format|NDF]] (Starlink's Extensible N-Dimensional Data Format).&lt;br /&gt;
&lt;br /&gt;
== Biological ==&lt;br /&gt;
&lt;br /&gt;
* [[AB1]] (Chromatogram files used by DNA sequencing instruments from Applied Biosystems)&lt;br /&gt;
* [[ABCD]] (Access to Biological Collection Data)&lt;br /&gt;
* [[ABCD#ABCDDNA|ABCDDNA]] (Access to Biological Collection Data DNA extension)&lt;br /&gt;
* [[ABCD#ABCDEFG|ABCDEFG]] (Access to Biological Collection Data Extension For Geosciences)&lt;br /&gt;
* [[ACE (Sequence assembly)|ACE]] (Sequence assembly format)&lt;br /&gt;
* [[Affymetrix Raw Intensity Format]]&lt;br /&gt;
* [[ARLEQUIN Project Format]]&lt;br /&gt;
* [[Axt Alignment Format]]&lt;br /&gt;
* [[BAM]] (Binary compressed SAM format)&lt;br /&gt;
* [[BED]] (Browser extensible display format describing genes and other features of DNA sequences)&lt;br /&gt;
* [[BEDgraph]]&lt;br /&gt;
* [[Big Browser Extensible Data Format]]&lt;br /&gt;
* [[Big Wiggle Format]]&lt;br /&gt;
* [[Binary Alignement Map Format]]&lt;br /&gt;
* [[Binary Probe Map Format]]&lt;br /&gt;
* [[Binary sequence information Format]]&lt;br /&gt;
* [[Biological Pathway eXchange]]&lt;br /&gt;
* [[BLAT alignment Format]]&lt;br /&gt;
* [[BRIX generated O Format]] &lt;br /&gt;
* [[CAF]] (Common Assembly Format for sequence assembly)&lt;br /&gt;
* [[CellML]]&lt;br /&gt;
* [[CHADO XML interchange Format]]&lt;br /&gt;
* [[Chain Format for pairwise alignment]]&lt;br /&gt;
* [[CHARMM Card File Format]]&lt;br /&gt;
* [[CLUSTAL-W Alignment Format]]&lt;br /&gt;
* [[CLUSTAL-W Dendrogram Guide File Format]]&lt;br /&gt;
* [[Clustered Data Table Format]]&lt;br /&gt;
* [[DELTA]] (DEscription Language for TAxonomy)&lt;br /&gt;
* [[DAS]] (Distributed Sequence Annotation System)&lt;br /&gt;
* [[DBN]] (Dot Bracket Notation (DBN) - Vienna Format)&lt;br /&gt;
* [[EMBL]] (Flatfile format used by the EMBL for nucleotide and peptide sequences)&lt;br /&gt;
* [[EML (Environmental Markup Language)]] not to be confused with [[EML (Ecological Metadata Language)]]&lt;br /&gt;
* [[ENCODE]] (Peak information Format)&lt;br /&gt;
* [[FASTA and FASTQ]] (File format for sequence data, FASTQ with quality)&lt;br /&gt;
* [[FuGEFlow]]&lt;br /&gt;
* [[FuGE-ML]] (Functional Genomics Experiment Markup Language)&lt;br /&gt;
* [[Gating-ML]]&lt;br /&gt;
* [[GCDML]] (Genomic Contextual Data Markup Language)&lt;br /&gt;
* [[GelML]] Gel electrophoresis Markup Language &lt;br /&gt;
* [[GenBank]] (Flatfile format used by NCBI for nucleotide and peptide sequences)&lt;br /&gt;
* [[Gene Feature File]] (Versions 1 and 3)&lt;br /&gt;
* [[GFF]] (General feature format for describing genes and other features of DNA, RNA and protein sequences)&lt;br /&gt;
* [[Gene Prediction File Format]]&lt;br /&gt;
* [[GenePattern GeneSet Table Format]]&lt;br /&gt;
* [[Genome Annotation File]] (version 1 and 2)&lt;br /&gt;
* [[GTF]] (Gene transfer format holds information about gene structure)&lt;br /&gt;
* [[HMMER]]&lt;br /&gt;
* [[ICB]] (ICM binary file Format)&lt;br /&gt;
* [[imzML]] (imaging mz Markup Language)&lt;br /&gt;
* [[ISA-Tab]] (Investigation Study Assay Tabular)&lt;br /&gt;
* [[ISND sequence record XML]]&lt;br /&gt;
* [[KGML]] (KEGG Mark-up Language)&lt;br /&gt;
* [[MAGE-Tab]] (MicroArray Gene Expression Tabular)&lt;br /&gt;
* [[MCL]] (Microbiological Common Language)&lt;br /&gt;
* [[MIARE-TAB]] (Minimum Information About a RNAi Experiment Tabular)&lt;br /&gt;
* [[microarray track data Browser Extensible Data Format]]&lt;br /&gt;
* [[MINiML]] (MIAME Notation in Markup Language)&lt;br /&gt;
* [[mini Protein Data Bank Format]]&lt;br /&gt;
* [[MIQAS-TAB]] (Minimal Information for QTLs and Association Studies Tabular)&lt;br /&gt;
* [[MITAB]]&lt;br /&gt;
* [[mmCIF]] (macromolecular Crystallographic Information File)&lt;br /&gt;
* [[Multiple Alignment Forma]]&lt;br /&gt;
* [[mzData]] (deprecated)&lt;br /&gt;
* [[mzIdentML]]&lt;br /&gt;
* [[mzML]]&lt;br /&gt;
* [[mzQuantML]]&lt;br /&gt;
* [[mzXML]] (deprecated)&lt;br /&gt;
* [[NCD]] (Natural Collections Descriptions)&lt;br /&gt;
* [[NDTF]] (Neurophysiology Data Translation Format)&lt;br /&gt;
* [[net alignment annotation Format]]&lt;br /&gt;
* [[NeuroML]] (Neuroscience eXtensible Markup Language)&lt;br /&gt;
* [[New Hampshire eXtended Format]]&lt;br /&gt;
* [[Newick tree Format]]&lt;br /&gt;
* [[NEXUS]] (Encodes mixed information about genetic sequence data in a block structured format)&lt;br /&gt;
* [[Nimblegen Design File Format]]&lt;br /&gt;
* [[Nimblegen Gene Data Format]]&lt;br /&gt;
* [[NMR-STAR]] (NMR Self-defining Text Archive and Retrieval format)&lt;br /&gt;
* [[nucleotide inFormation binary Format]]&lt;br /&gt;
* [[ODM]] (Operational Data Model)&lt;br /&gt;
* [[Open Biomedical Ontology Flat File Format]]&lt;br /&gt;
* [[PDB]] (Structures of biomolecules deposited in Protein Data Bank)&lt;br /&gt;
* [[Personal Genome SNP Format]]&lt;br /&gt;
* [[PHD]] (Output from the basecalling software Phred)&lt;br /&gt;
* [[phyloXML]] (XML for evolutionary biology and comparative genomics)&lt;br /&gt;
* [[Pre-Clustering File Format]]&lt;br /&gt;
* [[Protein InFormation Resource Format]]&lt;br /&gt;
* [[PRM]] (Protocol Representation Model (Medical Research))&lt;br /&gt;
* [[PSI-MI XML]]&lt;br /&gt;
* [[PSI-PAR]]&lt;br /&gt;
* [[RDML]] (Real-time PCR Data Markup Language)&lt;br /&gt;
* [[SAM]] (Sequence Alignment/Map format)&lt;br /&gt;
* [[SCF]] (Staden chromatogram files used to store data from DNA sequencing)&lt;br /&gt;
* [[SBML]] (Systems Biology Markup Language used to store biochemical network computational models)&lt;br /&gt;
* [[SDD]] (Structured Descriptive Data)&lt;br /&gt;
* [[SED-ML]] (Simulation Experiment Description Markup Language)&lt;br /&gt;
* [[Sequence Alignment Map Format]]&lt;br /&gt;
* [[SOFT]] (Simple Omnibus Format in Text)&lt;br /&gt;
* [[spML]] (Separation Markup Language)&lt;br /&gt;
* [[SRA-XML]] (Short Read Archive eXtensible Markup Language)&lt;br /&gt;
* [[Standard Flowgram Format]]&lt;br /&gt;
* [[Stockholm Multiple Alignment Format]] (Representing multiple sequence alignments)&lt;br /&gt;
* [[SBML]] (System Biology Markup Language)&lt;br /&gt;
* [[SBGN]] (Systems Biology Graphical Notation)&lt;br /&gt;
* [[SBRML]] (Systems Biology Results Markup Language)&lt;br /&gt;
* [[Swiss-Prot]] (Flatfile format used for protein sequences from the Swiss-Prot database)&lt;br /&gt;
* [[TAIR annotation data Format]]&lt;br /&gt;
* [[TAPIR]] (TDWG Access Protocol for Information Retrieval)&lt;br /&gt;
* [[TCS]] (Taxonomic Concept transfer Schema)&lt;br /&gt;
* [[TraML]] (Transition Markup Language)&lt;br /&gt;
* [[UniProtKB XML Format]]&lt;br /&gt;
* [[VCF]] (Variant Call Format)&lt;br /&gt;
* [[Wiggle Format]]&lt;br /&gt;
&lt;br /&gt;
== Biomedical signals (time series) ==&lt;br /&gt;
&lt;br /&gt;
* [[ACQ]] (AcqKnowledge)&lt;br /&gt;
* [[BCI2000]] (The BCI2000 project)&lt;br /&gt;
* [[BioSemi]] (BDF) data format&lt;br /&gt;
* [[BKR]] (EEG data format)&lt;br /&gt;
* [[CFWB]] (Chart Data File Format)&lt;br /&gt;
* [[DICOM-Waveform]] (An extension of Dicom for storing waveform data)&lt;br /&gt;
* [[ecgML]] (A markup language for electrocardiogram data acquisition and analysis)&lt;br /&gt;
* [[EDF/EDF+]] (European Data Format)&lt;br /&gt;
* [[FEF]] (File Exchange Format for Vital signs, CEN TS 14271)&lt;br /&gt;
* [[GDF v1.x]] (General Data Format for biomedical signals - Version 1.x)&lt;br /&gt;
* [[GDF v2.x]] (The General Data Format for biomedical signals - Version 2.x)&lt;br /&gt;
* [[HL7aECG]] (Health Level 7 v3 annotated ECG)&lt;br /&gt;
* [[OpenXDF]] (Open Exchange Data Format)&lt;br /&gt;
* [[SCP-ECG]] (Standard Communication Protocol for Computer assisted electrocardiography)&lt;br /&gt;
* [[SIGIF]] (A digital SIGnal Interchange Format)&lt;br /&gt;
* [[WFDB]] (Format of Physiobank)&lt;br /&gt;
&lt;br /&gt;
== Chemical ==&lt;br /&gt;
* [[CCP4]] (X-ray crystallography voxels (electron density))&lt;br /&gt;
* [[CDX]] (ChemDraw file format)&lt;br /&gt;
* [[CDXML]] (ChemDraw file format)&lt;br /&gt;
* [[CHM (ChemDraw)|CHM]] (ChemDraw file format)&lt;br /&gt;
* [[CIF]] (Crystallographic Information File, standardised by IUCr)&lt;br /&gt;
* [[CML]] (Chemical markup language)&lt;br /&gt;
* [[CTab]] (Chemical table file .mol, .sd, .sdf)&lt;br /&gt;
* [[HITRAN]] (spectroscopic data with one optical/infrared transition per line in the ASCII file (.hit))&lt;br /&gt;
* [[JCAMP]] (Joint Committee on Atomic and Molecular Physical Data, .dx, .jdx)&lt;br /&gt;
* [[MOL]] (MDL Molfile)&lt;br /&gt;
* [[MOP]] (MOPAC format)&lt;br /&gt;
* [[MRC]] (voxels in cryo-electron microscopy)&lt;br /&gt;
* [[MST]] ACD/ChemSketch v1 file format&lt;br /&gt;
* [[PDB]] (Protein Data Bank)&lt;br /&gt;
* [[RPT]] ACD/ChemSketch v1 file format&lt;br /&gt;
* [[RXN]] (Reaction file format)&lt;br /&gt;
* [[SK2]] (ACD/ChemSketch v2 file format)&lt;br /&gt;
* [[SKC]] (ISIS/Draw file format)&lt;br /&gt;
* [[SMILES]] (Simplified molecular input line entry specification, .smi)&lt;br /&gt;
* [[SPC]] (spectroscopic data)&lt;br /&gt;
* [[Structure Data File]] (SDF)&lt;br /&gt;
* [[TGF]] (ISIS/Draw reaction file format)&lt;br /&gt;
&lt;br /&gt;
Chemical data may be distinguished in various ways, including [http://www.ch.ic.ac.uk/chemime/ Chemical MIME] types.&lt;br /&gt;
&lt;br /&gt;
== Ecological ==&lt;br /&gt;
* [[Darwin Core]] (Standard for sharing information about biological diversity)&lt;br /&gt;
* [[EML (Ecological Metadata Language)]], not to be confused with [[EML (Environmental Markup Language)]]&lt;br /&gt;
&lt;br /&gt;
== Geographic and Geospatial ==&lt;br /&gt;
&lt;br /&gt;
See also [[Geospatial]]&lt;br /&gt;
&lt;br /&gt;
* [[DEM]] (Digital Elevation Model)&lt;br /&gt;
* [[DOQ]] (Digital Orthophotos)&lt;br /&gt;
* [[e00]] (ESRI ArcInfo Interchange File)&lt;br /&gt;
* [[FGDC]] (Content Standard for Digital Geospatial Metadata??)&lt;br /&gt;
* [[GeoTIFF]] (Geospatial extensions to TIFF)&lt;br /&gt;
* [[GML]] (Geography Markup Language)&lt;br /&gt;
* [[HDFEOS, HD2, HD4]] (Hierarchical Data Format-Earth Observing System)&lt;br /&gt;
* [[KML]] (KML (formerly Keyhole Markup Language), Version 2.2)&lt;br /&gt;
* [[NDF]] (National Landsat Archive Production System (NLAPS) Data Format)&lt;br /&gt;
* [[SAIF]] (Spatial Archive and Interchange Format, Canadian)&lt;br /&gt;
* [[SDTS]] (Spatial Data Transfer Standard)&lt;br /&gt;
* [[shp and shx]] (ESRI [[Shapefile]] must have components; other optional components as well, see entry)&lt;br /&gt;
* [[MrSID]] (MrSID- Multi-resolution Seamless Image Database)&lt;br /&gt;
* [[TAB]] (MapInfo dataset format, must have component)&lt;br /&gt;
&lt;br /&gt;
== Mathematical ==&lt;br /&gt;
* [[graph6, sparse6]] (ASCII encoding of Adjacency matrices (.g6, .s6))&lt;br /&gt;
* [[graphML]] (Graph Markup Language)&lt;br /&gt;
* [[m]] (MATLAB script file)&lt;br /&gt;
* [[M]] (Mathematica package file)&lt;br /&gt;
* [[MAT]] (MATLAB matrix data format)&lt;br /&gt;
* [[MathML]]&lt;br /&gt;
* [[OPJ]] (Origin data format)&lt;br /&gt;
* [[WP2]] WinPlot&lt;br /&gt;
&lt;br /&gt;
== Medical Imaging ==&lt;br /&gt;
* [[BRIK/HEAD]] (Voxel data from AFNI programs, dual-file (data and metadata, repectively))&lt;br /&gt;
* [[MGH]] (uncompressed)&lt;br /&gt;
* [[MGZ]] (zip-compressed)&lt;br /&gt;
* [[DICOM]] (Digital Imaging and Communications in Medicine (.dcm))&lt;br /&gt;
* [[MINC]] (Medical Imaging NetCDF format; since version 2.0, based on HDF5 (.mnc))&lt;br /&gt;
* [[OME-TIFF]] (Open Microscopy Imaging format)&lt;br /&gt;
* [[OME-XML]] (Open Microscopy Imaging format)&lt;br /&gt;
* [[OST (Open Spatio-Temporal)]] (extensible, open alternative for microscope images)&lt;br /&gt;
* [[NII]] (Neuroimaging Informatics Technology Initiative (NIfTI) voxel data, single-file (combined data and metadata))&lt;br /&gt;
* [[IMG/HDR]] (ANALYZE or NIfTI voxel data, dual-file (separate data and metadata, respectively))&lt;br /&gt;
* [[gii]] (NIfTI offspring for brain surface data, single-file (combined data and meta-data) style)&lt;br /&gt;
* [[TRK]] (Vector data describing tracts of neurons, used by TrackVis)&lt;br /&gt;
* [[SDM]] (Signed Differential Mapping- brain maps(.sdm))&lt;br /&gt;
&lt;br /&gt;
== Oceanographic, Atmospheric and Meteorological ==&lt;br /&gt;
&lt;br /&gt;
* [[GRIB]] (Grid in Binary)&lt;br /&gt;
* [[BUFR]] (Binary Universal Format Representation)&lt;br /&gt;
* [[IOAPI]] (netCDF augmented with metadata from the I/O API)&lt;br /&gt;
* [[PP]] (UK Met Office format for weather model data)&lt;br /&gt;
&lt;br /&gt;
== Physics ==&lt;br /&gt;
&lt;br /&gt;
* [[CGNS]] (Computational Fluid Dynamics General Notation System)&lt;br /&gt;
* [[NeXuS]] (Common data format for neutron, x-ray and muon science)&lt;br /&gt;
* [[QCDml]] (Lattice QCD gauge configuration markup language)&lt;br /&gt;
&lt;br /&gt;
== Scientific Signal data ==&lt;br /&gt;
&lt;br /&gt;
* [[ACQ]] (AcqKnowledge File Format for Windows)&lt;br /&gt;
* [[BioSemi]] (BDF) data format&lt;br /&gt;
* [[BKR]] (EEG data format)&lt;br /&gt;
* [[CFWB]] (Chart Data File Format)&lt;br /&gt;
* [[EDF]] (European data format)&lt;br /&gt;
* [[FEF]] (File Exchange Format for Vital signs)&lt;br /&gt;
* [[GDF]] (General data formats for biomedical signals)&lt;br /&gt;
* [[GMS]] (Gesture And Motion Signal format)&lt;br /&gt;
* [[IROCK]] (intelliRock Sensor Data File Format)&lt;br /&gt;
* [[MFER]] (Medical waveform Format Encoding Rules)&lt;br /&gt;
* [[REC]] (ATI Vision recorder file)&lt;br /&gt;
* [[SCP-ECG]] (Standard Communication Protocol for Computer assisted electrocardiography)&lt;br /&gt;
* [[SEG Y]] (Reflection seismology data format)&lt;br /&gt;
* [[SIGIF]] (SIGnal Interchange Format)&lt;br /&gt;
&lt;br /&gt;
== Social Sciences ==&lt;br /&gt;
&lt;br /&gt;
* [[Atlas.ti]] ([[Computer-assisted qualitative data analysis]] package)&lt;br /&gt;
* [[DDI]] (Data Documentation Initiative)&lt;br /&gt;
* [[DO]] (&amp;quot;DO file&amp;quot; command script for the [[Stata]] Statistical package)&lt;br /&gt;
* [[DTA]] (Binary data file for the [[Stata]] Statistical package)&lt;br /&gt;
* [[NVivo]] ([[Computer-assisted qualitative data analysis]] package)&lt;br /&gt;
* [[R]] (Statistical package)&lt;br /&gt;
* [[SAS]] (Statistical package)&lt;br /&gt;
* [[SAV]] (Binary &amp;quot;[[SPSS]] data format&amp;quot; for the [[SPSS]] Statistical package)&lt;br /&gt;
* [[SPO]] (Output file for the [[SPSS]] Statistical package - version 14)&lt;br /&gt;
* [[SPS]] (&amp;quot;Syntax file&amp;quot; (plain text command script) for the [[SPSS]] Statistical package)&lt;br /&gt;
* [[SPV]] (Output file for the [[SPSS]] Statistical package - version 17 and later)&lt;br /&gt;
* [[Transana]] ([[Computer-assisted qualitative data analysis]] package)&lt;/div&gt;</summary>
		<author><name>DavidFichtmueller</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/ABCD</id>
		<title>ABCD</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/ABCD"/>
				<updated>2012-11-20T16:46:57Z</updated>
		
		<summary type="html">&lt;p&gt;DavidFichtmueller: initial version&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{FormatInfo&lt;br /&gt;
|formattype=electronic&lt;br /&gt;
|subcat=Scientific Data formats&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
== General description ==&lt;br /&gt;
&lt;br /&gt;
ABCD stands for '''Access to Biological Collection Data''' and is an XML based format. It is a ratified TDWG (Biodiversity Information Standards, formerly Taxonomic Databases Working Group) standard and the current version is 2.06b (though 2.06 is most commonly used).&lt;br /&gt;
&lt;br /&gt;
The ABCD documentation can be found on the TDWG Wiki: http://wiki.tdwg.org/twiki/bin/view/ABCD/WebHome&lt;br /&gt;
&lt;br /&gt;
There are over 1400 different concepts that can be expressed in ABCD of which 1100 can contain data. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Extensions ==&lt;br /&gt;
ABCD allows for extension to the schema for special purposes that are not covered by ABCD. The two most notable extensions are ABCDDNA and ABCDEFG. &lt;br /&gt;
&lt;br /&gt;
=== ABCDDNA ===&lt;br /&gt;
ABCDDNA is the ABCD extension for DNA data and is also a ratified TDWG standard. It is maintained by the [http://wiki.bgbm.org/dnabankwiki/index.php/ABCDDNA DNA Bank Network]. &lt;br /&gt;
&lt;br /&gt;
=== ABCDEFG ===&lt;br /&gt;
ABCDEFG is the ABCD Extension For Geosciences and it is maintained by the [http://www.geocase.eu/efg GeoCASe Project]. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Software ==&lt;br /&gt;
&lt;br /&gt;
The ABCD format is used by biodiversity networks like [http://www.gbif.org/ GBIF] and [http://www.biocase.org BioCASe]. &lt;br /&gt;
&lt;br /&gt;
ABCD files can be created using the [http://www.biocase.org/products/provider_software/index.shtml BioCASe Provider Software] (it also works for the DNA and EFG extensions).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Sample files ==&lt;br /&gt;
A sample document can be found in the documentation wiki for the BioCASe Provider Software: http://wiki.bgbm.org/bps/index.php/SampleABCDDocument&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Identification ==&lt;br /&gt;
&lt;br /&gt;
The XML namespace for ABCD 2.06 is &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;http://www.tdwg.org/schemas/abcd/2.06&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
The XML namespace for elements from the DNA extension is &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;http://www.dnabank-network.org/schemas/ABCDDNA&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;. &lt;br /&gt;
&lt;br /&gt;
The XML namespace for elements from the EFG is &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;http://www.synthesys.info/ABCDEFG/1.0&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;br /&gt;
&amp;lt;!--List articles, books or web pages describing the format or supporting the evidence.--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:XML based file formats]]&lt;/div&gt;</summary>
		<author><name>DavidFichtmueller</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/Template:FormatInfo</id>
		<title>Template:FormatInfo</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/Template:FormatInfo"/>
				<updated>2012-11-14T19:30:01Z</updated>
		
		<summary type="html">&lt;p&gt;DavidFichtmueller: /* Potential Parameters */  namespace added as potential parameter&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;table class=&amp;quot;infobox formatinfo&amp;quot; border=&amp;quot;0&amp;quot; style=&amp;quot;float: right; border: 1px solid #666666; max-width: 15%; background-color: #F8F8F8; padding: 0.25em; margin: 0.25em 1em;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;th colspan=&amp;quot;2&amp;quot;&amp;gt;[[File Formats|File Format]]&amp;lt;includeonly&amp;gt;[[Category:File Formats]]&amp;lt;/includeonly&amp;gt;&amp;lt;/th&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
{{FormatInfo/row|Name|{{{name|{{PAGENAME}}}}}{{DEFAULTSORT:{{{name|{{PAGENAME}}}}}}}}}&lt;br /&gt;
{{FormatInfo/row&lt;br /&gt;
| Ontology&lt;br /&gt;
|&lt;br /&gt;
&amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;&lt;br /&gt;
{{#switch: {{{formattype}}}&lt;br /&gt;
|electronic=[[Electronic File Formats]]&amp;lt;includeonly&amp;gt;[[Category:Electronic File Formats]]&amp;lt;/includeonly&amp;gt;&lt;br /&gt;
|physical=[[Physical File Formats]]&amp;lt;includeonly&amp;gt;[[Category:Physical File Formats]]&amp;lt;/includeonly&amp;gt;&lt;br /&gt;
|organic=[[Organic File Formats]]&amp;lt;includeonly&amp;gt;[[Category:Organic File Formats]]&amp;lt;/includeonly&amp;gt;&lt;br /&gt;
|[[{{{formattype|Electronic File Formats}}}]]&amp;lt;includeonly&amp;gt;[[Category:{{{formattype|Electronic File Formats}}}]]&amp;lt;/includeonly&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;&lt;br /&gt;
{{#if:{{{subcat|}}}&lt;br /&gt;
|[[{{{subcat}}}]]&amp;lt;includeonly&amp;gt;[[Category:{{{subcat}}}]]&amp;lt;/includeonly&amp;gt;&lt;br /&gt;
&amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;&lt;br /&gt;
{{#if:{{{subcat2|}}}&lt;br /&gt;
|[[{{{subcat2}}}]]&amp;lt;includeonly&amp;gt;[[Category:{{{subcat2}}}]]&amp;lt;/includeonly&amp;gt;&lt;br /&gt;
&amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;&lt;br /&gt;
{{#if:{{{subcat3|}}}&lt;br /&gt;
|[[{{{subcat3}}}]]&amp;lt;includeonly&amp;gt;[[Category:{{{subcat3}}}]]&amp;lt;/includeonly&amp;gt;&lt;br /&gt;
&amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;&lt;br /&gt;
{{#if:{{{subcat4|}}}&lt;br /&gt;
|[[{{{subcat4}}}]]&amp;lt;includeonly&amp;gt;[[Category:{{{subcat4}}}]]&amp;lt;/includeonly&amp;gt;&lt;br /&gt;
&amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;&lt;br /&gt;
{{#if:{{{subcat5|}}}&lt;br /&gt;
|[[{{{subcat5}}}]]&amp;lt;includeonly&amp;gt;[[Category:{{{subcat5}}}]]&amp;lt;/includeonly&amp;gt;&lt;br /&gt;
&amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;&lt;br /&gt;
[[{{{name|{{PAGENAME}}}}}]]&lt;br /&gt;
&amp;lt;/li&amp;gt;&amp;lt;/ul&amp;gt;&lt;br /&gt;
|[[{{{name|{{PAGENAME}}}}}]]&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/li&amp;gt;&amp;lt;/ul&amp;gt;&lt;br /&gt;
|[[{{{name|{{PAGENAME}}}}}]]&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/li&amp;gt;&amp;lt;/ul&amp;gt;&lt;br /&gt;
|[[{{{name|{{PAGENAME}}}}}]]&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/li&amp;gt;&amp;lt;/ul&amp;gt;&lt;br /&gt;
|[[{{{name|{{PAGENAME}}}}}]]&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/li&amp;gt;&amp;lt;/ul&amp;gt;&lt;br /&gt;
|[[{{{name|{{PAGENAME}}}}}]]&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/li&amp;gt;&amp;lt;/ul&amp;gt;&lt;br /&gt;
&amp;lt;/li&amp;gt;&amp;lt;/ul&amp;gt;&lt;br /&gt;
}}{{#if:{{{extensions|}}}|&lt;br /&gt;
{{FormatInfo/row|Extension(s)|{{{extensions}}}}}&lt;br /&gt;
}}{{#if:{{{mimetypes|}}}|&lt;br /&gt;
{{FormatInfo/row|MIME Type(s)|{{{mimetypes}}}}}&lt;br /&gt;
}}{{#if:{{{fourccs|}}}|&lt;br /&gt;
{{FormatInfo/row|FourCC|{{{fourccs}}}}}&lt;br /&gt;
}}{{#if:{{{pronom|}}}|&lt;br /&gt;
{{FormatInfo/row|PRONOM|{{{pronom}}}}}&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&amp;lt;includeonly&amp;gt;{{#if:{{{formattype|}}}||[[Category:FormatInfo without formattype]]}}{{#if:{{{subcat|}}}||[[Category:FormatInfo without subcat]]}}{{#if:{{{extensions|}}}||[[Category:FormatInfo without extensions]]}}{{#if:{{{mimetypes|}}}||[[Category:FormatInfo without mimetypes]]}}&amp;lt;/includeonly&amp;gt;&amp;lt;noinclude&amp;gt;&lt;br /&gt;
== Usage ==&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
{{FormatInfo&lt;br /&gt;
| name                   = &lt;br /&gt;
| formattype             = &lt;br /&gt;
| subcat                 = &lt;br /&gt;
| subcat2                = &lt;br /&gt;
| subcat3                = &lt;br /&gt;
| subcat4                = &lt;br /&gt;
| subcat5                = &lt;br /&gt;
| extensions             = &lt;br /&gt;
| mimetypes              = &lt;br /&gt;
| pronom                 = &lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Parameters===&lt;br /&gt;
;name: '''(optional)''' The name of the file format. ''Default: &amp;lt;nowiki&amp;gt;{{PAGENAME}}&amp;lt;/nowiki&amp;gt;''&lt;br /&gt;
;formattype: '''(optional)''' The [[File Formats|type]] of the file format. Choose 'electronic', 'physical', or 'organic', or specify your own. ''Default: electronic''&lt;br /&gt;
;subcat: '''(optional)''' The subcategory of the file format.&lt;br /&gt;
;subcat2: '''(optional)''' An additional subcategory of the file format.&lt;br /&gt;
;subcat3: '''(optional)''' An additional subcategory of the file format.&lt;br /&gt;
;subcat4: '''(optional)''' An additional subcategory of the file format.&lt;br /&gt;
;subcat5: '''(optional)''' An additional subcategory of the file format.&lt;br /&gt;
;extensions: '''(optional)''' The format's known filename extensions. Use [[Template:ext|&amp;lt;nowiki&amp;gt;{{ext}}&amp;lt;/nowiki&amp;gt;]].&lt;br /&gt;
;mimetypes: '''(optional)''' The MIME type of the format. Use [[Template:mimetype|&amp;lt;nowiki&amp;gt;{{mimetype}}&amp;lt;/nowiki&amp;gt;]].&lt;br /&gt;
;pronom: '''(optional)''' The [[Sources/PRONOM|PRONOM]] ID of the format, e.g. &amp;quot;fmt/45&amp;quot;. Use [[Template:PRONOM|&amp;lt;nowiki&amp;gt;{{PRONOM}}&amp;lt;/nowiki&amp;gt;]].&lt;br /&gt;
&lt;br /&gt;
===Potential Parameters===&lt;br /&gt;
This is a list of parameters that could be included in this template.&lt;br /&gt;
&lt;br /&gt;
;mime &amp;amp; mime aliases: Split mimetypes into primary type and known aliases.&lt;br /&gt;
;charset: For character encodings, the value of the charset parameter used to identify it in MIME headers&lt;br /&gt;
;version: The version of the format, e.g. &amp;quot;1.4&amp;quot; for PDF 1.4&lt;br /&gt;
;previous version: Link to page about the previous version of this format.&lt;br /&gt;
;next version: Link to page about the next version of this format.&lt;br /&gt;
;back compat: Whether this version is backwards compatible with the previous version.&lt;br /&gt;
;wikipedia: Name of the Wikipedia page that describes this format, e.g. &amp;quot;JPEG 2000&amp;quot; will be rendered as [[Wikipedia:JPEG 2000|JPEG 2000]]&lt;br /&gt;
;locfdd: Identifier for this format from the Library of Congress Sustainability of Digital Formats, e.g. &amp;quot;fdd000314&amp;quot; will be rendered as [http://www.digitalpreservation.gov/formats/fdd/fdd000314.shtml fdd000314]. &lt;br /&gt;
;type code: The Type Code of the file, used by Mac OS Classic.&lt;br /&gt;
;uniform type: The Uniform Type Identifier (UTI), used by Mac OS X and iOS.&lt;br /&gt;
;conforms to: The UTI of the parent format in the conformance hierarchy.&lt;br /&gt;
;magic: A sequence of byte values that can be used to identify the file contents, usually located close to the start of the file.&lt;br /&gt;
;released: The date the format was publicly released.&lt;br /&gt;
;container for: A list of formats this format can contain.&lt;br /&gt;
;contained by: A list of formats that may contain this format.&lt;br /&gt;
;extended from: Any formats this one was based upon.&lt;br /&gt;
;extended to: Any formats that have been derived from this one.&lt;br /&gt;
;spec: URL of the format specification.&lt;br /&gt;
;spec availability: Type of availability the specification, e.g. commercial, free.&lt;br /&gt;
;patent license: Unknown, Disputed, Encumbered, (F)RAND, Royalty-Free, Unencumbered.&lt;br /&gt;
;compression: Types of compression. Whether Lossy, Lossless, or Both, and whether Optional or Always compressed. i.e. JPEG is Always Lossy.&lt;br /&gt;
;endianness: Big-endian or Little-endian byte ordering.&lt;br /&gt;
;developed by: Who developed the format.&lt;br /&gt;
;maintained by: Who now maintains the format.&lt;br /&gt;
;reference impl: Link to page about the reference implementation of this format, if any.&lt;br /&gt;
;embeddable metadata: Kinds of metadata that can be embedded in this format.&lt;br /&gt;
;tpm: Technical Protection Mechanisms supported by the format, e.g. encryption.&lt;br /&gt;
;dependencies: External resources that files in this format may depend upon, e.g. fonts, or even hardware.&lt;br /&gt;
;error resiliance: Is this format able to detect damage or recover from damage to the bitstream.&lt;br /&gt;
;namespace: The namespace-uri that defines the file format if it is XML-based.&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:File Formats| ]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>DavidFichtmueller</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/DBase_III</id>
		<title>DBase III</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/DBase_III"/>
				<updated>2012-11-12T17:04:35Z</updated>
		
		<summary type="html">&lt;p&gt;DavidFichtmueller: Template for PRONOM-Link&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{FormatInfo&lt;br /&gt;
| name                   = dBase Database File&lt;br /&gt;
| subcat                 = Database&lt;br /&gt;
| extensions             = *.dbf&lt;br /&gt;
| pronom                 = {{PRONOM|x-fmt/9}}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
This article describes how to export data out of a dBase III Table File (*.dbf). &lt;br /&gt;
&lt;br /&gt;
=== Opening the data with Libre Office ===&lt;br /&gt;
It is possible to import *.dbf files into Libre Office (or Open Office) Calc or Base: http://help.libreoffice.org/Calc/Importing_and_Exporting_dBASE_Files . &lt;br /&gt;
&lt;br /&gt;
Libre Office will try to recognize the character encoding of the data and preselect this option in the import window. Once a file imported, it can be saved in/exported to a variety of different formats. &lt;br /&gt;
&lt;br /&gt;
=== Importing the data directly into a mySQL database ===&lt;br /&gt;
Alternatively the data can directly be imported into a running mySQL database using the linux program &amp;lt;code&amp;gt;[http://manpages.ubuntu.com/manpages/lucid/man1/dbf2mysql.1.html dbf2mysql]&amp;lt;/code&amp;gt;. Importing the data directly however could cause some problems with the character encoding for non ASCII characters.&lt;br /&gt;
&lt;br /&gt;
If the mysql server is already running, the following commands will import the data:&lt;br /&gt;
 user@linux:~$ mysql -u root -p&lt;br /&gt;
 mysql&amp;gt; create database database_name;&lt;br /&gt;
 mysql&amp;gt; exit&lt;br /&gt;
 user@linux:~$ sudo apt-get install dbf2mysql&lt;br /&gt;
 user@linux:~$ dbf2mysql -vvv -c -f -d database_name -U root -P password DATA_FILE.DBF &lt;br /&gt;
&lt;br /&gt;
The data can then be exported using &amp;lt;code&amp;gt;mysqldump&amp;lt;/code&amp;gt;&lt;br /&gt;
 user@linux:~$ mysqldump -u root -p database_name &amp;gt; data_export.sql&lt;br /&gt;
&lt;br /&gt;
=== Additional Weblinks ===&lt;br /&gt;
* [http://en.wikipedia.org/wiki/DBase Wikipedia article about dBase]&lt;br /&gt;
* [http://www.nationalarchives.gov.uk/pronom/x-fmt/9 dBase III entry in PRONOM]&lt;br /&gt;
* [http://www.digitalpreservation.gov/formats/fdd/fdd000325.shtml dBase entry at digitalpreservation.gov]&lt;br /&gt;
* [http://www.dbf2002.com/dbf-file-format.html DBF File structure]&lt;br /&gt;
* [http://www.dbase.com/Knowledgebase/INT/db7_file_fmt.htm dBase File Structure at dBase knowledge base]&lt;/div&gt;</summary>
		<author><name>DavidFichtmueller</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/Scientific_Data_formats</id>
		<title>Scientific Data formats</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/Scientific_Data_formats"/>
				<updated>2012-11-12T16:54:31Z</updated>
		
		<summary type="html">&lt;p&gt;DavidFichtmueller: there are two different EML formats, I added the other one and clarified the links&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{|&lt;br /&gt;
|[[File Formats]]&lt;br /&gt;
| &amp;gt;&lt;br /&gt;
|[[Electronic File Formats]]&lt;br /&gt;
| &amp;gt;&lt;br /&gt;
|[[Scientific Data formats]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== General ==&lt;br /&gt;
* [[cdf]] (Common Data Format)&lt;br /&gt;
* [[EAS3]] (binary file format for structured data)&lt;br /&gt;
* [[hdf]] (Hierarchical Data Format, from NASA)&lt;br /&gt;
* [[NetCDF]] (Network Common Data Format)&lt;br /&gt;
* There are several formats abbreviated as [[SDF]], including:&lt;br /&gt;
** [[Simple Data format]] (SDF) By George H. Fisher, Space Sciences Lab, UC Berkeley (A platform-independent, precision-preserving binary data I/O format capable of handling large, multi-dimensional arrays)&lt;br /&gt;
** [[Simple Data format-DPT]] A new format from the Data Protocols Team for publishing and sharing data&lt;br /&gt;
** [[Standard Delay Format]] A standard data structure for timing data&lt;br /&gt;
** [[Structure Data File]]  A file format for a chemical table file&lt;br /&gt;
* [[SDXF]] (Structured Data Exchange Format)&lt;br /&gt;
* [[Silo]] (a storage format for visualization developed at Lawrence Livermore National Laboratory)&lt;br /&gt;
* [[XDF]] (eXtensible Data Format)&lt;br /&gt;
* [[XSIL]] (Extensible Scientific Interchange Language)&lt;br /&gt;
&lt;br /&gt;
== Astronomical and Space ==&lt;br /&gt;
* [[Flexible Image Transport System]] (FITS)&lt;br /&gt;
* [[PDS/ODL]] (Planetary Data System)&lt;br /&gt;
* [[VOTable]] (IVOA standard table format)&lt;br /&gt;
* [[Starlink_Data_Format|SDF]] (Starlink Data Format) and [[N-Dimensional_Data_Format|NDF]] (Starlink's Extensible N-Dimensional Data Format).&lt;br /&gt;
&lt;br /&gt;
== Biological ==&lt;br /&gt;
&lt;br /&gt;
* [[AB1]] (Chromatogram files used by DNA sequencing instruments from Applied Biosystems)&lt;br /&gt;
* [[ABCD]] (Access to Biological Collection Data)&lt;br /&gt;
* [[ABCDDNA]] (Access to Biological Collection Data DNA extension)&lt;br /&gt;
* [[ABCDEFG]] (Access to Biological Collection Data Extension For Geosciences)&lt;br /&gt;
* [[ACE]] (Sequence assembly format)&lt;br /&gt;
* [[Affymetrix Raw Intensity Format]]&lt;br /&gt;
* [[ARLEQUIN Project Format]]&lt;br /&gt;
* [[Axt Alignment Format]]&lt;br /&gt;
* [[BAM]] (Binary compressed SAM format)&lt;br /&gt;
* [[BED]] (Browser extensible display format describing genes and other features of DNA sequences)&lt;br /&gt;
* [[BEDgraph]]&lt;br /&gt;
* [[Big Browser Extensible Data Format]]&lt;br /&gt;
* [[Big Wiggle Format]]&lt;br /&gt;
* [[Binary Alignement Map Format]]&lt;br /&gt;
* [[Binary Probe Map Format]]&lt;br /&gt;
* [[Binary sequence information Format]]&lt;br /&gt;
* [[Biological Pathway eXchange]]&lt;br /&gt;
* [[BLAT alignment Format]]&lt;br /&gt;
* [[BRIX generated O Format]] &lt;br /&gt;
* [[CAF]] (Common Assembly Format for sequence assembly)&lt;br /&gt;
* [[CellML]]&lt;br /&gt;
* [[CHADO XML interchange Format]]&lt;br /&gt;
* [[Chain Format for pairwise alignment]]&lt;br /&gt;
* [[CHARMM Card File Format]]&lt;br /&gt;
* [[CLUSTAL-W Alignment Format]]&lt;br /&gt;
* [[CLUSTAL-W Dendrogram Guide File Format]]&lt;br /&gt;
* [[Clustered Data Table Format]]&lt;br /&gt;
* [[DELTA]] (DEscription Language for TAxonomy)&lt;br /&gt;
* [[DAS]] (Distributed Sequence Annotation System)&lt;br /&gt;
* [[DBN]] (Dot Bracket Notation (DBN) - Vienna Format)&lt;br /&gt;
* [[EMBL]] (Flatfile format used by the EMBL for nucleotide and peptide sequences)&lt;br /&gt;
* [[EML (Environmental Markup Language)]] not to be confused with [[EML (Ecological Metadata Language)]]&lt;br /&gt;
* [[ENCODE]] (Peak information Format)&lt;br /&gt;
* [[FASTA and FASTQ]] (File format for sequence data, FASTQ with quality)&lt;br /&gt;
* [[FuGEFlow]]&lt;br /&gt;
* [[FuGE-ML]] (Functional Genomics Experiment Markup Language)&lt;br /&gt;
* [[Gating-ML]]&lt;br /&gt;
* [[GCDML]] (Genomic Contextual Data Markup Language)&lt;br /&gt;
* [[GelML]] Gel electrophoresis Markup Language &lt;br /&gt;
* [[GenBank]] (Flatfile format used by NCBI for nucleotide and peptide sequences)&lt;br /&gt;
* [[Gene Feature File]] (Versions 1 and 3)&lt;br /&gt;
* [[GFF]] (General feature format for describing genes and other features of DNA, RNA and protein sequences)&lt;br /&gt;
* [[Gene Prediction File Format]]&lt;br /&gt;
* [[GenePattern GeneSet Table Format]]&lt;br /&gt;
* [[Genome Annotation File]] (version 1 and 2)&lt;br /&gt;
* [[GTF]] (Gene transfer format holds information about gene structure)&lt;br /&gt;
* [[HMMER]]&lt;br /&gt;
* [[ICB]] (ICM binary file Format)&lt;br /&gt;
* [[imzML]] (imaging mz Markup Language)&lt;br /&gt;
* [[ISA-Tab]] (Investigation Study Assay Tabular)&lt;br /&gt;
* [[ISND sequence record XML]]&lt;br /&gt;
* [[KGML]] (KEGG Mark-up Language)&lt;br /&gt;
* [[MAGE-Tab]] (MicroArray Gene Expression Tabular)&lt;br /&gt;
* [[MCL]] (Microbiological Common Language)&lt;br /&gt;
* [[MIARE-TAB]] (Minimum Information About a RNAi Experiment Tabular)&lt;br /&gt;
* [[microarray track data Browser Extensible Data Format]]&lt;br /&gt;
* [[MINiML]] (MIAME Notation in Markup Language)&lt;br /&gt;
* [[mini Protein Data Bank Format]]&lt;br /&gt;
* [[MIQAS-TAB]] (Minimal Information for QTLs and Association Studies Tabular)&lt;br /&gt;
* [[MITAB]]&lt;br /&gt;
* [[mmCIF]] (macromolecular Crystallographic Information File)&lt;br /&gt;
* [[Multiple Alignment Forma]]&lt;br /&gt;
* [[mzData]] (deprecated)&lt;br /&gt;
* [[mzIdentML]]&lt;br /&gt;
* [[mzML]]&lt;br /&gt;
* [[mzQuantML]]&lt;br /&gt;
* [[mzXML]] (deprecated)&lt;br /&gt;
* [[NCD]] (Natural Collections Descriptions)&lt;br /&gt;
* [[NDTF]] (Neurophysiology Data Translation Format)&lt;br /&gt;
* [[net alignment annotation Format]]&lt;br /&gt;
* [[NeuroML]] (Neuroscience eXtensible Markup Language)&lt;br /&gt;
* [[New Hampshire eXtended Format]]&lt;br /&gt;
* [[Newick tree Format]]&lt;br /&gt;
* [[NEXUS]] (Encodes mixed information about genetic sequence data in a block structured format)&lt;br /&gt;
* [[Nimblegen Design File Format]]&lt;br /&gt;
* [[Nimblegen Gene Data Format]]&lt;br /&gt;
* [[NMR-STAR]] (NMR Self-defining Text Archive and Retrieval format)&lt;br /&gt;
* [[nucleotide inFormation binary Format]]&lt;br /&gt;
* [[ODM]] (Operational Data Model)&lt;br /&gt;
* [[Open Biomedical Ontology Flat File Format]]&lt;br /&gt;
* [[PDB]] (Structures of biomolecules deposited in Protein Data Bank)&lt;br /&gt;
* [[Personal Genome SNP Format]]&lt;br /&gt;
* [[PHD]] (Output from the basecalling software Phred)&lt;br /&gt;
* [[phyloXML]] (XML for evolutionary biology and comparative genomics)&lt;br /&gt;
* [[Pre-Clustering File Format]]&lt;br /&gt;
* [[Protein InFormation Resource Format]]&lt;br /&gt;
* [[PRM]] (Protocol Representation Model (Medical Research))&lt;br /&gt;
* [[PSI-MI XML]]&lt;br /&gt;
* [[PSI-PAR]]&lt;br /&gt;
* [[RDML]] (Real-time PCR Data Markup Language)&lt;br /&gt;
* [[SAM]] (Sequence Alignment/Map format)&lt;br /&gt;
* [[SCF]] (Staden chromatogram files used to store data from DNA sequencing)&lt;br /&gt;
* [[SBML]] (Systems Biology Markup Language used to store biochemical network computational models)&lt;br /&gt;
* [[SDD]] (Structured Descriptive Data)&lt;br /&gt;
* [[SED-ML]] (Simulation Experiment Description Markup Language)&lt;br /&gt;
* [[Sequence Alignment Map Format]]&lt;br /&gt;
* [[SOFT]] (Simple Omnibus Format in Text)&lt;br /&gt;
* [[spML]] (Separation Markup Language)&lt;br /&gt;
* [[SRA-XML]] (Short Read Archive eXtensible Markup Language)&lt;br /&gt;
* [[Standard Flowgram Format]]&lt;br /&gt;
* [[Stockholm Multiple Alignment Format]] (Representing multiple sequence alignments)&lt;br /&gt;
* [[SBML]] (System Biology Markup Language)&lt;br /&gt;
* [[SBGN]] (Systems Biology Graphical Notation)&lt;br /&gt;
* [[SBRML]] (Systems Biology Results Markup Language)&lt;br /&gt;
* [[Swiss-Prot]] (Flatfile format used for protein sequences from the Swiss-Prot database)&lt;br /&gt;
* [[TAIR annotation data Format]]&lt;br /&gt;
* [[TAPIR]] (TDWG Access Protocol for Information Retrieval)&lt;br /&gt;
* [[TCS]] (Taxonomic Concept transfer Schema)&lt;br /&gt;
* [[TraML]] (Transition Markup Language)&lt;br /&gt;
* [[UniProtKB XML Format]]&lt;br /&gt;
* [[VCF]] (Variant Call Format)&lt;br /&gt;
* [[Wiggle Format]]&lt;br /&gt;
&lt;br /&gt;
== Biomedical signals (time series) ==&lt;br /&gt;
&lt;br /&gt;
* [[ACQ]] (AcqKnowledge)&lt;br /&gt;
* [[BCI2000]] (The BCI2000 project)&lt;br /&gt;
* [[BioSemi]] (BDF) data format&lt;br /&gt;
* [[BKR]] (EEG data format)&lt;br /&gt;
* [[CFWB]] (Chart Data File Format)&lt;br /&gt;
* [[DICOM-Waveform]] (An extension of Dicom for storing waveform data)&lt;br /&gt;
* [[ecgML]] (A markup language for electrocardiogram data acquisition and analysis)&lt;br /&gt;
* [[EDF/EDF+]] (European Data Format)&lt;br /&gt;
* [[FEF]] (File Exchange Format for Vital signs, CEN TS 14271)&lt;br /&gt;
* [[GDF v1.x]] (General Data Format for biomedical signals - Version 1.x)&lt;br /&gt;
* [[GDF v2.x]] (The General Data Format for biomedical signals - Version 2.x)&lt;br /&gt;
* [[HL7aECG]] (Health Level 7 v3 annotated ECG)&lt;br /&gt;
* [[OpenXDF]] (Open Exchange Data Format)&lt;br /&gt;
* [[SCP-ECG]] (Standard Communication Protocol for Computer assisted electrocardiography)&lt;br /&gt;
* [[SIGIF]] (A digital SIGnal Interchange Format)&lt;br /&gt;
* [[WFDB]] (Format of Physiobank)&lt;br /&gt;
&lt;br /&gt;
== Chemical ==&lt;br /&gt;
* [[CCP4]] (X-ray crystallography voxels (electron density))&lt;br /&gt;
* [[CDX]] (ChemDraw file format)&lt;br /&gt;
* [[CDXML]] (ChemDraw file format)&lt;br /&gt;
* [[CHM]] (ChemDraw file format)&lt;br /&gt;
* [[CIF]] (Crystallographic Information File, standardised by IUCr)&lt;br /&gt;
* [[CML]] (Chemical markup language)&lt;br /&gt;
* [[CTab]] (Chemical table file .mol, .sd, .sdf)&lt;br /&gt;
* [[HITRAN]] (spectroscopic data with one optical/infrared transition per line in the ASCII file (.hit))&lt;br /&gt;
* [[JCAMP]] (Joint Committee on Atomic and Molecular Physical Data, .dx, .jdx)&lt;br /&gt;
* [[MOL]] (MDL Molfile)&lt;br /&gt;
* [[MOP]] (MOPAC format)&lt;br /&gt;
* [[MRC]] (voxels in cryo-electron microscopy)&lt;br /&gt;
* [[MST]] ACD/ChemSketch v1 file format&lt;br /&gt;
* [[PDB]] (Protein Data Bank)&lt;br /&gt;
* [[RPT]] ACD/ChemSketch v1 file format&lt;br /&gt;
* [[RXN]] (Reaction file format)&lt;br /&gt;
* [[SK2]] (ACD/ChemSketch v2 file format)&lt;br /&gt;
* [[SKC]] (ISIS/Draw file format)&lt;br /&gt;
* [[SMILES]] (Simplified molecular input line entry specification, .smi)&lt;br /&gt;
* [[SPC]] (spectroscopic data)&lt;br /&gt;
* [[Structure Data File]] (SDF)&lt;br /&gt;
* [[TGF]] (ISIS/Draw reaction file format)&lt;br /&gt;
&lt;br /&gt;
Chemical data may be distinguished in various ways, including [http://www.ch.ic.ac.uk/chemime/ Chemical MIME] types.&lt;br /&gt;
&lt;br /&gt;
== Ecological ==&lt;br /&gt;
* [[Darwin Core]] (Standard for sharing information about biological diversity)&lt;br /&gt;
* [[EML (Ecological Metadata Language)]], not to be confused with [[EML (Environmental Markup Language)]]&lt;br /&gt;
&lt;br /&gt;
== Geographic and Geospatial ==&lt;br /&gt;
&lt;br /&gt;
See also [[Geospatial]]&lt;br /&gt;
&lt;br /&gt;
* [[DEM]] (Digital Elevation Model)&lt;br /&gt;
* [[DOQ]] (Digital Orthophotos)&lt;br /&gt;
* [[e00]] (ESRI ArcInfo Interchange File)&lt;br /&gt;
* [[FGDC]] (Content Standard for Digital Geospatial Metadata??)&lt;br /&gt;
* [[GeoTIFF]] (Geospatial extensions to TIFF)&lt;br /&gt;
* [[GML]] (Geography Markup Language)&lt;br /&gt;
* [[HDFEOS, HD2, HD4]] (Hierarchical Data Format-Earth Observing System)&lt;br /&gt;
* [[KML]] (KML (formerly Keyhole Markup Language), Version 2.2)&lt;br /&gt;
* [[NDF]] (National Landsat Archive Production System (NLAPS) Data Format)&lt;br /&gt;
* [[SAIF]] (Spatial Archive and Interchange Format, Canadian)&lt;br /&gt;
* [[SDTS]] (Spatial Data Transfer Standard)&lt;br /&gt;
* [[shp and shx]] (ESRI Shaepfile must have components; other optional components as well, see entry)&lt;br /&gt;
* [[SID]] (MrSID- Multi-resolution Seamless Image Database)&lt;br /&gt;
* [[TAB]] (MapInfo dataset format, must have component)&lt;br /&gt;
&lt;br /&gt;
== Mathematical ==&lt;br /&gt;
* [[graph6, sparse6]] (ASCII encoding of Adjacency matrices (.g6, .s6))&lt;br /&gt;
* [[graphML]] (Graph Markup Language)&lt;br /&gt;
* [[m]] (MATLAB script file)&lt;br /&gt;
* [[M]] (Mathematica package file)&lt;br /&gt;
* [[MAT]] (MATLAB matrix data format)&lt;br /&gt;
* [[MathML]]&lt;br /&gt;
* [[WP2]] WinPlot&lt;br /&gt;
&lt;br /&gt;
== Medical Imaging ==&lt;br /&gt;
* [[AFNI]] (data, meta-data (.BRIK,.HEAD))&lt;br /&gt;
*       [[MGH]] (uncompressed)&lt;br /&gt;
*       [[MGZ]] (zip-compressed)&lt;br /&gt;
* [[Analyze data, meta-data]] (.img,.hdr)&lt;br /&gt;
* [[DICOM]] (Digital Imaging and Communications in Medicine (.dcm))&lt;br /&gt;
* [[MINC]] (Medical Imaging NetCDF format; since version 2.0, based on HDF5 (.mnc))&lt;br /&gt;
* [[OME-TIFF]] (Open Microscopy Imaging format)&lt;br /&gt;
* [[OME-XML]] (Open Microscopy Imaging format)&lt;br /&gt;
* [[OST (Open Spatio-Temporal)]] (extensible, open alternative for microscope images)&lt;br /&gt;
* [[nii]] (Neuroimaging Informatics Technology Initiative (NIfTI) single-file (combined data and meta-data))&lt;br /&gt;
* [[gii]] (NIfTI offspring for brain surface data, single-file (combined data and meta-data) style)&lt;br /&gt;
* [[.img,.hdr]] (NIfTI offspring for brain surface data, dual-file (separate data and meta-data, respectively) style)&lt;br /&gt;
* [[SDM]] (Signed Differential Mapping- brain maps(.sdm))&lt;br /&gt;
&lt;br /&gt;
== Oceanographic, Atmospheric and Meteorological ==&lt;br /&gt;
&lt;br /&gt;
* [[GRIB]] (Grid in Binary)&lt;br /&gt;
* [[BUFR]] (Binary Universal Format Representation)&lt;br /&gt;
* [[IOAPI]] (netCDF augmented with metadata from the I/O API)&lt;br /&gt;
* [[PP]] (UK Met Office format for weather model data)&lt;br /&gt;
&lt;br /&gt;
== Physics ==&lt;br /&gt;
&lt;br /&gt;
* [[CGNS]] (Computational Fluid Dynamics General Notation System)&lt;br /&gt;
* [[NeXuS]] (Common data format for neutron, x-ray and muon science)&lt;br /&gt;
* [[QCDml]] (Lattice QCD gauge configuration markup language)&lt;br /&gt;
&lt;br /&gt;
== Scientific Signal data ==&lt;br /&gt;
&lt;br /&gt;
* [[ACQ]] (AcqKnowledge File Format for Windows)&lt;br /&gt;
* [[BioSemi]] (BDF) data format&lt;br /&gt;
* [[BKR]] (EEG data format)&lt;br /&gt;
* [[CFWB]] (Chart Data File Format)&lt;br /&gt;
* [[EDF]] (European data format)&lt;br /&gt;
* [[FEF]] (File Exchange Format for Vital signs)&lt;br /&gt;
* [[GDF]] (General data formats for biomedical signals)&lt;br /&gt;
* [[GMS]] (Gesture And Motion Signal format)&lt;br /&gt;
* [[IROCK]] (intelliRock Sensor Data File Format)&lt;br /&gt;
* [[MFER]] (Medical waveform Format Encoding Rules)&lt;br /&gt;
* [[REC]] (ATI Vision recorder file)&lt;br /&gt;
* [[SCP-ECG]] (Standard Communication Protocol for Computer assisted electrocardiography)&lt;br /&gt;
* [[SEG Y]] (Reflection seismology data format)&lt;br /&gt;
* [[SIGIF]] (SIGnal Interchange Format)&lt;br /&gt;
&lt;br /&gt;
== Social Sciences ==&lt;br /&gt;
&lt;br /&gt;
* [[Atlas.ti]] (Computer-assisted qualitative data analysis package)&lt;br /&gt;
* [[DDI]] (Data Documentation Initiative)&lt;br /&gt;
* [[DO]] (&amp;quot;DO file&amp;quot; command script for the [[Stata]] Statistical package)&lt;br /&gt;
* [[DTA]] (Binary data file for the [[Stata]] Statistical package)&lt;br /&gt;
* [[NVivo]] (Computer-assisted qualitative data analysis package)&lt;br /&gt;
* [[R]] (Statistical package)&lt;br /&gt;
* [[SAS]] (Statistical package)&lt;br /&gt;
* [[SAV]] (Binary &amp;quot;[[SPSS]] data format&amp;quot; for the [[SPSS]] Statistical package)&lt;br /&gt;
* [[SPO]] (Output file for the [[SPSS]] Statistical package - version 14)&lt;br /&gt;
* [[SPS]] (&amp;quot;Syntax file&amp;quot; (plain text command script) for the [[SPSS]] Statistical package)&lt;br /&gt;
* [[SPV]] (Output file for the [[SPSS]] Statistical package - version 17 and later)&lt;br /&gt;
* [[Transana]] (Computer-assisted qualitative data analysis package)&lt;/div&gt;</summary>
		<author><name>DavidFichtmueller</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/DBase_III</id>
		<title>DBase III</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/DBase_III"/>
				<updated>2012-11-12T14:34:02Z</updated>
		
		<summary type="html">&lt;p&gt;DavidFichtmueller: added subcategory in template ontology&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{FormatInfo&lt;br /&gt;
| name                   = dBase Database File&lt;br /&gt;
| subcat                 = Database&lt;br /&gt;
| extensions             = *.dbf&lt;br /&gt;
| pronom                 = x-fmt/9&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
This article describes how to export data out of a dBase III Table File (*.dbf). &lt;br /&gt;
&lt;br /&gt;
=== Opening the data with Libre Office ===&lt;br /&gt;
It is possible to import *.dbf files into Libre Office (or Open Office) Calc or Base: http://help.libreoffice.org/Calc/Importing_and_Exporting_dBASE_Files . &lt;br /&gt;
&lt;br /&gt;
Libre Office will try to recognize the character encoding of the data and preselect this option in the import window. Once a file imported, it can be saved in/exported to a variety of different formats. &lt;br /&gt;
&lt;br /&gt;
=== Importing the data directly into a mySQL database ===&lt;br /&gt;
Alternatively the data can directly be imported into a running mySQL database using the linux program &amp;lt;code&amp;gt;[http://manpages.ubuntu.com/manpages/lucid/man1/dbf2mysql.1.html dbf2mysql]&amp;lt;/code&amp;gt;. Importing the data directly however could cause some problems with the character encoding for non ASCII characters.&lt;br /&gt;
&lt;br /&gt;
If the mysql server is already running, the following commands will import the data:&lt;br /&gt;
 user@linux:~$ mysql -u root -p&lt;br /&gt;
 mysql&amp;gt; create database database_name;&lt;br /&gt;
 mysql&amp;gt; exit&lt;br /&gt;
 user@linux:~$ sudo apt-get install dbf2mysql&lt;br /&gt;
 user@linux:~$ dbf2mysql -vvv -c -f -d database_name -U root -P password DATA_FILE.DBF &lt;br /&gt;
&lt;br /&gt;
The data can then be exported using &amp;lt;code&amp;gt;mysqldump&amp;lt;/code&amp;gt;&lt;br /&gt;
 user@linux:~$ mysqldump -u root -p database_name &amp;gt; data_export.sql&lt;br /&gt;
&lt;br /&gt;
=== Additional Weblinks ===&lt;br /&gt;
* [http://en.wikipedia.org/wiki/DBase Wikipedia article about dBase]&lt;br /&gt;
* [http://www.nationalarchives.gov.uk/pronom/x-fmt/9 dBase III entry in PRONOM]&lt;br /&gt;
* [http://www.digitalpreservation.gov/formats/fdd/fdd000325.shtml dBase entry at digitalpreservation.gov]&lt;br /&gt;
* [http://www.dbf2002.com/dbf-file-format.html DBF File structure]&lt;br /&gt;
* [http://www.dbase.com/Knowledgebase/INT/db7_file_fmt.htm dBase File Structure at dBase knowledge base]&lt;/div&gt;</summary>
		<author><name>DavidFichtmueller</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/Scientific_Data_formats</id>
		<title>Scientific Data formats</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/Scientific_Data_formats"/>
				<updated>2012-11-12T14:29:04Z</updated>
		
		<summary type="html">&lt;p&gt;DavidFichtmueller: /* Biological */ correct ordering and ABCDEFG added&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{|&lt;br /&gt;
|[[File Formats]]&lt;br /&gt;
| &amp;gt;&lt;br /&gt;
|[[Electronic File Formats]]&lt;br /&gt;
| &amp;gt;&lt;br /&gt;
|[[Scientific Data formats]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== General ==&lt;br /&gt;
* [[cdf]] (Common Data Format)&lt;br /&gt;
* [[EAS3]] (binary file format for structured data)&lt;br /&gt;
* [[hdf]] (Hierarchical Data Format, from NASA)&lt;br /&gt;
* [[NetCDF]] (Network Common Data Format)&lt;br /&gt;
* There are several formats abbreviated as [[SDF]], including:&lt;br /&gt;
** [[Simple Data format]] (SDF) By George H. Fisher, Space Sciences Lab, UC Berkeley (A platform-independent, precision-preserving binary data I/O format capable of handling large, multi-dimensional arrays)&lt;br /&gt;
** [[Simple Data format-DPT]] A new format from the Data Protocols Team for publishing and sharing data&lt;br /&gt;
** [[Standard Delay Format]] A standard data structure for timing data&lt;br /&gt;
** [[Structure Data File]]  A file format for a chemical table file&lt;br /&gt;
* [[SDXF]] (Structured Data Exchange Format)&lt;br /&gt;
* [[Silo]] (a storage format for visualization developed at Lawrence Livermore National Laboratory)&lt;br /&gt;
* [[XDF]] (eXtensible Data Format)&lt;br /&gt;
* [[XSIL]] (Extensible Scientific Interchange Language)&lt;br /&gt;
&lt;br /&gt;
== Astronomical and Space ==&lt;br /&gt;
* [[Flexible Image Transport System]] (FITS)&lt;br /&gt;
* [[PDS/ODL]] (Planetary Data System)&lt;br /&gt;
* [[VOTable]] (IVOA standard table format)&lt;br /&gt;
* [[Starlink_Data_Format|SDF]] (Starlink Data Format) and [[N-Dimensional_Data_Format|NDF]] (Starlink's Extensible N-Dimensional Data Format).&lt;br /&gt;
&lt;br /&gt;
== Biological ==&lt;br /&gt;
&lt;br /&gt;
* [[AB1]] (Chromatogram files used by DNA sequencing instruments from Applied Biosystems)&lt;br /&gt;
* [[ABCD]] (Access to Biological Collection Data)&lt;br /&gt;
* [[ABCDDNA]] (Access to Biological Collection Data DNA extension)&lt;br /&gt;
* [[ABCDEFG]] (Access to Biological Collection Data Extension For Geosciences)&lt;br /&gt;
* [[ACE]] (Sequence assembly format)&lt;br /&gt;
* [[Affymetrix Raw Intensity Format]]&lt;br /&gt;
* [[ARLEQUIN Project Format]]&lt;br /&gt;
* [[Axt Alignment Format]]&lt;br /&gt;
* [[BAM]] (Binary compressed SAM format)&lt;br /&gt;
* [[BED]] (Browser extensible display format describing genes and other features of DNA sequences)&lt;br /&gt;
* [[BEDgraph]]&lt;br /&gt;
* [[Big Browser Extensible Data Format]]&lt;br /&gt;
* [[Big Wiggle Format]]&lt;br /&gt;
* [[Binary Alignement Map Format]]&lt;br /&gt;
* [[Binary Probe Map Format]]&lt;br /&gt;
* [[Binary sequence information Format]]&lt;br /&gt;
* [[Biological Pathway eXchange]]&lt;br /&gt;
* [[BLAT alignment Format]]&lt;br /&gt;
* [[BRIX generated O Format]] &lt;br /&gt;
* [[CAF]] (Common Assembly Format for sequence assembly)&lt;br /&gt;
* [[CellML]]&lt;br /&gt;
* [[CHADO XML interchange Format]]&lt;br /&gt;
* [[Chain Format for pairwise alignment]]&lt;br /&gt;
* [[CHARMM Card File Format]]&lt;br /&gt;
* [[CLUSTAL-W Alignment Format]]&lt;br /&gt;
* [[CLUSTAL-W Dendrogram Guide File Format]]&lt;br /&gt;
* [[Clustered Data Table Format]]&lt;br /&gt;
* [[DELTA]] (DEscription Language for TAxonomy)&lt;br /&gt;
* [[DAS]] (Distributed Sequence Annotation System)&lt;br /&gt;
* [[DBN]] (Dot Bracket Notation (DBN) - Vienna Format)&lt;br /&gt;
* [[EMBL]] (Flatfile format used by the EMBL for nucleotide and peptide sequences)&lt;br /&gt;
* [[ENCODE]] (Peak information Format)&lt;br /&gt;
* [[FASTA and FASTQ]] (File format for sequence data, FASTQ with quality)&lt;br /&gt;
* [[FuGEFlow]]&lt;br /&gt;
* [[FuGE-ML]] (Functional Genomics Experiment Markup Language)&lt;br /&gt;
* [[Gating-ML]]&lt;br /&gt;
* [[GCDML]] (Genomic Contextual Data Markup Language)&lt;br /&gt;
* [[GelML]] Gel electrophoresis Markup Language &lt;br /&gt;
* [[GenBank]] (Flatfile format used by NCBI for nucleotide and peptide sequences)&lt;br /&gt;
* [[Gene Feature File]] (Versions 1 and 3)&lt;br /&gt;
* [[GFF]] (General feature format for describing genes and other features of DNA, RNA and protein sequences)&lt;br /&gt;
* [[Gene Prediction File Format]]&lt;br /&gt;
* [[GenePattern GeneSet Table Format]]&lt;br /&gt;
* [[Genome Annotation File]] (version 1 and 2)&lt;br /&gt;
* [[GTF]] (Gene transfer format holds information about gene structure)&lt;br /&gt;
* [[HMMER]]&lt;br /&gt;
* [[ICB]] (ICM binary file Format)&lt;br /&gt;
* [[imzML]] (imaging mz Markup Language)&lt;br /&gt;
* [[ISA-Tab]] (Investigation Study Assay Tabular)&lt;br /&gt;
* [[ISND sequence record XML]]&lt;br /&gt;
* [[KGML]] (KEGG Mark-up Language)&lt;br /&gt;
* [[MAGE-Tab]] (MicroArray Gene Expression Tabular)&lt;br /&gt;
* [[MCL]] (Microbiological Common Language)&lt;br /&gt;
* [[MIARE-TAB]] (Minimum Information About a RNAi Experiment Tabular)&lt;br /&gt;
* [[microarray track data Browser Extensible Data Format]]&lt;br /&gt;
* [[MINiML]] (MIAME Notation in Markup Language)&lt;br /&gt;
* [[mini Protein Data Bank Format]]&lt;br /&gt;
* [[MIQAS-TAB]] (Minimal Information for QTLs and Association Studies Tabular)&lt;br /&gt;
* [[MITAB]]&lt;br /&gt;
* [[mmCIF]] (macromolecular Crystallographic Information File)&lt;br /&gt;
* [[Multiple Alignment Forma]]&lt;br /&gt;
* [[mzData]] (deprecated)&lt;br /&gt;
* [[mzIdentML]]&lt;br /&gt;
* [[mzML]]&lt;br /&gt;
* [[mzQuantML]]&lt;br /&gt;
* [[mzXML]] (deprecated)&lt;br /&gt;
* [[NCD]] (Natural Collections Descriptions)&lt;br /&gt;
* [[NDTF]] (Neurophysiology Data Translation Format)&lt;br /&gt;
* [[net alignment annotation Format]]&lt;br /&gt;
* [[NeuroML]] (Neuroscience eXtensible Markup Language)&lt;br /&gt;
* [[New Hampshire eXtended Format]]&lt;br /&gt;
* [[Newick tree Format]]&lt;br /&gt;
* [[NEXUS]] (Encodes mixed information about genetic sequence data in a block structured format)&lt;br /&gt;
* [[Nimblegen Design File Format]]&lt;br /&gt;
* [[Nimblegen Gene Data Format]]&lt;br /&gt;
* [[NMR-STAR]] (NMR Self-defining Text Archive and Retrieval format)&lt;br /&gt;
* [[nucleotide inFormation binary Format]]&lt;br /&gt;
* [[ODM]] (Operational Data Model)&lt;br /&gt;
* [[Open Biomedical Ontology Flat File Format]]&lt;br /&gt;
* [[PDB]] (Structures of biomolecules deposited in Protein Data Bank)&lt;br /&gt;
* [[Personal Genome SNP Format]]&lt;br /&gt;
* [[PHD]] (Output from the basecalling software Phred)&lt;br /&gt;
* [[phyloXML]] (XML for evolutionary biology and comparative genomics)&lt;br /&gt;
* [[Pre-Clustering File Format]]&lt;br /&gt;
* [[Protein InFormation Resource Format]]&lt;br /&gt;
* [[PRM]] (Protocol Representation Model (Medical Research))&lt;br /&gt;
* [[PSI-MI XML]]&lt;br /&gt;
* [[PSI-PAR]]&lt;br /&gt;
* [[RDML]] (Real-time PCR Data Markup Language)&lt;br /&gt;
* [[SAM]] (Sequence Alignment/Map format)&lt;br /&gt;
* [[SCF]] (Staden chromatogram files used to store data from DNA sequencing)&lt;br /&gt;
* [[SBML]] (Systems Biology Markup Language used to store biochemical network computational models)&lt;br /&gt;
* [[SDD]] (Structured Descriptive Data)&lt;br /&gt;
* [[SED-ML]] (Simulation Experiment Description Markup Language)&lt;br /&gt;
* [[Sequence Alignment Map Format]]&lt;br /&gt;
* [[SOFT]] (Simple Omnibus Format in Text)&lt;br /&gt;
* [[spML]] (Separation Markup Language)&lt;br /&gt;
* [[SRA-XML]] (Short Read Archive eXtensible Markup Language)&lt;br /&gt;
* [[Standard Flowgram Format]]&lt;br /&gt;
* [[Stockholm Multiple Alignment Format]] (Representing multiple sequence alignments)&lt;br /&gt;
* [[SBML]] (System Biology Markup Language)&lt;br /&gt;
* [[SBGN]] (Systems Biology Graphical Notation)&lt;br /&gt;
* [[SBRML]] (Systems Biology Results Markup Language)&lt;br /&gt;
* [[Swiss-Prot]] (Flatfile format used for protein sequences from the Swiss-Prot database)&lt;br /&gt;
* [[TAIR annotation data Format]]&lt;br /&gt;
* [[TAPIR]] (TDWG Access Protocol for Information Retrieval)&lt;br /&gt;
* [[TCS]] (Taxonomic Concept transfer Schema)&lt;br /&gt;
* [[TraML]] (Transition Markup Language)&lt;br /&gt;
* [[UniProtKB XML Format]]&lt;br /&gt;
* [[VCF]] (Variant Call Format)&lt;br /&gt;
* [[Wiggle Format]]&lt;br /&gt;
&lt;br /&gt;
== Biomedical signals (time series) ==&lt;br /&gt;
&lt;br /&gt;
* [[ACQ]] (AcqKnowledge)&lt;br /&gt;
* [[BCI2000]] (The BCI2000 project)&lt;br /&gt;
* [[BioSemi]] (BDF) data format&lt;br /&gt;
* [[BKR]] (EEG data format)&lt;br /&gt;
* [[CFWB]] (Chart Data File Format)&lt;br /&gt;
* [[DICOM-Waveform]] (An extension of Dicom for storing waveform data)&lt;br /&gt;
* [[ecgML]] (A markup language for electrocardiogram data acquisition and analysis)&lt;br /&gt;
* [[EDF/EDF+]] (European Data Format)&lt;br /&gt;
* [[FEF]] (File Exchange Format for Vital signs, CEN TS 14271)&lt;br /&gt;
* [[GDF v1.x]] (General Data Format for biomedical signals - Version 1.x)&lt;br /&gt;
* [[ GDF v2.x]] (The General Data Format for biomedical signals - Version 2.x)&lt;br /&gt;
* [[ HL7aECG]] (Health Level 7 v3 annotated ECG)&lt;br /&gt;
* [[OpenXDF]] (Open Exchange Data Format)&lt;br /&gt;
* [[SCP-ECG]] (Standard Communication Protocol for Computer assisted electrocardiography)&lt;br /&gt;
* [[SIGIF]] (A digital SIGnal Interchange Format)&lt;br /&gt;
* [[WFDB]] (Format of Physiobank)&lt;br /&gt;
&lt;br /&gt;
== Chemical ==&lt;br /&gt;
* [[CCP4]] (X-ray crystallography voxels (electron density))&lt;br /&gt;
* [[CDX]] (ChemDraw file format)&lt;br /&gt;
* [[CDXML]] (ChemDraw file format)&lt;br /&gt;
* [[CHM]] (ChemDraw file format)&lt;br /&gt;
* [[CIF]] (Crystallographic Information File, standardised by IUCr)&lt;br /&gt;
* [[CML]] (Chemical markup language)&lt;br /&gt;
* [[CTab]] (Chemical table file .mol, .sd, .sdf)&lt;br /&gt;
* [[HITRAN]] (spectroscopic data with one optical/infrared transition per line in the ASCII file (.hit))&lt;br /&gt;
* [[JCAMP]] (Joint Committee on Atomic and Molecular Physical Data, .dx, .jdx)&lt;br /&gt;
* [[MOL]] (MDL Molfile)&lt;br /&gt;
* [[MOP]] (MOPAC format)&lt;br /&gt;
* [[MRC]] (voxels in cryo-electron microscopy)&lt;br /&gt;
* [[MST]] ACD/ChemSketch v1 file format&lt;br /&gt;
* [[PDB]] (Protein Data Bank)&lt;br /&gt;
* [[RPT]] ACD/ChemSketch v1 file format&lt;br /&gt;
* [[RXN]] (Reaction file format)&lt;br /&gt;
* [[SK2]] (ACD/ChemSketch v2 file format)&lt;br /&gt;
* [[SKC]] (ISIS/Draw file format)&lt;br /&gt;
* [[SMILES]] (Simplified molecular input line entry specification, .smi)&lt;br /&gt;
* [[SPC]] (spectroscopic data)&lt;br /&gt;
* [[Structure Data File]] (SDF)&lt;br /&gt;
* [[TGF]] (ISIS/Draw reaction file format)&lt;br /&gt;
&lt;br /&gt;
Chemical data may be distinguished in various ways, including [http://www.ch.ic.ac.uk/chemime/ Chemical MIME] types.&lt;br /&gt;
&lt;br /&gt;
== Ecological ==&lt;br /&gt;
* [[Darwin Core]] (Standard for sharing information about biological diversity)&lt;br /&gt;
* [[EML]] (Ecological Metadata Language)&lt;br /&gt;
&lt;br /&gt;
== Geographic and Geospatial ==&lt;br /&gt;
&lt;br /&gt;
See also [[Geospatial]]&lt;br /&gt;
&lt;br /&gt;
* [[DEM]] (Digital Elevation Model)&lt;br /&gt;
* [[DOQ]] (Digital Orthophotos)&lt;br /&gt;
* [[e00]] (ESRI ArcInfo Interchange File)&lt;br /&gt;
* [[FGDC]] (Content Standard for Digital Geospatial Metadata??)&lt;br /&gt;
* [[GeoTIFF]] (Geospatial extensions to TIFF)&lt;br /&gt;
* [[GML]] (Geography Markup Language)&lt;br /&gt;
* [[HDFEOS, HD2, HD4]] (Hierarchical Data Format-Earth Observing System)&lt;br /&gt;
* [[KML]] (KML (formerly Keyhole Markup Language), Version 2.2)&lt;br /&gt;
* [[NDF]] (National Landsat Archive Production System (NLAPS) Data Format)&lt;br /&gt;
* [[SAIF]] (Spatial Archive and Interchange Format, Canadian)&lt;br /&gt;
* [[SDTS]] (Spatial Data Transfer Standard)&lt;br /&gt;
* [[shp and shx]] (ESRI Shaepfile must have components; other optional components as well, see entry)&lt;br /&gt;
* [[SID]] (MrSID- Multi-resolution Seamless Image Database)&lt;br /&gt;
* [[TAB]] (MapInfo dataset format, must have component)&lt;br /&gt;
&lt;br /&gt;
== Mathematical ==&lt;br /&gt;
* [[graph6, sparse6]] (ASCII encoding of Adjacency matrices (.g6, .s6))&lt;br /&gt;
* [[graphML]] (Graph Markup Language)&lt;br /&gt;
* [[m]] (MATLAB script file)&lt;br /&gt;
* [[M]] (Mathematica package file)&lt;br /&gt;
* [[MAT]] (MATLAB matrix data format)&lt;br /&gt;
* [[MathML]]&lt;br /&gt;
* [[WP2]] WinPlot&lt;br /&gt;
&lt;br /&gt;
== Medical Imaging ==&lt;br /&gt;
* [[AFNI]] (data, meta-data (.BRIK,.HEAD))&lt;br /&gt;
*       [[MGH]] (uncompressed)&lt;br /&gt;
*       [[MGZ]] (zip-compressed)&lt;br /&gt;
* [[Analyze data, meta-data]] (.img,.hdr)&lt;br /&gt;
* [[DICOM]] (Digital Imaging and Communications in Medicine (.dcm))&lt;br /&gt;
* [[MINC]] (Medical Imaging NetCDF format; since version 2.0, based on HDF5 (.mnc))&lt;br /&gt;
* [[OME-TIFF]] (Open Microscopy Imaging format)&lt;br /&gt;
* [[OME-XML]] (Open Microscopy Imaging format)&lt;br /&gt;
* [[OST (Open Spatio-Temporal)]] (extensible, open alternative for microscope images)&lt;br /&gt;
* [[nii]] (Neuroimaging Informatics Technology Initiative (NIfTI) single-file (combined data and meta-data))&lt;br /&gt;
* [[gii]] (NIfTI offspring for brain surface data, single-file (combined data and meta-data) style)&lt;br /&gt;
* [[.img,.hdr]] (NIfTI offspring for brain surface data, dual-file (separate data and meta-data, respectively) style)&lt;br /&gt;
* [[SDM]] (Signed Differential Mapping- brain maps(.sdm))&lt;br /&gt;
&lt;br /&gt;
== Oceanographic, Atmospheric and Meteorological ==&lt;br /&gt;
&lt;br /&gt;
* [[GRIB]] (Grid in Binary)&lt;br /&gt;
* [[BUFR]] (Binary Universal Format Representation)&lt;br /&gt;
* [[IOAPI]] (netCDF augmented with metadata from the I/O API)&lt;br /&gt;
* [[PP]] (UK Met Office format for weather model data)&lt;br /&gt;
&lt;br /&gt;
== Physics ==&lt;br /&gt;
&lt;br /&gt;
* [[CGNS]] (Computational Fluid Dynamics General Notation System)&lt;br /&gt;
* [[NeXuS]] (Common data format for neutron, x-ray and muon science)&lt;br /&gt;
* [[QCDml]] (Lattice QCD gauge configuration markup language)&lt;br /&gt;
&lt;br /&gt;
== Scientific Signal data ==&lt;br /&gt;
&lt;br /&gt;
* [[ACQ]] (AcqKnowledge File Format for Windows)&lt;br /&gt;
* [[BioSemi]] (BDF) data format&lt;br /&gt;
* [[BKR]] (EEG data format)&lt;br /&gt;
* [[CFWB]] (Chart Data File Format)&lt;br /&gt;
* [[EDF]] (European data format)&lt;br /&gt;
* [[FEF]] (File Exchange Format for Vital signs)&lt;br /&gt;
* [[GDF]] (General data formats for biomedical signals)&lt;br /&gt;
* [[GMS]] (Gesture And Motion Signal format)&lt;br /&gt;
* [[IROCK]] (intelliRock Sensor Data File Format)&lt;br /&gt;
* [[MFER]] (Medical waveform Format Encoding Rules)&lt;br /&gt;
* [[REC]] (ATI Vision recorder file)&lt;br /&gt;
* [[SCP-ECG]] (Standard Communication Protocol for Computer assisted electrocardiography)&lt;br /&gt;
* [[SEG Y]] (Reflection seismology data format)&lt;br /&gt;
* [[SIGIF]] (SIGnal Interchange Format)&lt;br /&gt;
&lt;br /&gt;
== Social Sciences ==&lt;br /&gt;
&lt;br /&gt;
* [[Atlas.ti]] (Computer-assisted qualitative data analysis package)&lt;br /&gt;
* [[DDI]] (Data Documentation Initiative)&lt;br /&gt;
* [[DO]] (&amp;quot;DO file&amp;quot; command script for the [[Stata]] Statistical package)&lt;br /&gt;
* [[DTA]] (Binary data file for the [[Stata]] Statistical package)&lt;br /&gt;
* [[NVivo]] (Computer-assisted qualitative data analysis package)&lt;br /&gt;
* [[R]] (Statistical package)&lt;br /&gt;
* [[SAS]] (Statistical package)&lt;br /&gt;
* [[SAV]] (Binary &amp;quot;[[SPSS]] data format&amp;quot; for the [[SPSS]] Statistical package)&lt;br /&gt;
* [[SPO]] (Output file for the [[SPSS]] Statistical package - version 14)&lt;br /&gt;
* [[SPS]] (&amp;quot;Syntax file&amp;quot; (plain text command script) for the [[SPSS]] Statistical package)&lt;br /&gt;
* [[SPV]] (Output file for the [[SPSS]] Statistical package - version 17 and later)&lt;br /&gt;
* [[Transana]] (Computer-assisted qualitative data analysis package)&lt;/div&gt;</summary>
		<author><name>DavidFichtmueller</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/Character_encoding</id>
		<title>Character encoding</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/Character_encoding"/>
				<updated>2012-11-12T14:16:30Z</updated>
		
		<summary type="html">&lt;p&gt;DavidFichtmueller: /* External links */ Formatting Fix&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{|&lt;br /&gt;
|[[File Formats]]&lt;br /&gt;
| &amp;gt;&lt;br /&gt;
|[[Electronic File Formats]]&lt;br /&gt;
| &amp;gt;&lt;br /&gt;
|[[Character Encodings]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* [[Adobe Standard Encoding]]&lt;br /&gt;
* [[ARMSCII]]&lt;br /&gt;
* [[ASCII]]&lt;br /&gt;
* [[ANSEL]]&lt;br /&gt;
** [[MARC-8]]&lt;br /&gt;
* [[ATASCII]] (used by Atari computers)&lt;br /&gt;
* [[Baudot code]]&lt;br /&gt;
* [[Braille]]&lt;br /&gt;
* [[EBCDIC]]&lt;br /&gt;
* [[IBM PC code pages]]&lt;br /&gt;
* [[ISO 646]]&lt;br /&gt;
** [[ISO 646-CA]] (Canada / French)&lt;br /&gt;
** [[ISO 646-CA-2]] (Canada / French)&lt;br /&gt;
** [[ISO 646-CH]] (Switzerland)&lt;br /&gt;
** [[ISO 646-CN]] (China / Basic Latin)&lt;br /&gt;
** [[ISO 646-CU]] (Cuba / Spanish)&lt;br /&gt;
** [[ISO 646-DE]] (Germany)&lt;br /&gt;
** [[ISO 646-DK]] (Denmark)&lt;br /&gt;
** [[ISO 646-FI]] (Finland)&lt;br /&gt;
** [[ISO 646-FR]] (France)&lt;br /&gt;
** [[ISO 646-GB]] (Great Britain)&lt;br /&gt;
** [[ISO 646-HU]] (Hungary)&lt;br /&gt;
** [[ISO 646-IRV]] (International Reference Version)&lt;br /&gt;
** [[ISO 646-IT]] (Italy)&lt;br /&gt;
** [[ISO 646-JP]] (Japan / Romaji)&lt;br /&gt;
** [[ISO 646-JP OCR-B]] (Japan / Romaji)&lt;br /&gt;
** [[ISO 646-KR]] (Korea / Latin)&lt;br /&gt;
** [[ISO 646-MT]] (Malta)&lt;br /&gt;
** [[ISO 646-NL]] (Netherlands)&lt;br /&gt;
** [[ISO 646-NO]] (Norway)&lt;br /&gt;
** [[ISO 646-NO-2]] (Norway)&lt;br /&gt;
** [[ISO 646-PT]] (Portugal)&lt;br /&gt;
** [[ISO 646-SE]] (Sweden)&lt;br /&gt;
** [[ISO 646-SE-2]] (Sweden)&lt;br /&gt;
** [[ISO 646-US]] (Same as [[ASCII]])&lt;br /&gt;
** [[ISO 646-YU]] (Yugoslavia)&lt;br /&gt;
* [[ISO 2022]]&lt;br /&gt;
* [[ISO 8859]]&lt;br /&gt;
** [[ISO 8859-1]] (Latin-1)&lt;br /&gt;
** [[ISO 8859-2]] (Latin-2, Central/East European)&lt;br /&gt;
** [[ISO 8859-3]] (Latin-3, Esperanto, Galician, Maltese, and Turkish)&lt;br /&gt;
** [[ISO 8859-4]] (Latin-4, Scandinavian and Baltic)&lt;br /&gt;
** [[ISO 8859-5]] (Cyrillic)&lt;br /&gt;
** [[ISO 8859-6]] (Arabic)&lt;br /&gt;
** [[ISO 8859-7]] (Modern Greek)&lt;br /&gt;
** [[ISO 8859-8]] (Hebrew)&lt;br /&gt;
** [[ISO 8859-9]] (Latin-5, Turkish)&lt;br /&gt;
** [[ISO 8859-10]] (Latin-6, Lappish, Nordic, and Inuit)&lt;br /&gt;
** [[ISO 8859-11]] (Thai)&lt;br /&gt;
** [[ISO 8859-13]] (Latin-7, Baltic Rim)&lt;br /&gt;
** [[ISO 8859-14]] (Celtic)&lt;br /&gt;
** [[ISO 8859-15]] (Latin-9, Latin-1 with a Euro sign)&lt;br /&gt;
** [[ISO 8859-16]] (Romanian)&lt;br /&gt;
* [[JIS]]&lt;br /&gt;
** [[JIS X 0201]]&lt;br /&gt;
** [[JIS X 0208]]&lt;br /&gt;
** [[Shift-JIS]]&lt;br /&gt;
* [[KOI8]]&lt;br /&gt;
** [[KOI8-CS]] (Czechoslovakia)&lt;br /&gt;
** [[KOI8-R]] (Russia)&lt;br /&gt;
** [[KOI8-U]] (Ukraine)&lt;br /&gt;
* [[Macintosh encodings]]&lt;br /&gt;
** [[MacCE]]&lt;br /&gt;
** [[MacCyrillic]]&lt;br /&gt;
** [[MacDingbat]]&lt;br /&gt;
** [[MacGreek]]&lt;br /&gt;
** [[MacGujarati]]&lt;br /&gt;
** [[MacGurmukhi]]&lt;br /&gt;
** [[MacIceland]]&lt;br /&gt;
** [[MacRoman]]&lt;br /&gt;
** [[MacRomania]]&lt;br /&gt;
** [[MacSymbol]]&lt;br /&gt;
** [[MacThai]]&lt;br /&gt;
** [[MacTurkish]]&lt;br /&gt;
** [[MacUkraine]]&lt;br /&gt;
* [[Morse code]]&lt;br /&gt;
* [[MS-DOS encodings]]&lt;br /&gt;
** [[MS-DOS Latin US ]]&lt;br /&gt;
** [[MS-DOS Greek ]]&lt;br /&gt;
** [[MS-DOS Baltic Rim ]]&lt;br /&gt;
** [[MS-DOS Latin-1 ]]&lt;br /&gt;
** [[MS-DOS Greek 1 ]]&lt;br /&gt;
** [[MS-DOS Latin-2 ]]&lt;br /&gt;
** [[MS-DOS Cyrillic ]]&lt;br /&gt;
** [[MS-DOS Turkish ]]&lt;br /&gt;
** [[MS-DOS Portuguese ]]&lt;br /&gt;
** [[MS-DOS Icelandic ]]&lt;br /&gt;
** [[MS-DOS Hebrew ]]&lt;br /&gt;
** [[MS-DOS French Canada ]]&lt;br /&gt;
** [[MS-DOS Arabic ]]&lt;br /&gt;
** [[MS-DOS Nordic ]]&lt;br /&gt;
** [[MS-DOS Cyrillic CIS 1 ]]&lt;br /&gt;
** [[MS-DOS Greek 2 ]]&lt;br /&gt;
* [[PETSCII]] (or PET ASCII or CBM ASCII; used by Commodore computers)&lt;br /&gt;
* [[Unicode]]&lt;br /&gt;
** [[UTF-1]]&lt;br /&gt;
** [[UTF-7]]&lt;br /&gt;
** [[UTF-8]]&lt;br /&gt;
** [[UTF-EBCDIC]]&lt;br /&gt;
** [[UTF-9]]&lt;br /&gt;
** [[UTF-16]] / [[UCS-2]]&lt;br /&gt;
** [[UTF-18]]&lt;br /&gt;
** [[UTF-32]] / [[UCS-4]]&lt;br /&gt;
* [[VISCII]]&lt;br /&gt;
* [[Windows encodings]]&lt;br /&gt;
** [[Windows 1252]] (ISO 8859-1 plus additional characters)&lt;br /&gt;
** [[Windows 1255]] (Hebrew)&lt;br /&gt;
** [[Windows 1256]] (Arabic, Farsi, Urdu)&lt;br /&gt;
** [[Windows 1257]] (Baltic Rim)&lt;br /&gt;
** [[Windows 1258]] (Vietnamese)&lt;br /&gt;
== External links ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.transbay.net/~enf/ascii/ascii.pdf The Evolution of Character Codes, 1874–1968]&lt;br /&gt;
* [http://www.kreativekorp.com/charset/ Collection of character encodings]&lt;br /&gt;
* [http://www.joelonsoftware.com/articles/Unicode.html The Absolute Minimum Every Software Developer Absolutely, Positively Must Know About Unicode and Character Sets (No Excuses!)] by [http://en.wikipedia.org/wiki/Joel_Spolsky Joel Spolsky]&lt;br /&gt;
[[Category:Character Encodings]]&lt;/div&gt;</summary>
		<author><name>DavidFichtmueller</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/Character_encoding</id>
		<title>Character encoding</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/Character_encoding"/>
				<updated>2012-11-12T14:15:55Z</updated>
		
		<summary type="html">&lt;p&gt;DavidFichtmueller: /* External links */ Added the article &amp;quot;The Absolute Minimum Every Software Developer Absolutely, Positively Must Know About Unicode and Character Sets (No Excuses!)&amp;quot; by Joel Spolsky, as a general overview on the topic&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{|&lt;br /&gt;
|[[File Formats]]&lt;br /&gt;
| &amp;gt;&lt;br /&gt;
|[[Electronic File Formats]]&lt;br /&gt;
| &amp;gt;&lt;br /&gt;
|[[Character Encodings]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* [[Adobe Standard Encoding]]&lt;br /&gt;
* [[ARMSCII]]&lt;br /&gt;
* [[ASCII]]&lt;br /&gt;
* [[ANSEL]]&lt;br /&gt;
** [[MARC-8]]&lt;br /&gt;
* [[ATASCII]] (used by Atari computers)&lt;br /&gt;
* [[Baudot code]]&lt;br /&gt;
* [[Braille]]&lt;br /&gt;
* [[EBCDIC]]&lt;br /&gt;
* [[IBM PC code pages]]&lt;br /&gt;
* [[ISO 646]]&lt;br /&gt;
** [[ISO 646-CA]] (Canada / French)&lt;br /&gt;
** [[ISO 646-CA-2]] (Canada / French)&lt;br /&gt;
** [[ISO 646-CH]] (Switzerland)&lt;br /&gt;
** [[ISO 646-CN]] (China / Basic Latin)&lt;br /&gt;
** [[ISO 646-CU]] (Cuba / Spanish)&lt;br /&gt;
** [[ISO 646-DE]] (Germany)&lt;br /&gt;
** [[ISO 646-DK]] (Denmark)&lt;br /&gt;
** [[ISO 646-FI]] (Finland)&lt;br /&gt;
** [[ISO 646-FR]] (France)&lt;br /&gt;
** [[ISO 646-GB]] (Great Britain)&lt;br /&gt;
** [[ISO 646-HU]] (Hungary)&lt;br /&gt;
** [[ISO 646-IRV]] (International Reference Version)&lt;br /&gt;
** [[ISO 646-IT]] (Italy)&lt;br /&gt;
** [[ISO 646-JP]] (Japan / Romaji)&lt;br /&gt;
** [[ISO 646-JP OCR-B]] (Japan / Romaji)&lt;br /&gt;
** [[ISO 646-KR]] (Korea / Latin)&lt;br /&gt;
** [[ISO 646-MT]] (Malta)&lt;br /&gt;
** [[ISO 646-NL]] (Netherlands)&lt;br /&gt;
** [[ISO 646-NO]] (Norway)&lt;br /&gt;
** [[ISO 646-NO-2]] (Norway)&lt;br /&gt;
** [[ISO 646-PT]] (Portugal)&lt;br /&gt;
** [[ISO 646-SE]] (Sweden)&lt;br /&gt;
** [[ISO 646-SE-2]] (Sweden)&lt;br /&gt;
** [[ISO 646-US]] (Same as [[ASCII]])&lt;br /&gt;
** [[ISO 646-YU]] (Yugoslavia)&lt;br /&gt;
* [[ISO 2022]]&lt;br /&gt;
* [[ISO 8859]]&lt;br /&gt;
** [[ISO 8859-1]] (Latin-1)&lt;br /&gt;
** [[ISO 8859-2]] (Latin-2, Central/East European)&lt;br /&gt;
** [[ISO 8859-3]] (Latin-3, Esperanto, Galician, Maltese, and Turkish)&lt;br /&gt;
** [[ISO 8859-4]] (Latin-4, Scandinavian and Baltic)&lt;br /&gt;
** [[ISO 8859-5]] (Cyrillic)&lt;br /&gt;
** [[ISO 8859-6]] (Arabic)&lt;br /&gt;
** [[ISO 8859-7]] (Modern Greek)&lt;br /&gt;
** [[ISO 8859-8]] (Hebrew)&lt;br /&gt;
** [[ISO 8859-9]] (Latin-5, Turkish)&lt;br /&gt;
** [[ISO 8859-10]] (Latin-6, Lappish, Nordic, and Inuit)&lt;br /&gt;
** [[ISO 8859-11]] (Thai)&lt;br /&gt;
** [[ISO 8859-13]] (Latin-7, Baltic Rim)&lt;br /&gt;
** [[ISO 8859-14]] (Celtic)&lt;br /&gt;
** [[ISO 8859-15]] (Latin-9, Latin-1 with a Euro sign)&lt;br /&gt;
** [[ISO 8859-16]] (Romanian)&lt;br /&gt;
* [[JIS]]&lt;br /&gt;
** [[JIS X 0201]]&lt;br /&gt;
** [[JIS X 0208]]&lt;br /&gt;
** [[Shift-JIS]]&lt;br /&gt;
* [[KOI8]]&lt;br /&gt;
** [[KOI8-CS]] (Czechoslovakia)&lt;br /&gt;
** [[KOI8-R]] (Russia)&lt;br /&gt;
** [[KOI8-U]] (Ukraine)&lt;br /&gt;
* [[Macintosh encodings]]&lt;br /&gt;
** [[MacCE]]&lt;br /&gt;
** [[MacCyrillic]]&lt;br /&gt;
** [[MacDingbat]]&lt;br /&gt;
** [[MacGreek]]&lt;br /&gt;
** [[MacGujarati]]&lt;br /&gt;
** [[MacGurmukhi]]&lt;br /&gt;
** [[MacIceland]]&lt;br /&gt;
** [[MacRoman]]&lt;br /&gt;
** [[MacRomania]]&lt;br /&gt;
** [[MacSymbol]]&lt;br /&gt;
** [[MacThai]]&lt;br /&gt;
** [[MacTurkish]]&lt;br /&gt;
** [[MacUkraine]]&lt;br /&gt;
* [[Morse code]]&lt;br /&gt;
* [[MS-DOS encodings]]&lt;br /&gt;
** [[MS-DOS Latin US ]]&lt;br /&gt;
** [[MS-DOS Greek ]]&lt;br /&gt;
** [[MS-DOS Baltic Rim ]]&lt;br /&gt;
** [[MS-DOS Latin-1 ]]&lt;br /&gt;
** [[MS-DOS Greek 1 ]]&lt;br /&gt;
** [[MS-DOS Latin-2 ]]&lt;br /&gt;
** [[MS-DOS Cyrillic ]]&lt;br /&gt;
** [[MS-DOS Turkish ]]&lt;br /&gt;
** [[MS-DOS Portuguese ]]&lt;br /&gt;
** [[MS-DOS Icelandic ]]&lt;br /&gt;
** [[MS-DOS Hebrew ]]&lt;br /&gt;
** [[MS-DOS French Canada ]]&lt;br /&gt;
** [[MS-DOS Arabic ]]&lt;br /&gt;
** [[MS-DOS Nordic ]]&lt;br /&gt;
** [[MS-DOS Cyrillic CIS 1 ]]&lt;br /&gt;
** [[MS-DOS Greek 2 ]]&lt;br /&gt;
* [[PETSCII]] (or PET ASCII or CBM ASCII; used by Commodore computers)&lt;br /&gt;
* [[Unicode]]&lt;br /&gt;
** [[UTF-1]]&lt;br /&gt;
** [[UTF-7]]&lt;br /&gt;
** [[UTF-8]]&lt;br /&gt;
** [[UTF-EBCDIC]]&lt;br /&gt;
** [[UTF-9]]&lt;br /&gt;
** [[UTF-16]] / [[UCS-2]]&lt;br /&gt;
** [[UTF-18]]&lt;br /&gt;
** [[UTF-32]] / [[UCS-4]]&lt;br /&gt;
* [[VISCII]]&lt;br /&gt;
* [[Windows encodings]]&lt;br /&gt;
** [[Windows 1252]] (ISO 8859-1 plus additional characters)&lt;br /&gt;
** [[Windows 1255]] (Hebrew)&lt;br /&gt;
** [[Windows 1256]] (Arabic, Farsi, Urdu)&lt;br /&gt;
** [[Windows 1257]] (Baltic Rim)&lt;br /&gt;
** [[Windows 1258]] (Vietnamese)&lt;br /&gt;
== External links ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.transbay.net/~enf/ascii/ascii.pdf The Evolution of Character Codes, 1874–1968]&lt;br /&gt;
* [http://www.kreativekorp.com/charset/ Collection of character encodings]]&lt;br /&gt;
* [http://www.joelonsoftware.com/articles/Unicode.html The Absolute Minimum Every Software Developer Absolutely, Positively Must Know About Unicode and Character Sets (No Excuses!)] by [http://en.wikipedia.org/wiki/Joel_Spolsky Joel Spolsky]&lt;br /&gt;
[[Category:Character Encodings]]&lt;/div&gt;</summary>
		<author><name>DavidFichtmueller</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/DBase_III</id>
		<title>DBase III</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/DBase_III"/>
				<updated>2012-11-09T21:17:22Z</updated>
		
		<summary type="html">&lt;p&gt;DavidFichtmueller: initial version&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{FormatInfo&lt;br /&gt;
| name                   = dBase Database File&lt;br /&gt;
| extensions             = *.dbf&lt;br /&gt;
| pronom                 = x-fmt/9&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
This article describes how to export data out of a dBase III Table File (*.dbf). &lt;br /&gt;
&lt;br /&gt;
=== Opening the data with Libre Office ===&lt;br /&gt;
It is possible to import *.dbf files into Libre Office (or Open Office) Calc or Base: http://help.libreoffice.org/Calc/Importing_and_Exporting_dBASE_Files . &lt;br /&gt;
&lt;br /&gt;
Libre Office will try to recognize the character encoding of the data and preselect this option in the import window. Once a file imported, it can be saved in/exported to a variety of different formats. &lt;br /&gt;
&lt;br /&gt;
=== Importing the data directly into a mySQL database ===&lt;br /&gt;
Alternatively the data can directly be imported into a running mySQL database using the linux program &amp;lt;code&amp;gt;[http://manpages.ubuntu.com/manpages/lucid/man1/dbf2mysql.1.html dbf2mysql]&amp;lt;/code&amp;gt;. Importing the data directly however could cause some problems with the character encoding for non ASCII characters.&lt;br /&gt;
&lt;br /&gt;
If the mysql server is already running, the following commands will import the data:&lt;br /&gt;
 user@linux:~$ mysql -u root -p&lt;br /&gt;
 mysql&amp;gt; create database database_name;&lt;br /&gt;
 mysql&amp;gt; exit&lt;br /&gt;
 user@linux:~$ sudo apt-get install dbf2mysql&lt;br /&gt;
 user@linux:~$ dbf2mysql -vvv -c -f -d database_name -U root -P password DATA_FILE.DBF &lt;br /&gt;
&lt;br /&gt;
The data can then be exported using &amp;lt;code&amp;gt;mysqldump&amp;lt;/code&amp;gt;&lt;br /&gt;
 user@linux:~$ mysqldump -u root -p database_name &amp;gt; data_export.sql&lt;br /&gt;
&lt;br /&gt;
=== Additional Weblinks ===&lt;br /&gt;
* [http://en.wikipedia.org/wiki/DBase Wikipedia article about dBase]&lt;br /&gt;
* [http://www.nationalarchives.gov.uk/pronom/x-fmt/9 dBase III entry in PRONOM]&lt;br /&gt;
* [http://www.digitalpreservation.gov/formats/fdd/fdd000325.shtml dBase entry at digitalpreservation.gov]&lt;/div&gt;</summary>
		<author><name>DavidFichtmueller</name></author>	</entry>

	</feed>