HomefieldOfView | SPi-V dev

Legend

  • required
  • not yet implemented

Navigation

user

<license>

Description

The license node contains the licensing information required to view the tour. Without proper licensing information, the viewer will show fieldOfView.nl branding, and an about box on startup.

The license node should be inside the global meta node of the tour. If no license node is found in the global meta node, the SPi-V engine will try to open a file named 'license.xml' in the same folder as the SPi-V.dcr file, and use the license node in that file.

Syntax

<tour>
  <global>
    <meta>
      <license 
        type="domain" 
        licensee="fieldofview.nl"
        expires="never"
        key="0123456789abcdef0123456789abcdef01" />
      ...
    </meta>
    ...
  <global>
  ...
</tour>

Attributes

  • type
    Specifies the license type:
    • domain
      License that is bound to a single webdomain. Content will play back without branding when played back from this domain, but will revert to show branding from other locations (such as offline)
    • file
      License that is bound to a single XML file. Once blessed with a license, an XML file can undergo only minor changes, or the license will be invalidated.
    For more information about license types, see the licensing page.
  • licensee
    The (company) name you used when you purchuased a license. This name must appear exactly as in the license information provided.
  • expires
    Required for time licenses. The expiry date must appear exactly as in the license information provided when you purchased the license. For other license types, this attribute is ignored.
  • licensee
    The aquired key in the format 0123456789abcdef0123456789abcdef01 (a 34 character, hexadecimal string)

Children

none

History

  • 06-Apr-04: Initial version
  • 09-May-05: Updated descriptions