bigbluebutton-Github/bigbluebutton-client
Richard Alam f1e7e7021e
Merge pull request #4781 from capilkey/check-chat-message-parse-fail
Check for failed chat message parse
2017-12-08 11:26:35 -05:00
..
.settings
branding Update font color. 2017-11-21 16:36:31 +01:00
build/lib
config remove obsolete deskshare config 2016-08-23 19:48:38 +00:00
html-templateBackup
libs Remove tooltip from MDIWindow title bar. 2017-07-27 16:48:42 +01:00
locale add a microphone warning for chrome on http 2017-12-05 11:47:37 -08:00
resources Improve bigbluebutton-client/resources/prod/BigBlueButton CSS styles for "altFlash" div. 2017-11-25 18:33:30 +01:00
src Merge pull request #4781 from capilkey/check-chat-message-parse-fail 2017-12-08 11:26:35 -05:00
.actionScriptProperties - try to fix webcam list 2017-07-20 10:09:01 -07:00
.flexProperties
.gitignore - update locales 2017-03-24 19:59:22 +00:00
.project FreeSWITCH webrtc screenshare 2017-07-11 13:31:56 -07:00
build.xml - add new ant locale target 2017-10-09 14:48:29 -07:00
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"/>