bigbluebutton-Github/bigbluebutton-client
Mikhail Novosyolov 64fbff1d8c Don't recommend Firefox or Chrome for WebRTC when Puffin is being used
People use Puffin Browser only when they are on a mobile device and have to use
BBB flash client. They cannot use a browser with WebRTC support,
in our case, we in Dumalogiya temporarily disabled HTML5 version
due to problems with sharing webcams across HTML5 and Flash clients and we are
not ready to fully migrate to HTML5 client because it e.g. lacks support
of changing window layouts. So, we want to avoid showing this warning in Puffin Browser.
2019-09-22 00:06:54 +03:00
..
.settings
branding remove unneeded whitespace in ChatTab 2019-03-15 14:08:01 -07:00
build/lib
config remove obsolete deskshare config 2016-08-23 19:48:38 +00:00
html-templateBackup
libs Improve multi-line text PDF export. 2018-07-20 16:21:24 +01:00
locale Locking shared notes from akka-apps up to the Flash client 2019-05-08 20:36:36 +00:00
resources Locking shared notes from akka-apps up to the Flash client 2019-05-08 20:36:36 +00:00
src Don't recommend Firefox or Chrome for WebRTC when Puffin is being used 2019-09-22 00:06:54 +03:00
.actionScriptProperties Compile the master locale within the main application to avoid loading it when the application is launched, in that case we only load the preferred locale if needed. 2017-11-05 15:36:02 +01:00
.flexProperties
.gitignore - no locales to update 2018-06-22 07:28:29 -07:00
.project Compile the master locale within the main application to avoid loading it when the application is launched, in that case we only load the preferred locale if needed. 2017-11-05 15:36:02 +01:00
build.xml - try to wire up message bus 2018-04-23 15:49:07 -07:00
LICENSE.txt move into trunk to use as development 2008-11-05 14:52:33 +00:00
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"/>