Version information

This topic describes the structure of a version XML file.

When you create a version, you specify the following fields:
  • Version name
  • Version description
You can also enter information into other fields, such as the version alias, when you edit the version file. They are described below.
Note: Some of the fields must not be modified manually (such as the containers that a version contains), otherwise the Content Store will be corrupted. Please contact IXIASOFT before modifying the version file manually.

Description

Name Description Content model
Version Root element of version definition files. Provides a unique ID for each version definition file.

Do not modify this element.

<version>
Version name Current version name.
<version>
  <name>
For example:
<name>4.1.8</name>
Version description A short description of the version.
<version>
  <versionmeta>
    <description>
For example:
<description>Version 4.1.8 of the Acme documentation</description>
Version aliases Internal names or past names of the version.
<version>
  <versionmeta>
    <aliases>
      <alias> 
For example:
<aliases>
  <alias>Omega</alias>
</aliases>
Containers Links to containers for this version. The attribute value of this field needs to be unique within each version file.

Do not modify this field.

<version>
  <containers>

Example

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE version PUBLIC "-//IXIA//DTD IXIA DITA Version//EN" "version.dtd">
<version id="vcw1441205259644" xml:lang="en-us">
	<name>4.1.8</name>
	<versionmeta>
		<description>Version 4.1.8 of the Acme documentation</description>
		<aliases>
			<alias>Omega</alias>
		</aliases>
	</versionmeta>
	<containers>
		<container href="../authoring/xhw1441810967219.ditamap"/>
	</containers>
</version>