45 lines
1.5 KiB
XML
45 lines
1.5 KiB
XML
<?xml version="1.0" encoding="ISO-8859-1"?>
|
|
<!--
|
|
Copyright (C) 2014-2020 Ryan Specialty Group, LLC.
|
|
|
|
This file is part of tame-core.
|
|
|
|
tame-core is free software: you can redistribute it and/or modify it
|
|
under the terms of the GNU General Public License as
|
|
published by the Free Software Foundation, either version 3 of the
|
|
License, or (at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
-->
|
|
<package xmlns="http://www.lovullo.com/rater"
|
|
xmlns:c="http://www.lovullo.com/calc"
|
|
core="true"
|
|
desc="Territory data support (used in conjunction with tdat script)">
|
|
|
|
<import package="base" export="true" />
|
|
|
|
|
|
<template name="_terr-code_" desc="Defines a territory code for a given classification">
|
|
<param name="@class@" desc="Classification" />
|
|
<param name="@code@" desc="Territory code" />
|
|
<param name="@generates@" desc="Generator" />
|
|
|
|
<param name="@yields@" desc="Yield var">
|
|
<text>_</text>
|
|
<param-value name="@generates@" />
|
|
</param>
|
|
|
|
|
|
<rate-each class="@class@" yields="@yields@" generates="@generates@" index="k">
|
|
<c:const value="@code@" type="integer" desc="Territory code" />
|
|
</rate-each>
|
|
</template>
|
|
</package>
|
|
|