bigbluebutton-Github/bigbluebutton-client
Richard Alam 145c40a459 Merge branch 'master' of github.com:bigbluebutton/bigbluebutton into upgrade-red5-nov-22-2016-snapshot
Conflicts:
	akka-bbb-apps/src/main/scala/org/bigbluebutton/core/apps/BreakoutRoomApp.scala
2016-11-24 23:00:56 +00:00
..
.settings
branding first round of accessibility fixes for 1.1 2016-09-22 16:38:34 -04:00
build/lib
config remove obsolete deskshare config 2016-08-23 19:48:38 +00:00
html-templateBackup
libs removing files that should not have been committed 2016-05-02 12:45:25 -07:00
locale - updating latest locales except for zh_TW as it's failing to compile. 2016-11-04 15:47:31 +00:00
resources Merge pull request #3424 from riadvice/logout-on-stop-recording 2016-11-22 13:40:41 -05:00
src Merge branch 'master' of github.com:bigbluebutton/bigbluebutton into upgrade-red5-nov-22-2016-snapshot 2016-11-24 23:00:56 +00:00
.actionScriptProperties Upgrade to Java 8 2016-03-21 20:19:48 +00:00
.flexProperties
.gitignore - pulling locales from transifex (sept 10, 2015) 2015-09-10 15:25:00 +00:00
.project - use spray json to decode messages 2015-11-17 02:11:14 -05:00
build.xml remove old deskshare module and out-dated Java checks 2016-10-12 18:13:02 -04:00
LICENSE.txt
README - try to fix lock settings 2015-09-14 20:18:27 +00:00
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"/>