bigbluebutton-Github/bigbluebutton-client
2015-06-24 16:02:17 +00:00
..
.settings implement create or select poll UI 2013-06-26 20:45:10 +00:00
branding fixed the poll start button css 2015-06-23 15:09:44 -04:00
build/lib
config - forgot to add /fcs/ handler 2012-09-14 19:32:50 +00:00
html-templateBackup Backup before opening red5 up to dev. Still has Line tool. 2012-06-21 23:06:24 -04:00
libs Chat messages can contain XML code and all links starting with http, https, ftp and www are parsed and sent correctly to chat service. 2014-08-06 15:09:44 +01:00
locale Merge branch 'bigbluebutton/master' into 090-new-videodock 2015-04-29 12:10:41 -03:00
resources Merge pull request #637 from maxdoumit/Deskshare-TLS 2015-05-08 10:07:03 -04:00
src - cleanup of unused polling code 2015-06-24 16:02:17 +00:00
.actionScriptProperties - cleanup unneded polling events 2015-06-23 19:34:58 +00:00
.flexProperties - add more polling models 2013-06-19 19:49:02 +00:00
.gitignore - update localization 2014-08-24 11:02:00 -07:00
.project - cleanup unneded polling events 2015-06-23 19:34:58 +00:00
build.xml removed the videodock code which is not used anymore 2015-01-28 21:32:01 -02:00
LICENSE.txt
README Deskshare and webcam publishing included in tab order. Some tweaking required. 2012-11-22 21:43:31 +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.