2017-03-23 17:34:08 +01:00
|
|
|
<application mode="online">
|
|
|
|
|
|
|
|
<name>{{ item.1.webapp_name }}</name>
|
|
|
|
<group>{{ item.1.webapp_group }}</group>
|
|
|
|
<version>{{ item.1.version }}</version>
|
2017-05-09 14:22:19 +02:00
|
|
|
{% if item.1.description is defined %}
|
|
|
|
<description location="{{ item.1.description }}"/>
|
|
|
|
{% endif %}
|
2017-03-23 17:34:08 +01:00
|
|
|
{% if item.1.persistence_location is defined %}
|
|
|
|
<persistence location="{{ item.1.persistence_location }}"/>
|
|
|
|
{% endif %}
|
2017-05-09 14:22:19 +02:00
|
|
|
{% if item.1.exclude_handlers is defined %}
|
2017-05-09 16:22:22 +02:00
|
|
|
{% for eh in item.1.exclude_handlers %}
|
2017-05-09 14:22:19 +02:00
|
|
|
<exclude {{ eh }}</exclude>
|
|
|
|
{% endfor %}
|
|
|
|
{% endif %}
|
2017-03-23 17:34:08 +01:00
|
|
|
|
|
|
|
</application>
|
|
|
|
|