bigbluebutton-Github/bigbluebutton-client
2017-07-17 18:49:58 -07:00
..
.settings implement create or select poll UI 2013-06-26 20:45:10 +00:00
branding Merge tag 'v1.1.0' into 1.1-transcode 2017-06-13 17:44:12 +00:00
build/lib
config remove obsolete deskshare config 2016-08-23 19:48:38 +00:00
html-templateBackup
libs Uncomment showAllChildren and hideAllChildren methods after reverting back updates to flexlib.swc 2017-05-30 22:57:52 +01:00
locale Merge remote-tracking branch 'prlanzarin/1.1-transcode-screenshare-merge' into bigbluebutton/bbb-2.x-mconf 2017-07-11 20:41:38 +00:00
resources Merge branch '2x-transcode-screenshare-merge' of https://github.com/prlanzarin/bigbluebutton-1 into prlanzarin-2x-transcode-screenshare-merge 2017-07-17 18:49:58 -07:00
src Merge branch '2x-transcode-screenshare-merge' of https://github.com/prlanzarin/bigbluebutton-1 into prlanzarin-2x-transcode-screenshare-merge 2017-07-17 18:49:58 -07:00
.actionScriptProperties FreeSWITCH webrtc screenshare 2017-07-11 13:31:56 -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 Keep swf cache for incremental build. 2017-06-13 12:57:16 +01:00
LICENSE.txt
README - try to fix lock settings 2015-09-14 20:18:27 +00:00
transifex.sh - tool to cleanup transifex downloaded files 2014-08-28 14:09:35 -07:00
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"/>