bigbluebutton-Github/bigbluebutton-client
Pedro Beschorner Marin e55c352815 Merge remote-tracking branch 'mconf/mconf' into pedrobmarin/mconf-fullscreen-video
Conflicts:
	bigbluebutton-client/src/org/bigbluebutton/modules/videoconf/views/UserGraphicHolder.mxml
2017-04-12 13:04:21 +00:00
..
.settings
branding Refactored sharednotes UNDO operation and implemented REDO 2016-10-21 19:33:30 +00:00
build/lib
config
html-templateBackup
libs Use of as3commons-logging-2.7 library to update all the client logging using TraceTarget. 2015-07-20 16:51:04 +01:00
locale Adapting some client labels 2017-02-06 20:53:07 +00:00
resources implement the ability to add artificial remote ICE candidates to the SDP, so we can better handle servers behind NAT (and other situations); extend the /api/stun call in order to retrieve the list of remote ICE candidates from a XML file 2017-03-12 21:45:08 -03:00
src Merge remote-tracking branch 'mconf/mconf' into pedrobmarin/mconf-fullscreen-video 2017-04-12 13:04:21 +00:00
.actionScriptProperties - update jar to latest red5 2015-08-10 21:32:00 +00:00
.flexProperties
.gitignore - pulling locales from transifex (sept 10, 2015) 2015-09-10 15:25:00 +00:00
.project rename bbb-client in .project file for better importing 2015-09-21 14:13:32 -07:00
build.xml Merge remote-tracking branch 'mconf/mconf-live0.7.5' into merging-to-1.0 2016-06-20 16:11:04 +00: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"/>