Description of the Update Information
The update information can be contained in a file which can be directly accessed through a URL or it can be generated on demand (HTTP get request). If it is a file then it could be named according to this pattern:
<extension_file_name>.update.xml
For example, the update information file for the extension myextension.oxt is myextension.update.xml. The .oxt file extension is not used.
It follows the description of the XML structure of the update information data:
Element /description
- Parent element: document root
- Children:
- Since: OOo 2.2
<description>
is the root element of the update information XML document.
Attribute | Description |
---|---|
xmlns
|
The default namespace of element description and all children must be defined as |
xmlns:dep
|
The namespace for dependency information must be defined as |
xmlns:xlink
|
The xlink namespace must be defined as |
other namespace definitions | Other namespaces can be added as necessary. |
Element /description/identifier
- Parent element:
<description>
- Children: none
- Since OOo 2.2
Attribute | Description |
---|---|
value
|
Required. The extension identifier. |
Element /description/version
- Parent element:
<description>
- Children: none
- Since: OOo 2.2
Attribute | Description |
---|---|
value
|
Required. A textual representation of the extension version. |
Element /description/update-download
- Parent element:
<description>
- Children:
- Since: OOo 2.2
<update-download>
must have one or more <src>
children. The second, third, etc. <src>
element are regarded as fallback, that is, the elements provide URLs to mirrors. The Extension Manager will try to download the extension by using the first URL and only uses the next URL if an error occurred, for example because the the connection was interrupted.
Element /description/update-download/src
- Parent element:
<update-download>
- Children: none
- Since: OOo 2.2
Attribute | Description |
---|---|
xlink:href
|
Required. The value is a URL which refers to the extension |
Element /description/update-website
- Parent:
<description>
- Children:
- Since: OOo 2.4
The children of this element provide a URL to the web site where the new version of the extension can be downloaded. There can be multiple localized web sites with different URLs. Each URL can be provided by a separate <src>
element. See Localized XML Elements about how the Extension Manager chooses the proper <src>
element.
<update-website> must have at least one child.
Element /description/update-website/src
- Parent:
<update-website>
- Children: none
- Since: OOo 2.4
Attribute | Description |
xlink:href
|
Required. The value is a URL to the web site of the publisher of the extension. |
lang
|
Required. A language identifier according to RFC 3066. See also Documentation/DevGuide/Extensions/Localized XML Elements. |
Element /description/dependencies
- Parent element:
<description>
- Children:
- Since: OOo 2.2
Element /description/dependencies/OpenOffice.org-minimal-version
- Parent element:
<dependencies>
- Children: none
- Since: OOo 2.2
Attribute | Description |
---|---|
xmlns:dep
|
The namespace for dependency information (inherited from <description> ) must be defined as
|
dep:name
|
Required. The string “OpenOffice.org value ” (where value is the value of the attribute value).
|
value
|
Required. The required underlying OpenOffice.org version (“2.1”, “2.2”, etc.), starting with OpenOffice.org 2.1. |
Content on this page is licensed under the Public Documentation License (PDL). |