Template Installation

Help :: Deploying Concerto

Last modified: 05:04 pm on Sep 21, 2011

Template Importer

Concerto comes with a template importer, located in the Admin Panel tab to help system admins import new templates into the system.  Uploading a new template into the system requires 2 files, an XML template descriptor and the template background image.

If you’re looking to import a template into your Concerto installation we have a few available under a Creative Commons Attribution-Noncommercial 3.0 United States License:

Creative Commons License

Template Descriptor

The template descriptor file specifies the template name, width, height, author and fields available. All template descriptors are required to have the following properties: name, width, height.  The height and width field describe the height and width of the template, and should match the size of the image file.   Templates must also have at least on field defined.  Fields must have the following properties: name, type, style, left, top, width, and height.  The type properties describes the type of content that can be displayed in the field, most commonly Text, Ticker, or HTML.  Fields use the left, top, width, and height properties to describe their location on the screen.  The top, left, width, and height properties can be pixel values (integers) or percentages (decimals).  Here’s an example of a template descriptor:

<template>

  <name>Blue Swoosh Neo</name>

  <width>1920</width>

  <height>1080</height>

  <field>

    <name>Time and Date</name>

    <type>Text</type>

    <style>font-weight:bold !important; letter-spacing:.12em !important;</style>

    <left>0.024</left>

    <top>0.885</top>

    <width>0.156</width>

    <height>0.089</height>

  </field>

  <field>

    <name>Graphics</name>

    <type>Graphics</type>

    <style>border: solid 2px #ccc;</style>

    <left>0.025</left>

    <top>0.026</top>

    <width>0.567</width>

    <height>0.77</height>

  </field>

</template>