bigbluebutton-web: Added a footer to welcome message. A disclaimer or copyright signature can be placed here for all the meetings in a server.

This commit is contained in:
jfederico 2013-03-13 15:01:14 -04:00
parent 091ba72f0c
commit f56c4474e6
3 changed files with 11 additions and 2 deletions

View File

@ -77,6 +77,7 @@ defaultDialAccessNumber=613-555-1234
# conference. This is only used for the old scheduling which will be # conference. This is only used for the old scheduling which will be
# removed in the future. Use the API to create a conference. # removed in the future. Use the API to create a conference.
defaultWelcomeMessage=<br>Welcome to <b>%%CONFNAME%%</b>!<br><br>For help on using BigBlueButton see these (short) <a href="event:http://www.bigbluebutton.org/content/videos"><u>tutorial videos</u></a>.<br><br>To join the audio bridge click the headset icon (upper-left hand corner). <b>You can mute yourself in the Listeners window.</b><br> defaultWelcomeMessage=<br>Welcome to <b>%%CONFNAME%%</b>!<br><br>For help on using BigBlueButton see these (short) <a href="event:http://www.bigbluebutton.org/content/videos"><u>tutorial videos</u></a>.<br><br>To join the audio bridge click the headset icon (upper-left hand corner). <b>You can mute yourself in the Listeners window.</b><br>
defaultWelcomeMessageFooter=This BigBlueButton server runs the latest 0.81-dev version. <br><br>For more details about this release visit <a href="http://code.google.com/p/bigbluebutton/wiki/RoadMap" target="_blank"><u>contact us</u></a>.
# Default maximum number of users a meeting can have. # Default maximum number of users a meeting can have.
# Doesn't get enforced yet but is the default value when the create # Doesn't get enforced yet but is the default value when the create
@ -108,7 +109,7 @@ disableRecordingDefault=false
#---------------------------------------------------- #----------------------------------------------------
# This URL is where the BBB client is accessible. When a user sucessfully # This URL is where the BBB client is accessible. When a user sucessfully
# enters a name and password, she is redirected here to load the client. # enters a name and password, she is redirected here to load the client.
bigbluebutton.web.serverURL=http://192.168.0.249 bigbluebutton.web.serverURL=http://192.168.0.158
#---------------------------------------------------- #----------------------------------------------------
# Assign URL where the logged-out participant will be redirected after sign-out. # Assign URL where the logged-out participant will be redirected after sign-out.
@ -127,7 +128,7 @@ defaultAvatarURL=${bigbluebutton.web.serverURL}/client/avatar.png
apiVersion=0.8 apiVersion=0.8
# Salt which is used by 3rd-party apps to authenticate api calls # Salt which is used by 3rd-party apps to authenticate api calls
securitySalt=90ae86441b1211a4cbb3671f369fb031 securitySalt=a106c6cff65f94ad5c846df9e230b480
# Directory where we drop the <meeting-id-recorded>.done file # Directory where we drop the <meeting-id-recorded>.done file
recordStatusDir=/var/bigbluebutton/recording/status/recorded recordStatusDir=/var/bigbluebutton/recording/status/recorded

View File

@ -93,6 +93,7 @@ with BigBlueButton; if not, see <http://www.gnu.org/licenses/>.
<property name="securitySalt" value="${securitySalt}"/> <property name="securitySalt" value="${securitySalt}"/>
<property name="defaultMaxUsers" value="${defaultMaxUsers}"/> <property name="defaultMaxUsers" value="${defaultMaxUsers}"/>
<property name="defaultWelcomeMessage" value="${defaultWelcomeMessage}"/> <property name="defaultWelcomeMessage" value="${defaultWelcomeMessage}"/>
<property name="defaultWelcomeMessageFooter" value="${defaultWelcomeMessageFooter}"/>
<property name="defaultDialAccessNumber" value="${defaultDialAccessNumber}"/> <property name="defaultDialAccessNumber" value="${defaultDialAccessNumber}"/>
<property name="testVoiceBridge" value="${testVoiceBridge}"/> <property name="testVoiceBridge" value="${testVoiceBridge}"/>
<property name="testConferenceMock" value="${testConferenceMock}"/> <property name="testConferenceMock" value="${testConferenceMock}"/>

View File

@ -43,6 +43,7 @@ public class ParamsProcessorUtil {
private String securitySalt; private String securitySalt;
private int defaultMaxUsers = 20; private int defaultMaxUsers = 20;
private String defaultWelcomeMessage; private String defaultWelcomeMessage;
private String defaultWelcomeMessageFooter;
private String defaultDialAccessNumber; private String defaultDialAccessNumber;
private String testVoiceBridge; private String testVoiceBridge;
private String testConferenceMock; private String testConferenceMock;
@ -342,6 +343,8 @@ public class ParamsProcessorUtil {
if (StringUtils.isEmpty(message)) { if (StringUtils.isEmpty(message)) {
welcomeMessage = defaultWelcomeMessage; welcomeMessage = defaultWelcomeMessage;
} }
if( !StringUtils.isEmpty(defaultWelcomeMessageFooter) )
welcomeMessage += "<br><br>" + defaultWelcomeMessageFooter;
return welcomeMessage; return welcomeMessage;
} }
@ -483,6 +486,10 @@ public class ParamsProcessorUtil {
public void setDefaultWelcomeMessage(String defaultWelcomeMessage) { public void setDefaultWelcomeMessage(String defaultWelcomeMessage) {
this.defaultWelcomeMessage = defaultWelcomeMessage; this.defaultWelcomeMessage = defaultWelcomeMessage;
} }
public void setDefaultWelcomeMessageFooter(String defaultWelcomeMessageFooter) {
this.defaultWelcomeMessageFooter = defaultWelcomeMessageFooter;
}
public void setDefaultDialAccessNumber(String defaultDialAccessNumber) { public void setDefaultDialAccessNumber(String defaultDialAccessNumber) {
this.defaultDialAccessNumber = defaultDialAccessNumber; this.defaultDialAccessNumber = defaultDialAccessNumber;