34c802ef27
add a version number to response if you call /bigbluebutton/api with no parameters. this does not require a checksum since the checksum generation differs between certain versions we still need to change the build process to update the version in bigbluebutton.properties for each built version i'll leave this part to Fred. I'd suggest using the following versioning process: 0.7-SNAPSHOT - for builds between releases 0.7-final - for release build versions Owner: ffdixon Status: Started git-svn-id: http://bigbluebutton.googlecode.com/svn/trunk@4322 af16638f-c34d-0410-8cfa-b39d5352b314
99 lines
4.4 KiB
Properties
99 lines
4.4 KiB
Properties
#
|
|
# These are the default properites for BigBlueButton Web application
|
|
|
|
dataSource.url=jdbc:mysql://localhost/bigbluebutton_dev
|
|
dataSource.username=bbb
|
|
dataSource.password=secret
|
|
dataSource.driverClassName =com.mysql.jdbc.Driver
|
|
|
|
#----------------------------------------------------
|
|
# Directory where BigBlueButton stores uploaded slides
|
|
presentationDir=/var/bigbluebutton
|
|
|
|
#----------------------------------------------------
|
|
# Directory where SWFTOOLS (pdf2swf, jpeg2swf, png2swf) are located
|
|
swfToolsDir=/bin
|
|
|
|
#----------------------------------------------------
|
|
# Directory where ImageMagick's convert executable is located
|
|
imageMagickDir=/usr/bin
|
|
|
|
#----------------------------------------------------
|
|
# Use fullpath to ghostscript executable since the exec names are different
|
|
# for each platform.
|
|
ghostScriptExec=/usr/bin/gs
|
|
|
|
#----------------------------------------------------
|
|
# Fonts directory passed into PDF2SWF to support highlighting of texts
|
|
# in the SWF slides.
|
|
fontsDir=/usr/share/fonts
|
|
|
|
#----------------------------------------------------
|
|
# This is a workaround for a problem converting PDF files, referenced at
|
|
# http://groups.google.com/group/comp.lang.postscript/browse_thread/thread/c2e264ca76534ce0?pli=1
|
|
noPdfMarkWorkaround=/etc/bigbluebutton/nopdfmark.ps
|
|
|
|
#----------------------------------------------------
|
|
# These will be copied in cases where the conversion process
|
|
# fails to generate a slide from the uploaded presentation
|
|
BLANK_SLIDE=/var/bigbluebutton/blank/blank-slide.swf
|
|
BLANK_THUMBNAIL=/var/bigbluebutton/blank/blank-thumb.png
|
|
|
|
#----------------------------------------------------
|
|
# Number of minutes the conversion should take. If it takes
|
|
# more than this time, cancel the conversion process.
|
|
maxConversionTime=5
|
|
|
|
#----------------------------------------------------
|
|
# Maximum number of pages allowed for an uploaded presentation (default 100).
|
|
maxNumPages=100
|
|
|
|
#----------------------------------------------------
|
|
# Default dial access number
|
|
defaultDialAccessNumber=613-555-1234
|
|
|
|
#----------------------------------------------------
|
|
# Default welcome message to display when the participant joins the web
|
|
# conference. This is only used for the old scheduling which will be
|
|
# removed in the future. Use the API to create a conference.
|
|
defaultWelcomeMessage=<br>Welcome to this BigBlueButton Demo Server.<br><br>For help using BigBlueButton <a href="event:http://www.bigbluebutton.org/content/videos"><u>check out these videos</u></a>.<br><br>
|
|
|
|
#----------------------------------------------------
|
|
# Inject values into grails service beans
|
|
beans.presentationService.presentationDir=${presentationDir}
|
|
beans.dynamicConferenceService.serviceEnabled=true
|
|
beans.dynamicConferenceService.apiVersion=0.7-SNAPSHOT
|
|
beans.dynamicConferenceService.minutesElapsedBeforeMeetingExpiration=60
|
|
beans.dynamicConferenceService.securitySalt=639259d4-9dd8-4b25-bf01-95f9567eaf4b
|
|
beans.dynamicConferenceService.defaultWelcomeMessage=${defaultWelcomeMessage}
|
|
beans.dynamicConferenceService.defaultDialAccessNumber=${defaultDialAccessNumber}
|
|
|
|
#----------------------------------------------------
|
|
# 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.
|
|
bigbluebutton.web.serverURL=http://192.168.0.120
|
|
|
|
#----------------------------------------------------
|
|
# URL where the logged-out participant will be redirected after sign-out.
|
|
# If commented-out, it returns to bigbluebutton.web.serverURL
|
|
#bigbluebutton.web.logoutURL=http://www.bigbluebutton.org
|
|
|
|
#------------------------------------------------------
|
|
# Setting to enable the old scheduling mechanism. This is temporary
|
|
# as we will be moving to use the API later.
|
|
#
|
|
beans.schedulingService.schedulingServiceEnabled=false
|
|
|
|
#------------------------------------------------------
|
|
# These properties are used to test the conversion process.
|
|
# Conference name folder in ${presentationDir} (see above)
|
|
beans.presentationService.testConferenceMock=conference-mock-default
|
|
beans.dynamicConferenceService.testConferenceMock=conference-mock-default
|
|
# Conference room folder in ${presentationDir}/${testConferenceMock}
|
|
beans.presentationService.testRoomMock=conference-mock-default
|
|
# Uploaded presentation name
|
|
beans.presentationService.testPresentationName=appkonference
|
|
# Uploaded presentation file
|
|
beans.presentationService.testUploadedPresentation=appkonference.txt
|
|
# Test voiceBridge number
|
|
beans.dynamicConferenceService.testVoiceBridge=99999 |