2009-06-03 06:23:56 +08:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2009-12-20 02:01:09 +08:00
|
|
|
<!-- BigBlueButton Client build.xml for use by Hudson builds. -->
|
2010-06-10 05:41:30 +08:00
|
|
|
<project name="BigBlueButton Client" basedir="." default="clean-build-all" >
|
2009-06-03 06:23:56 +08:00
|
|
|
<property environment="env" />
|
|
|
|
<property name="FLEX_HOME" value="${env.FLEX_HOME}" />
|
2010-06-10 05:41:30 +08:00
|
|
|
<property name="LOCALE_DIR" value="${FLEX_HOME}/frameworks/locale"/>
|
|
|
|
<property name="BASE_DIR" value="${basedir}" />
|
|
|
|
<property name="RESOURCES_DIR" value="${BASE_DIR}/resources" />
|
|
|
|
<property name="SRC_DIR" value="${BASE_DIR}/src" />
|
|
|
|
|
|
|
|
<property name="OUTPUT_DIR" value="${BASE_DIR}/bin" />
|
2009-06-03 06:23:56 +08:00
|
|
|
<taskdef resource="flexTasks.tasks" classpath="${FLEX_HOME}/ant/lib/flexTasks.jar" />
|
2010-05-13 11:53:39 +08:00
|
|
|
|
2010-06-10 05:41:30 +08:00
|
|
|
<!-- Declare module names here -->
|
|
|
|
<property name="BBB_MAIN" value="BigBlueButton" />
|
|
|
|
<property name="CHAT" value="ChatModule" />
|
|
|
|
<property name="VIEWERS" value="ViewersModule" />
|
|
|
|
<property name="LISTENERS" value="ListenersModule" />
|
|
|
|
<property name="PRESENT" value="PresentModule" />
|
|
|
|
<property name="DESKSHARE" value="DeskShareModule" />
|
|
|
|
<property name="DESKSHARE_SA" value="DeskshareStandalone" />
|
|
|
|
<property name="PHONE" value="PhoneModule" />
|
|
|
|
<property name="VIDEO" value="VideoconfModule" />
|
|
|
|
<property name="HIGHLIGHTER" value="HighlighterModule" />
|
|
|
|
<property name="DYN_INFO" value="DynamicInfoModule" />
|
2010-06-04 02:31:37 +08:00
|
|
|
|
2010-06-10 05:41:30 +08:00
|
|
|
<xmlproperty file="${SRC_DIR}/conf/locales.xml" collapseAttributes="true"/>
|
|
|
|
<target name="init-ant-contrib">
|
|
|
|
<property name="ant-contrib.jar" location="${BASE_DIR}/build/lib/ant-contrib-0.6.jar"/>
|
|
|
|
<taskdef resource="net/sf/antcontrib/antcontrib.properties" classpath="${ant-contrib.jar}"/>
|
2010-06-04 02:31:37 +08:00
|
|
|
</target>
|
|
|
|
|
2010-06-10 05:41:30 +08:00
|
|
|
<target name="localization" depends="init-ant-contrib">
|
|
|
|
<echo message="Parsing ${SRC_DIR}/conf/locales.xml for supported locales"/>
|
|
|
|
<echo message="Supported locales ${locales.locale.code}"/>
|
|
|
|
<foreach list="${locales.locale.code}" target="build-locale" param="supportedlocale" delimiter=","/>
|
|
|
|
</target>
|
|
|
|
|
|
|
|
<target name="build-locale">
|
|
|
|
<echo message="Building ${supportedlocale}"/>
|
|
|
|
<available file="${LOCALE_DIR}/${supportedlocale}" type="dir" property="locale.dir.present"/>
|
|
|
|
<if>
|
|
|
|
<equals arg1="${locale.dir.present}" arg2="true"/>
|
|
|
|
<then>
|
|
|
|
<echo message="No need to copy ${LOCALE_DIR}/${supportedlocale}"/>
|
|
|
|
</then>
|
|
|
|
<else>
|
|
|
|
<echo message="Need to copy ${LOCALE_DIR}/${supportedlocale}"/>
|
|
|
|
<exec dir="${BASE_DIR}" vmlauncher="true" executable="copylocale">
|
|
|
|
<arg value="en_US"/>
|
|
|
|
<arg value="${supportedlocale}"/>
|
|
|
|
</exec>
|
|
|
|
</else>
|
|
|
|
</if>
|
|
|
|
<compileLocale locale="${supportedlocale}" />
|
|
|
|
</target>
|
|
|
|
|
|
|
|
<macrodef name="compileLocale" description="Compiles the Resource package for the given locale">
|
|
|
|
<attribute name="locale" default="en_US"/>
|
|
|
|
<sequential>
|
|
|
|
<!--
|
|
|
|
Create the Flex Home directory for the language in question.
|
|
|
|
This is necessary to compensate for a bug in pre-3.2 releases of
|
|
|
|
mxmlc.
|
|
|
|
|
|
|
|
<mkdir dir="${FLEX_HOME}/frameworks/locale/@{locale}"/>-->
|
|
|
|
|
|
|
|
<!-- Invoke MXMLC -->
|
|
|
|
<mxmlc output="${OUTPUT_DIR}/locale/@{locale}_resources.swf">
|
|
|
|
<locale>@{locale}</locale>
|
|
|
|
<source-path path-element="locale/{locale}"/>
|
|
|
|
<include-resource-bundles>bbbResources</include-resource-bundles>
|
|
|
|
<source-path path-element="${FLEX_HOME}/frameworks"/>
|
|
|
|
</mxmlc>
|
|
|
|
</sequential>
|
|
|
|
</macrodef>
|
2009-08-04 22:04:06 +08:00
|
|
|
|
2010-06-10 05:41:30 +08:00
|
|
|
<target name="build-bbb-main" description="Compile BigBlueButton Main">
|
|
|
|
<build-module src="${SRC_DIR}" target="${BBB_MAIN}" />
|
2009-06-03 06:23:56 +08:00
|
|
|
|
2010-06-10 05:41:30 +08:00
|
|
|
<echo message="Copying common assets for BBB Main" />
|
2009-06-03 06:23:56 +08:00
|
|
|
<copy todir="${OUTPUT_DIR}/org/bigbluebutton/common/assets/images" >
|
2010-06-10 05:41:30 +08:00
|
|
|
<fileset dir="${BASE_DIR}/src/org/bigbluebutton/common/assets/images/" />
|
|
|
|
</copy>
|
|
|
|
</target>
|
|
|
|
|
|
|
|
<target name="build-chat" description="Compile Chat Module">
|
|
|
|
<build-module src="${SRC_DIR}" target="${CHAT}" />
|
|
|
|
</target>
|
|
|
|
|
|
|
|
<target name="build-viewers" description="Compile Viewers Module">
|
|
|
|
<build-module src="${SRC_DIR}" target="${CHAT}" />
|
|
|
|
</target>
|
|
|
|
|
|
|
|
<target name="build-listeners" description="Compile Listeners Module">
|
|
|
|
<build-module src="${SRC_DIR}" target="${LISTENERS}" />
|
|
|
|
|
|
|
|
<echo message="Copying common assets for Listeners Module" />
|
2009-06-03 06:23:56 +08:00
|
|
|
<copy todir="${OUTPUT_DIR}/org/bigbluebutton/modules/listeners/view/assets/images/" >
|
2010-06-10 05:41:30 +08:00
|
|
|
<fileset dir="${BASE_DIR}/src/org/bigbluebutton/modules/listeners/view/assets/images/" />
|
|
|
|
</copy>
|
|
|
|
</target>
|
|
|
|
|
|
|
|
<target name="build-present" description="Compile Present Module">
|
|
|
|
<build-module src="${SRC_DIR}" target="${PRESENT}" />
|
|
|
|
</target>
|
2009-12-10 04:57:45 +08:00
|
|
|
|
2010-06-10 05:41:30 +08:00
|
|
|
<target name="build-deskshare-standalone" depends="build-deskshare" description="Compile Deskshare Standalone Module">
|
|
|
|
<build-module src="${SRC_DIR}" target="${DESKSHARE_SA}" />
|
|
|
|
</target>
|
|
|
|
|
|
|
|
<target name="build-deskshare" description="Compile Deskshare Module">
|
|
|
|
<build-module src="${SRC_DIR}" target="${DESKSHARE}" />
|
|
|
|
<echo message="Copying deskshare applet for Deskshare Module" />
|
|
|
|
<copy file="${RESOURCES_DIR}/bbb-deskshare-applet-0.64.jar" todir="${OUTPUT_DIR}"/>
|
|
|
|
</target>
|
|
|
|
|
|
|
|
<target name="build-phone" description="Compile Phone Module">
|
|
|
|
<build-module src="${SRC_DIR}" target="${PHONE}" />
|
2009-06-26 02:52:04 +08:00
|
|
|
|
2010-06-10 05:41:30 +08:00
|
|
|
<echo message="Copying assets for Phone Module" />
|
|
|
|
<copy todir="${OUTPUT_DIR}/org/bigbluebutton/modules/phone/views/assets/images/" >
|
|
|
|
<fileset dir="${BASE_DIR}/src/org/bigbluebutton/modules/phone/views/assets/images/" />
|
|
|
|
</copy>
|
|
|
|
</target>
|
|
|
|
|
|
|
|
<target name="build-video" description="Compile Video Module">
|
|
|
|
<build-module src="${SRC_DIR}" target="${VIDEO}" />
|
|
|
|
</target>
|
|
|
|
|
|
|
|
<target name="build-highlighter" description="Compile Highlighter Module">
|
|
|
|
<build-module src="${SRC_DIR}" target="${HIGHLIGHTER}" />
|
|
|
|
</target>
|
|
|
|
|
|
|
|
<target name="build-dyn" description="Compile Dynamic Info Module">
|
|
|
|
<build-module src="${SRC_DIR}" target="${DYN_INFO}" />
|
|
|
|
</target>
|
|
|
|
|
|
|
|
<!-- just a grouping of modules to compile -->
|
|
|
|
<target name="build-main-chat-viewers-listeners-present"
|
|
|
|
depends="build-bbb-main, build-chat, build-viewers, build-listeners, build-present"
|
|
|
|
description="Compile main, chat, viewers, listeners, present modules">
|
|
|
|
</target>
|
|
|
|
|
|
|
|
<!-- just a grouping of modules to compile -->
|
|
|
|
<target name="build-deskshare-phone-video-highlighter-dyn"
|
|
|
|
depends="build-deskshare-standalone, build-phone, build-video, build-highlighter, build-dyn"
|
|
|
|
description="Compile deskshare, phone, video, highlighter, dynamic info modules">
|
|
|
|
</target>
|
|
|
|
|
|
|
|
<macrodef name="build-module">
|
|
|
|
<attribute name="target" description="Module to compile" />
|
|
|
|
<attribute name="flex" default="${FLEX_HOME}" description="Location of the Flex install." />
|
|
|
|
<attribute name="app" default="."/>
|
|
|
|
<attribute name="src" default="${SRC_DIR}" description="Path to the module to compile" />
|
|
|
|
<sequential>
|
|
|
|
<mxmlc file="@{src}/@{target}.mxml" output="${OUTPUT_DIR}/@{target}.swf" debug="false">
|
|
|
|
<load-config filename="@{flex}/frameworks/flex-config.xml" />
|
|
|
|
<source-path path-element="@{flex}/frameworks" />
|
|
|
|
<compiler.library-path dir="@{flex}/frameworks" append="true">
|
|
|
|
<include name="libs" />
|
|
|
|
<include name="../bundles/{locale}" />
|
|
|
|
</compiler.library-path>
|
|
|
|
|
|
|
|
<compiler.library-path dir="@{app}" append="true">
|
|
|
|
<include name="libs" />
|
|
|
|
<include name="libs/generated" />
|
|
|
|
</compiler.library-path>
|
|
|
|
|
|
|
|
<default-size width="500" height="600" />
|
|
|
|
</mxmlc>
|
|
|
|
</sequential>
|
|
|
|
</macrodef>
|
2009-06-26 03:22:00 +08:00
|
|
|
|
2010-06-10 05:41:30 +08:00
|
|
|
<target name="compile-bbb-dev"
|
|
|
|
depends="build-main-chat-viewers-listeners-present, build-deskshare-phone-video-highlighter-dyn, copy-resource-files"
|
|
|
|
description="Compiling the BBB without copying config.xml">
|
2009-06-03 06:23:56 +08:00
|
|
|
</target>
|
2009-11-04 11:52:17 +08:00
|
|
|
|
2010-06-10 05:41:30 +08:00
|
|
|
<target name="copy-resource-files">
|
|
|
|
<copy todir="${OUTPUT_DIR}/conf" >
|
|
|
|
<fileset dir="${BASE_DIR}/src/conf" />
|
|
|
|
</copy>
|
|
|
|
|
|
|
|
<copy todir="${OUTPUT_DIR}/swfobject/" >
|
|
|
|
<fileset dir="${BASE_DIR}/src/swfobject/" />
|
|
|
|
</copy>
|
|
|
|
<copy file="${RESOURCES_DIR}/BigBlueButton.html" todir="${OUTPUT_DIR}" overwrite="true"/>
|
|
|
|
<copy file="${RESOURCES_DIR}/DeskshareStandalone.html" todir="${OUTPUT_DIR}" overwrite="true"/>
|
|
|
|
<copy file="${RESOURCES_DIR}/bbb.gif" todir="${OUTPUT_DIR}" overwrite="true"/>
|
|
|
|
|
|
|
|
</target>
|
|
|
|
|
2009-11-04 11:52:17 +08:00
|
|
|
<target name="check-config-xml">
|
|
|
|
<available file="/var/www/bigbluebutton/client/conf/config.xml" property="config-xml.present"/>
|
|
|
|
</target>
|
|
|
|
|
|
|
|
<target name="copy-config-xml" depends="check-config-xml" if="config-xml.present">
|
|
|
|
<echo message="Updating config.xml from /var/www/bigbluebutton/client/conf/config.xml" />
|
|
|
|
<copy file="/var/www/bigbluebutton/client/conf/config.xml" todir="${OUTPUT_DIR}/conf" />
|
|
|
|
</target>
|
2010-01-19 06:13:39 +08:00
|
|
|
|
2010-06-10 05:41:30 +08:00
|
|
|
<target name="generate-html-wrapper">
|
2009-06-03 06:23:56 +08:00
|
|
|
<html-wrapper
|
|
|
|
title="BigBlueButton"
|
|
|
|
file="BigBlueButton.html"
|
|
|
|
height="100%"
|
|
|
|
width="100%"
|
|
|
|
bgcolor="grey"
|
|
|
|
application="BBB"
|
|
|
|
swf="BigBlueButton"
|
2010-06-10 05:41:30 +08:00
|
|
|
version-major="10"
|
2009-06-03 06:23:56 +08:00
|
|
|
version-minor="0"
|
|
|
|
version-revision="0"
|
|
|
|
history="true"
|
2010-05-06 22:26:06 +08:00
|
|
|
template="express-installation"
|
2009-06-03 06:23:56 +08:00
|
|
|
output="${OUTPUT_DIR}"
|
|
|
|
/>
|
|
|
|
</target>
|
|
|
|
|
|
|
|
<target name="clean">
|
|
|
|
<delete dir="${OUTPUT_DIR}" />
|
|
|
|
</target>
|
|
|
|
|
2010-06-10 05:41:30 +08:00
|
|
|
<target name="clean-build-bbb" depends="clean, generate-html-wrapper" description="Build BBB client skipping compiling of locales"/>
|
2009-06-03 06:23:56 +08:00
|
|
|
|
2010-06-10 05:41:30 +08:00
|
|
|
<target name="clean-build-all" depends="clean, localization" description="Build BBB client including locales"/>
|
|
|
|
|
2010-01-19 06:13:39 +08:00
|
|
|
|
2009-06-03 06:23:56 +08:00
|
|
|
</project>
|