<?xml version="1.0"?>
<!DOCTYPE lrcsml:config-spec PUBLIC
  "-//LogReport.ORG//DTD Lire Report Configuration Specification Markup Language V1.0//EN"
  "http://www.logreport.org/LRCSML/1.0/lrcsml.dtd">
<lrcsml:config-spec xmlns:lrcsml="http://www.logreport.org/LRCSML/">
 
 <!-- This file contains the configuration specification
      for the MyConverter DLF converter.

      It should be installed in <datadir>/lire/config-spec

      The 5 first lines of the file as well and the last line should
      be copied vebatim. The first line says its an XML file. The
      other 3 tells the grammar to which the file is complying and
      the 5th line is the root element of the file. (The last line
      of the file contains the closing element.

      The configuration variables used by the DlfConverter should be
      defined in a record object and named
      <your_dlf_conveter_name>_properties.

  -->

 <lrcsml:record name="myconverter_properties">
  <lrcsml:string name="stuff">
   <lrcsml:summary>Determine some stuff.</lrcsml:summary>
   <lrcsml:description>
    <para>A description of what <varname>stuff</varname> is
     used for.</para>
   </lrcsml:description>
  </lrcsml:string>

  <lrcsml:select name="other">
   <lrcsml:summary>The possible value for other stuff.</lrcsml:summary>
   <lrcsml:description>
    <para>This variable is used to select between different parsing
     algorithm for the MyFormat log format.</para>
   </lrcsml:description>

   <lrcsml:option name="foo">
    <lrcsml:summary>The 'foo' algorithm.</lrcsml:summary>
   </lrcsml:option>

   <lrcsml:option name="bar">
    <lrcsml:summary>The bar algorithm.</lrcsml:summary>
   </lrcsml:option>
   <!-- Default is bar -->
   <lrcml:param name="other" value="bar"/>
  </lrcsml:select>
 </lrcsml:record>

</lrcsml:config-spec>
