summaryrefslogtreecommitdiff
path: root/templates/example/planet.xml
diff options
context:
space:
mode:
authorChristian Pointner <equinox@spreadspace.org>2012-10-17 20:04:58 +0200
committerChristian Pointner <equinox@spreadspace.org>2012-10-17 20:04:58 +0200
commit3b2828e86d0551af3964000b901c684be26d67c9 (patch)
tree876dafbcdd9705fa171a9de0893a08b06c56bd74 /templates/example/planet.xml
parentmoved template parameter to config file (diff)
moved output to output/<format>
Diffstat (limited to 'templates/example/planet.xml')
-rw-r--r--templates/example/planet.xml53
1 files changed, 0 insertions, 53 deletions
diff --git a/templates/example/planet.xml b/templates/example/planet.xml
deleted file mode 100644
index c1633ee..0000000
--- a/templates/example/planet.xml
+++ /dev/null
@@ -1,53 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<planet name="{{ globals.name }}">
-
- <manager name="{{ globals.name }}">
-%% for name, value in globals.manager.items()
-%% if name != 'machine'
- <{{ name }}>{{ value }}</{{ name }}>
-%% endif
-%% endfor
- <component name="manager-bouncer" type="htpasswdcrypt-bouncer">
- <property name="filename">/etc/flumotion/{{ globals.name }}.passwd</property>
- </component>
- </manager>
-
- <atmosphere>
-{% for name, component in atmosphere.items() %}
-{% include '%s.xml' % component.type %}
-{% endfor %}
- </atmosphere>
-
- <flow name="{{ globals.name }}">
-<!-- raw-input, resizing and resampling -->
-{% for name, component in flow['input'].items() %}
-{% include '%s.xml' % component.type %}
-{% endfor %}
-
-<!-- encoding -->
- <!-- audio -->
-{% for name, component in flow['encoder_audio'].items() %}
-{% include '%s.xml' % component.type %}
-{% endfor %}
- <!-- video -->
-{% for name, component in flow['encoder_video'].items() %}
-{% include '%s.xml' % component.type %}
-{% endfor %}
-
-<!-- muxing -->
-{% for name, component in flow['muxer'].items() %}
-{% include '%s.xml' % component.type %}
-{% endfor %}
-
-<!-- repeater -->
-{% for name, component in flow['repeater'].items() %}
-{% include '%s.xml' % component.type %}
-{% endfor %}
-
-<!-- streaming -->
-{% for name, component in flow['streamer'].items() %}
-{% include '%s.xml' % component.type %}
-{% endfor %}
- </flow>
-
-</planet>