Merge pull request #3500 from riadvice/imrpove-flex4-structure

Improve flex4 structure
This commit is contained in:
Chad Pilkey 2016-12-08 11:33:25 -05:00 committed by GitHub
commit 8543c27b45
277 changed files with 35 additions and 45 deletions

View File

@ -1 +0,0 @@
../../common-library/src/main/actionscript/ColorPalette

View File

@ -4,7 +4,7 @@
@namespace libChat "org.bigbluebutton.lib.chat.views.*";
@font-face {
src: url("assets/fonts/SourceSansPro/SourceSansPro-Regular.ttf");
src: url("../../shared/assets/fonts/SourceSansPro/SourceSansPro-Regular.ttf");
fontFamily: SourceSansPro;
fontStyle: normal;
fontWeight: normal;
@ -12,7 +12,7 @@
}
@font-face {
src: url("assets/fonts/SourceSansPro/SourceSansPro-Semibold.ttf");
src: url("../../shared/assets/fonts/SourceSansPro/SourceSansPro-Semibold.ttf");
fontFamily: SourceSansPro;
fontStyle: normal;
fontWeight: bold;
@ -20,7 +20,7 @@
}
@font-face {
src: url("assets/fonts/SourceSansPro/SourceSansPro-Italic.ttf");
src: url("../../shared/assets/fonts/SourceSansPro/SourceSansPro-Italic.ttf");
fontFamily: SourceSansPro;
fontStyle: italic;
fontWeight: normal;
@ -28,7 +28,7 @@
}
@font-face {
src: url("assets/fonts/SourceSansPro/SourceSansPro-Bold.ttf");
src: url("../../shared/assets/fonts/SourceSansPro/SourceSansPro-Bold.ttf");
fontFamily: SourceSansPro;
fontStyle: normal;
fontWeight: heavy;
@ -36,7 +36,7 @@
}
@font-face {
src: url("assets/fonts/SourceSansPro/SourceSansPro-Regular.ttf");
src: url("../../shared/assets/fonts/SourceSansPro/SourceSansPro-Regular.ttf");
fontFamily: SourceSansProMX;
fontStyle: normal;
fontWeight: normal;
@ -44,7 +44,7 @@
}
@font-face {
src: url("assets/fonts/BBBIcons/bbb-icons.ttf");
src: url("../../shared/assets/fonts/BBBIcons/bbb-icons.ttf");
fontFamily: BBBIcons;
fontStyle: normal;
fontWeight: normal;
@ -52,7 +52,7 @@
}
@font-face {
src: url("assets/fonts/BBBIcons/bbb-icons.ttf");
src: url("../../shared/assets/fonts/BBBIcons/bbb-icons.ttf");
fontFamily: BBBIcons;
fontStyle: normal;
fontWeight: bold;

View File

@ -14,7 +14,7 @@
<fx:Script>
<![CDATA[
include "ColorPalette.as"
include "../../shared/ColorPalette.as"
import com.adobe.utils.LocaleUtil;

View File

@ -1 +0,0 @@
../../common-library/src/main/actionscript/assets/

View File

@ -15,8 +15,7 @@ package org.bigbluebutton.air.main.views {
import org.bigbluebutton.air.common.TransitionAnimationEnum;
import org.bigbluebutton.air.main.models.IUISession;
import robotlegs.bender.bundles.mvcs.Mediator;
import org.bigbluebutton.air.main.viewsold.pagesnavigator.IPagesNavigatorView;
import robotlegs.bender.bundles.mvcs.Mediator;
public class PagesNavigatorViewMediator extends Mediator {

View File

@ -1,14 +1,6 @@
package org.bigbluebutton.air.video {
import org.bigbluebutton.air.main.viewsold.ui.videobutton.IVideoButton;
import org.bigbluebutton.air.main.viewsold.ui.videobutton.VideoButtonMediator;
import org.bigbluebutton.air.video.commands.ShareCameraCommand;
import org.bigbluebutton.air.video.views.swapcamera.ISwapCameraButton;
import org.bigbluebutton.air.video.views.swapcamera.SwapCameraMediator;
import org.bigbluebutton.air.video.views.videochat.IVideoChatView;
import org.bigbluebutton.air.video.views.videochat.VideoChatViewMediator;
import org.bigbluebutton.lib.video.commands.CameraQualityCommand;
import org.bigbluebutton.lib.video.commands.CameraQualitySignal;
import org.bigbluebutton.lib.video.commands.ShareCameraSignal;
import robotlegs.bender.extensions.mediatorMap.api.IMediatorMap;

View File

@ -10,6 +10,7 @@ buildscript {
subprojects {
apply plugin: 'gradlefx'
apply plugin: 'flashbuilder'
version = '0.1-SNAPSHOT'
}

View File

@ -2,8 +2,6 @@ package org.bigbluebutton.lib.chat.models {
import mx.collections.ArrayCollection;
import org.osflash.signals.ISignal;
public interface IChatMessagesSession {
function get chats():ArrayCollection;
function set chats(val:ArrayCollection):void;

View File

@ -152,7 +152,7 @@ package org.bigbluebutton.lib.common.services {
protected function netASyncError(event:AsyncErrorEvent):void {
trace(LOG + "Asynchronous code error - " + event.error + " on " + _uri);
trace(event.toString());
trace(event.toString());
sendConnectionFailedSignal(ConnectionFailedEvent.UNKNOWN_REASON);
}

View File

Before

Width:  |  Height:  |  Size: 7.0 KiB

After

Width:  |  Height:  |  Size: 7.0 KiB

View File

Before

Width:  |  Height:  |  Size: 80 KiB

After

Width:  |  Height:  |  Size: 80 KiB

View File

Before

Width:  |  Height:  |  Size: 8.7 KiB

After

Width:  |  Height:  |  Size: 8.7 KiB

View File

Before

Width:  |  Height:  |  Size: 12 KiB

After

Width:  |  Height:  |  Size: 12 KiB

View File

Before

Width:  |  Height:  |  Size: 9.3 KiB

After

Width:  |  Height:  |  Size: 9.3 KiB

View File

Before

Width:  |  Height:  |  Size: 14 KiB

After

Width:  |  Height:  |  Size: 14 KiB

View File

Before

Width:  |  Height:  |  Size: 19 KiB

After

Width:  |  Height:  |  Size: 19 KiB

View File

Before

Width:  |  Height:  |  Size: 17 KiB

After

Width:  |  Height:  |  Size: 17 KiB

View File

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

Before

Width:  |  Height:  |  Size: 1.6 KiB

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

Before

Width:  |  Height:  |  Size: 1.9 KiB

After

Width:  |  Height:  |  Size: 1.9 KiB

View File

Before

Width:  |  Height:  |  Size: 2.4 KiB

After

Width:  |  Height:  |  Size: 2.4 KiB

View File

Before

Width:  |  Height:  |  Size: 2.5 KiB

After

Width:  |  Height:  |  Size: 2.5 KiB

View File

Before

Width:  |  Height:  |  Size: 34 KiB

After

Width:  |  Height:  |  Size: 34 KiB

View File

Before

Width:  |  Height:  |  Size: 3.1 KiB

After

Width:  |  Height:  |  Size: 3.1 KiB

View File

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 3.2 KiB

View File

Before

Width:  |  Height:  |  Size: 3.3 KiB

After

Width:  |  Height:  |  Size: 3.3 KiB

View File

Before

Width:  |  Height:  |  Size: 4.5 KiB

After

Width:  |  Height:  |  Size: 4.5 KiB

View File

Before

Width:  |  Height:  |  Size: 7.2 KiB

After

Width:  |  Height:  |  Size: 7.2 KiB

View File

Before

Width:  |  Height:  |  Size: 6.7 KiB

After

Width:  |  Height:  |  Size: 6.7 KiB

View File

Before

Width:  |  Height:  |  Size: 7.1 KiB

After

Width:  |  Height:  |  Size: 7.1 KiB

View File

Before

Width:  |  Height:  |  Size: 7.4 KiB

After

Width:  |  Height:  |  Size: 7.4 KiB

View File

Before

Width:  |  Height:  |  Size: 6.8 KiB

After

Width:  |  Height:  |  Size: 6.8 KiB

View File

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 3.2 KiB

View File

Before

Width:  |  Height:  |  Size: 1.6 KiB

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

Before

Width:  |  Height:  |  Size: 4.4 KiB

After

Width:  |  Height:  |  Size: 4.4 KiB

View File

Before

Width:  |  Height:  |  Size: 585 B

After

Width:  |  Height:  |  Size: 585 B

View File

Before

Width:  |  Height:  |  Size: 496 B

After

Width:  |  Height:  |  Size: 496 B

View File

Before

Width:  |  Height:  |  Size: 740 B

After

Width:  |  Height:  |  Size: 740 B

View File

Before

Width:  |  Height:  |  Size: 745 B

After

Width:  |  Height:  |  Size: 745 B

View File

Before

Width:  |  Height:  |  Size: 1.0 KiB

After

Width:  |  Height:  |  Size: 1.0 KiB

View File

Before

Width:  |  Height:  |  Size: 1.2 KiB

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

Before

Width:  |  Height:  |  Size: 1.9 KiB

After

Width:  |  Height:  |  Size: 1.9 KiB

View File

Before

Width:  |  Height:  |  Size: 2.8 KiB

After

Width:  |  Height:  |  Size: 2.8 KiB

View File

Before

Width:  |  Height:  |  Size: 1.5 KiB

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

Before

Width:  |  Height:  |  Size: 1.5 KiB

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

Before

Width:  |  Height:  |  Size: 4.3 KiB

After

Width:  |  Height:  |  Size: 4.3 KiB

View File

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

Before

Width:  |  Height:  |  Size: 1.5 KiB

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

Before

Width:  |  Height:  |  Size: 1.5 KiB

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

Before

Width:  |  Height:  |  Size: 2.0 KiB

After

Width:  |  Height:  |  Size: 2.0 KiB

View File

Before

Width:  |  Height:  |  Size: 8.3 KiB

After

Width:  |  Height:  |  Size: 8.3 KiB

View File

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

Before

Width:  |  Height:  |  Size: 2.4 KiB

After

Width:  |  Height:  |  Size: 2.4 KiB

View File

Before

Width:  |  Height:  |  Size: 1.6 KiB

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

Before

Width:  |  Height:  |  Size: 2.3 KiB

After

Width:  |  Height:  |  Size: 2.3 KiB

View File

Before

Width:  |  Height:  |  Size: 1.6 KiB

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

Before

Width:  |  Height:  |  Size: 2.4 KiB

After

Width:  |  Height:  |  Size: 2.4 KiB

View File

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

Before

Width:  |  Height:  |  Size: 8.3 KiB

After

Width:  |  Height:  |  Size: 8.3 KiB

View File

Before

Width:  |  Height:  |  Size: 1.9 KiB

After

Width:  |  Height:  |  Size: 1.9 KiB

View File

Before

Width:  |  Height:  |  Size: 4.2 KiB

After

Width:  |  Height:  |  Size: 4.2 KiB

View File

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

Before

Width:  |  Height:  |  Size: 2.6 KiB

After

Width:  |  Height:  |  Size: 2.6 KiB

View File

Before

Width:  |  Height:  |  Size: 1.2 KiB

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

Before

Width:  |  Height:  |  Size: 2.1 KiB

After

Width:  |  Height:  |  Size: 2.1 KiB

View File

Before

Width:  |  Height:  |  Size: 1.8 KiB

After

Width:  |  Height:  |  Size: 1.8 KiB

View File

Before

Width:  |  Height:  |  Size: 2.5 KiB

After

Width:  |  Height:  |  Size: 2.5 KiB

View File

Before

Width:  |  Height:  |  Size: 1.6 KiB

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

Before

Width:  |  Height:  |  Size: 852 B

After

Width:  |  Height:  |  Size: 852 B

View File

Before

Width:  |  Height:  |  Size: 1.8 KiB

After

Width:  |  Height:  |  Size: 1.8 KiB

View File

Before

Width:  |  Height:  |  Size: 2.7 KiB

After

Width:  |  Height:  |  Size: 2.7 KiB

View File

Before

Width:  |  Height:  |  Size: 1.5 KiB

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

Before

Width:  |  Height:  |  Size: 4.5 KiB

After

Width:  |  Height:  |  Size: 4.5 KiB

View File

Before

Width:  |  Height:  |  Size: 2.9 KiB

After

Width:  |  Height:  |  Size: 2.9 KiB

View File

Before

Width:  |  Height:  |  Size: 2.7 KiB

After

Width:  |  Height:  |  Size: 2.7 KiB

View File

Before

Width:  |  Height:  |  Size: 660 B

After

Width:  |  Height:  |  Size: 660 B

View File

Before

Width:  |  Height:  |  Size: 810 B

After

Width:  |  Height:  |  Size: 810 B

View File

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

Some files were not shown because too many files have changed in this diff Show More