Skip to content
Snippets Groups Projects
Commit 580f9a27 authored by Richard Alam's avatar Richard Alam
Browse files

- create a config.xml template so we can substitute build numbers to create...

- create a config.xml template so we can substitute build numbers to create config.xml. This way, we get around the
caching problem of modules when we have new releases.
parent 8b5b3908
No related branches found
No related tags found
No related merge requests found
<?xml version="1.0" ?>
<config>
<version>VERSION</version>
<help url="http://HOST/help.html"/>
<porttest host="HOST" application="video"/>
<modules>
<module name="ChatModule" url="ChatModule-VERSION.swf"
uri="rtmp://HOST/bigbluebutton"
loadNextModule="ListenersModule"
onUserJoinedEvent="START"
onUserLogoutEvent="STOP"
/>
<module name="ViewersModule" url="ViewersModule-VERSION.swf"
uri="rtmp://HOST/bigbluebutton"
host="chost="http://HOST/bigbluebutton/conference-session/enter"
onAppInitEvent="LOAD" loadNextModule="ChatModule"
onAppStartEvent="START"
onUserLogoutEvent="STOP"
/>
<module name="ListenersModule" url="ListenersModule-VERSION.swf"
uri="rtmp://HOST/bigbluebutton"
recordingHost="http://HOST"
loadNextModule="DeskShareModule"
onUserJoinedEvent="START"
onUserLogoutEvent="STOP"
/>
<module name="DeskShareModule" url="DeskShareModule-VERSION.swf" uri="rtmp://${HOST}/deskShare" onUserJoinedEvent="START" onUserLogoutEvent="STOP" loadNextModule="PhoneModule" />
<module name="PhoneModule" url="PhoneModule.swf"
uri="rtmp://HOST/sip"
onUserJoinedEvent="START"
onUserLogoutEvent="STOP"
loadNextModule="VideoconfModule"
/>
<module name="VideoconfModule" url="VideoconfModule-VERSION.swf"
uri="rtmp://HOST/video"
onUserJoinedEvent="START"
onUserLogoutEvent="STOP"
loadNextModule="PresentModule"
/>
<module name="HighlighterModule" url="HighlighterModule-VERSION.swf"
uri="rtmp://HOST/bigbluebutton"
onUserJoinedEvent="START"
onUserLogoutEvent="STOP"
/>
<module name="PresentModule" url="PresentModule-VERSION.swf"
uri="rtmp://HOST/bigbluebutton"
host="http://HOST"
onUserJoinedEvent="START"
onUserLogoutEvent="STOP"
loadNextModule="HighlighterModule"
/>
<!-- new module in development:
<module name="DynamicInfoModule" url="DynamicInfoModule-VERSION.swf"
uri="rtmp://HOST/bigbluebutton"
host="http://HOST"
infoURL="http://HOST/client/conf/example-info-data.xml?user={userID}&role={role}&meetingID={meetingID}"
onUserJoinedEvent="START"
onUserLogoutEvent="STOP"
/>
-->
</modules>
</config>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment