bigbluebutton-Github/bigbluebutton-client
Anton Georgiev 7d6f3eeb95
Merge pull request #6850 from capilkey/2.2-allow-pc-with-mod
Fix private chat for viewers and allow private chat with moderators
2019-03-04 16:24:07 -05:00
..
.settings
branding Merge pull request #5975 from riadvice/user-typing-feature 2018-09-12 13:43:43 -04:00
build/lib
config
html-templateBackup
libs
locale Merge remote-tracking branch 'bigbluebutton/v2.0.x-release' into merge-2.x-release-into-master 2018-11-01 14:00:54 +01:00
resources Replace double quotes in audio name with single quotes 2019-02-21 12:49:04 -08:00
src Merge pull request #6850 from capilkey/2.2-allow-pc-with-mod 2019-03-04 16:24:07 -05:00
.actionScriptProperties
.flexProperties
.gitignore
.project
build.xml
LICENSE.txt
README
transifex.sh
vm-build.sh

see http://code.google.com/p/bigbluebutton

Developing the client
1. Copy src/conf/config.xml.dev to src/cong/config.xml

Implementing Tab Order:
The default tab order (necessary for accessibility) is hard-coded into these modules and the main toolbars, and is as follows:
	Main Toolbar
	Desktop sharing (if open)
	Webcam publishing (if open)
	Viewers list window
	Listeners list window
	Webcam window
	Presentation window
	Whiteboard toolbar
	Chat window
	Bottom Toolbar

If you want to change the tab order for BigBlueButton , check resources/config.xml.template and it to src/conf/config.xml.
Certain modules must have the baseTabIndex property, and for the default tab order, their values should be as follows:  

	101: DeskShareModule	(Desktop sharing module)
	101: VideoconfModule	(Webcam publishing window)
	201: ViewersModule		(Viewers list window)
	301: ListenersModule	(Listeners list window)
	401: VideodockModule	(Webcam window)
	501: PresentModule		(Presentation window)
	601: WhiteboardModule	(Whiteboard toolbar)
	701: ChatModule			(Chat window)

The 100-value separation guarantees enough space for a sufficient number of elements in each module. The Main Toolbar's
base index is 1, the bottom toolbar's base index is 100,000, but you shouldn't need to change them anyway.
Deskshare and Webcam publishing have the same base index, that is not an error.

Enable logging
    <logging enabled="true" target="server" level="info" uri="192.168.23.44:8090"/>