You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@royale.apache.org by ah...@apache.org on 2017/09/29 07:09:28 UTC

[royale-asjs] branch packaging updated: clean up Royale's copy of Mustella

This is an automated email from the ASF dual-hosted git repository.

aharui pushed a commit to branch packaging
in repository https://gitbox.apache.org/repos/asf/royale-asjs.git


The following commit(s) were added to refs/heads/packaging by this push:
     new 6623355  clean up Royale's copy of Mustella
6623355 is described below

commit 66233552affef48d4eb49a55cd648d0e3bc2e583
Author: Alex Harui <ah...@apache.org>
AuthorDate: Fri Sep 29 00:09:17 2017 -0700

    clean up Royale's copy of Mustella
---
 .../ContinueAfterRuntimeException.ICO              | Bin 1078 -> 0 bytes
 .../ContinueAfterRuntimeException.cpp              | 362 ---------------------
 .../ContinueAfterRuntimeException.dsp              | 140 --------
 .../ContinueAfterRuntimeException.dsw              |  29 --
 .../ContinueAfterRuntimeException.h                |  30 --
 .../ContinueAfterRuntimeException.rc               | 140 --------
 .../flex/ContinueAfterRuntimeException/SMALL.ICO   | Bin 318 -> 0 bytes
 .../flex/ContinueAfterRuntimeException/StdAfx.cpp  |  26 --
 .../flex/ContinueAfterRuntimeException/StdAfx.h    |  52 ---
 .../flex/ContinueAfterRuntimeException/resource.h  |  45 ---
 mustella/src/main/flex/ExcludeList.txt             |   1 -
 mustella/src/main/flex/IncludeList.txt             |   1 -
 mustella/src/main/flex/MobileConfig.as             |  19 ++
 13 files changed, 19 insertions(+), 826 deletions(-)

diff --git a/mustella/src/main/flex/ContinueAfterRuntimeException/ContinueAfterRuntimeException.ICO b/mustella/src/main/flex/ContinueAfterRuntimeException/ContinueAfterRuntimeException.ICO
deleted file mode 100644
index b1afed3..0000000
Binary files a/mustella/src/main/flex/ContinueAfterRuntimeException/ContinueAfterRuntimeException.ICO and /dev/null differ
diff --git a/mustella/src/main/flex/ContinueAfterRuntimeException/ContinueAfterRuntimeException.cpp b/mustella/src/main/flex/ContinueAfterRuntimeException/ContinueAfterRuntimeException.cpp
deleted file mode 100644
index 16e09a9..0000000
--- a/mustella/src/main/flex/ContinueAfterRuntimeException/ContinueAfterRuntimeException.cpp
+++ /dev/null
@@ -1,362 +0,0 @@
-/*
- *
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements.  See the NOTICE file distributed with
- * this work for additional information regarding copyright ownership.
- * The ASF licenses this file to You under the Apache License, Version 2.0
- * (the "License"); you may not use this file except in compliance with
- * the License.  You may obtain a copy of the License at
- *
- *     http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- *
- */
-// ContinueAfterRuntimeException.cpp : Defines the entry point for the application.
-//
-
-#include "stdafx.h"
-#include "resource.h"
-
-#define MAX_LOADSTRING 100
-
-// Global Variables:
-HINSTANCE hInst;								// current instance
-TCHAR szTitle[MAX_LOADSTRING];								// The title bar text
-TCHAR szWindowClass[MAX_LOADSTRING];								// The title bar text
-TCHAR szPlayer[] = "Adobe Flash Player 9";
-TCHAR szPlayer10[] = "Adobe Flash Player 10";
-
-UINT timer;
-
-// Foward declarations of functions included in this code module:
-ATOM				MyRegisterClass(HINSTANCE hInstance);
-BOOL				InitInstance(HINSTANCE, int);
-LRESULT CALLBACK	WndProc(HWND, UINT, WPARAM, LPARAM);
-LRESULT CALLBACK	About(HWND, UINT, WPARAM, LPARAM);
-
-WSADATA wsaData;
-
-hostent* localHost;
-char* localIP;
-struct sockaddr_in sockaddr;
-SOCKADDR connaddr;
-int addrlen = sizeof(connaddr);
-
-int iResult;
-SOCKET ConnectSocket = INVALID_SOCKET;
-SOCKET ListenSocket = INVALID_SOCKET;
-
-
-int APIENTRY WinMain(HINSTANCE hInstance,
-                     HINSTANCE hPrevInstance,
-                     LPSTR     lpCmdLine,
-                     int       nCmdShow)
-{
- 	// TODO: Place code here.
-	MSG msg;
-	HACCEL hAccelTable;
-
-	// Initialize global strings
-	LoadString(hInstance, IDS_APP_TITLE, szTitle, MAX_LOADSTRING);
-	LoadString(hInstance, IDC_CONTINUEAFTERRUNTIMEEXCEPTION, szWindowClass, MAX_LOADSTRING);
-	MyRegisterClass(hInstance);
-
-	// Initialize Winsock
-	iResult = WSAStartup(MAKEWORD(2,2), &wsaData);
-	if (iResult != 0) {
-		return 1;
-	}
-
-	// Perform application initialization:
-	if (!InitInstance (hInstance, nCmdShow)) 
-	{
-		return FALSE;
-	}
-
-	hAccelTable = LoadAccelerators(hInstance, (LPCTSTR)IDC_CONTINUEAFTERRUNTIMEEXCEPTION);
-
-	// Main message loop:
-	while (GetMessage(&msg, NULL, 0, 0)) 
-	{
-		if (!TranslateAccelerator(msg.hwnd, hAccelTable, &msg)) 
-		{
-			TranslateMessage(&msg);
-			DispatchMessage(&msg);
-		}
-	}
-
-	// shutdown the connection since no more data will be sent
-	iResult = shutdown(ListenSocket, SD_BOTH);
-	closesocket(ListenSocket);
-	ListenSocket = INVALID_SOCKET;
-
-	WSACleanup();
-	return msg.wParam;
-}
-
-
-
-//
-//  FUNCTION: MyRegisterClass()
-//
-//  PURPOSE: Registers the window class.
-//
-//  COMMENTS:
-//
-//    This function and its usage is only necessary if you want this code
-//    to be compatible with Win32 systems prior to the 'RegisterClassEx'
-//    function that was added to Windows 95. It is important to call this function
-//    so that the application will get 'well formed' small icons associated
-//    with it.
-//
-ATOM MyRegisterClass(HINSTANCE hInstance)
-{
-	WNDCLASSEX wcex;
-
-	wcex.cbSize = sizeof(WNDCLASSEX); 
-
-	wcex.style			= CS_HREDRAW | CS_VREDRAW;
-	wcex.lpfnWndProc	= (WNDPROC)WndProc;
-	wcex.cbClsExtra		= 0;
-	wcex.cbWndExtra		= 0;
-	wcex.hInstance		= hInstance;
-	wcex.hIcon			= LoadIcon(hInstance, (LPCTSTR)IDI_CONTINUEAFTERRUNTIMEEXCEPTION);
-	wcex.hCursor		= LoadCursor(NULL, IDC_ARROW);
-	wcex.hbrBackground	= (HBRUSH)(COLOR_WINDOW+1);
-	wcex.lpszMenuName	= (LPCSTR)IDC_CONTINUEAFTERRUNTIMEEXCEPTION;
-	wcex.lpszClassName	= szWindowClass;
-	wcex.hIconSm		= LoadIcon(wcex.hInstance, (LPCTSTR)IDI_SMALL);
-
-	return RegisterClassEx(&wcex);
-}
-
-//
-//   FUNCTION: InitInstance(HANDLE, int)
-//
-//   PURPOSE: Saves instance handle and creates main window
-//
-//   COMMENTS:
-//
-//        In this function, we save the instance handle in a global variable and
-//        create and display the main program window.
-//
-BOOL InitInstance(HINSTANCE hInstance, int nCmdShow)
-{
-   HWND hWnd;
-
-   hInst = hInstance; // Store instance handle in our global variable
-
-   hWnd = CreateWindow(szWindowClass, szTitle, WS_OVERLAPPEDWINDOW,
-      CW_USEDEFAULT, 0, CW_USEDEFAULT, 0, NULL, NULL, hInstance, NULL);
-
-   if (!hWnd)
-   {
-      return FALSE;
-   }
-
-   timer = SetTimer(hWnd, 1, 1000, NULL);
-
-	localHost = gethostbyname("");
-	localIP = "127.0.0.1"; //inet_ntoa (*(struct in_addr *)*localHost->h_addr_list);
-
-#ifdef _DEBUG
-	OutputDebugString("Listening on socket ");
-	OutputDebugString(localIP);
-	OutputDebugString("\n");
-#endif
-
-	ShowWindow(hWnd, nCmdShow);
-    UpdateWindow(hWnd);
-
-
-	ZeroMemory( &sockaddr, sizeof(sockaddr) );
-	// Set up the sockaddr structure
-	sockaddr.sin_family = AF_INET;
-	sockaddr.sin_addr.s_addr = inet_addr(localIP);
-	sockaddr.sin_port = htons(2561);
-
-	// Create a SOCKET for connecting to server
-	ListenSocket = socket(AF_INET, SOCK_STREAM, IPPROTO_IP); 
-	if (ListenSocket == INVALID_SOCKET) 
-	{
-		return FALSE;
-	}
-	iResult = bind(ListenSocket, (SOCKADDR *)&sockaddr, sizeof(sockaddr));
-	if (iResult == SOCKET_ERROR) 
-	{
-		closesocket(ListenSocket);
-		ListenSocket = INVALID_SOCKET;
-		return FALSE;
-	}
-	iResult = listen(ListenSocket, 1);
-	if (iResult == SOCKET_ERROR) 
-	{
-		closesocket(ListenSocket);
-		ListenSocket = INVALID_SOCKET;
-		return FALSE;
-	}
-
-   WSAAsyncSelect(ListenSocket, hWnd, EM_SETSEL, FD_CLOSE);
-
-   return TRUE;
-}
-
-void CheckForExceptionDialog(HWND hWnd)
-{
-	hWnd = GetWindow(hWnd, GW_HWNDFIRST);
-	while (hWnd)
-	{
-		char szTitle[1024];
-		GetWindowText(hWnd, szTitle, 256);
-		if (lstrcmp(szTitle, szPlayer) == 0 || lstrcmp(szTitle, szPlayer10) == 0)
-		{
-			HWND hDlg = hWnd; 
-			HWND hChild = GetWindow(hWnd, GW_CHILD);
-			char szError[1024];
-			szError[0] = '\0';
-			HWND hButton = (HWND)INVALID_HANDLE_VALUE;
-			LONG idButton = 0;
-			while (hChild)
-			{
-				GetWindowText(hChild, szTitle, 1024);
-				if (lstrcmp(szTitle, "&Continue") == 0)
-				{
-					idButton = GetWindowLong(hChild, GWL_ID);
-					hButton = hChild;
-				}
-				else 
-				{
-					char szClassName[256];
-					GetClassName(hChild, szClassName, 256);
-					if (lstrcmp(szClassName, "Edit") == 0)
-					{
-						SendMessage(hChild, WM_GETTEXT, MAKELONG(LOWORD(1024), 0), (LONG)szError);
-					}
-				}
-				hChild = GetWindow(hChild, GW_HWNDNEXT);
-			}
-			if (hButton != INVALID_HANDLE_VALUE)
-			{
-				if (ConnectSocket != INVALID_SOCKET)
-				{
-					// Send an initial buffer
-					iResult = send( ConnectSocket, szError, (int)strlen(szError), 0 );
-					if (iResult == SOCKET_ERROR) 
-					{
-#ifdef _DEBUG
-						OutputDebugString("Error sending to socket\n");
-#endif
-						closesocket(ConnectSocket);
-						ConnectSocket = INVALID_SOCKET;
-						return;
-					}
-#ifdef _DEBUG
-					else
-						OutputDebugString(szError);
-#endif
-
-				}
-
-				SendMessage(hDlg, WM_COMMAND, MAKELONG(LOWORD(idButton), BN_CLICKED), (LONG)hButton);
-
-				return;
-			}
-		}
-		hWnd = GetWindow(hWnd, GW_HWNDNEXT);
-	}
-}
-
-//
-//  FUNCTION: WndProc(HWND, unsigned, WORD, LONG)
-//
-//  PURPOSE:  Processes messages for the main window.
-//
-//  WM_COMMAND	- process the application menu
-//  WM_PAINT	- Paint the main window
-//  WM_DESTROY	- post a quit message and return
-//
-//
-LRESULT CALLBACK WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
-{
-	int wmId, wmEvent;
-	PAINTSTRUCT ps;
-	HDC hdc;
-	TCHAR szHello[MAX_LOADSTRING];
-	LoadString(hInst, IDS_HELLO, szHello, MAX_LOADSTRING);
-
-	switch (message) 
-	{
-		case WM_COMMAND:
-			wmId    = LOWORD(wParam); 
-			wmEvent = HIWORD(wParam); 
-			// Parse the menu selections:
-			switch (wmId)
-			{
-				case IDM_ABOUT:
-				   DialogBox(hInst, (LPCTSTR)IDD_ABOUTBOX, hWnd, (DLGPROC)About);
-				   break;
-				case IDM_EXIT:
-				   DestroyWindow(hWnd);
-				   break;
-				default:
-				   return DefWindowProc(hWnd, message, wParam, lParam);
-			}
-			break;
-		case WM_PAINT:
-			hdc = BeginPaint(hWnd, &ps);
-			// TODO: Add any drawing code here...
-			RECT rt;
-			GetClientRect(hWnd, &rt);
-			if (localIP)
-				DrawText(hdc, localIP, strlen(localIP), &rt, DT_CENTER);
-			EndPaint(hWnd, &ps);
-			break;
-		case WM_TIMER:
-			if (ConnectSocket == INVALID_SOCKET)
-			{
-				ConnectSocket = accept(ListenSocket, &connaddr, &addrlen);
-				if (ConnectSocket != INVALID_SOCKET)
-				{
-#ifdef _DEBUG
-						OutputDebugString("Connected to socket\n");
-#endif
-				}
-			}
-			CheckForExceptionDialog(hWnd);
-			break;
-		case WM_DESTROY:
-			PostQuitMessage(0);
-			break;
-		case EM_SETSEL:
-			ConnectSocket = INVALID_SOCKET;
-			break;
-		default:
-			return DefWindowProc(hWnd, message, wParam, lParam);
-   }
-   return 0;
-}
-
-// Mesage handler for about box.
-LRESULT CALLBACK About(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam)
-{
-	switch (message)
-	{
-		case WM_INITDIALOG:
-				return TRUE;
-
-		case WM_COMMAND:
-			if (LOWORD(wParam) == IDOK || LOWORD(wParam) == IDCANCEL) 
-			{
-				EndDialog(hDlg, LOWORD(wParam));
-				return TRUE;
-			}
-			break;
-	}
-    return FALSE;
-}
-
diff --git a/mustella/src/main/flex/ContinueAfterRuntimeException/ContinueAfterRuntimeException.dsp b/mustella/src/main/flex/ContinueAfterRuntimeException/ContinueAfterRuntimeException.dsp
deleted file mode 100644
index 93d2a67..0000000
--- a/mustella/src/main/flex/ContinueAfterRuntimeException/ContinueAfterRuntimeException.dsp
+++ /dev/null
@@ -1,140 +0,0 @@
-# Microsoft Developer Studio Project File - Name="ContinueAfterRuntimeException" - Package Owner=<4>
-# Microsoft Developer Studio Generated Build File, Format Version 6.00
-# ** DO NOT EDIT **
-
-# TARGTYPE "Win32 (x86) Application" 0x0101
-
-CFG=ContinueAfterRuntimeException - Win32 Debug
-!MESSAGE This is not a valid makefile. To build this project using NMAKE,
-!MESSAGE use the Export Makefile command and run
-!MESSAGE 
-!MESSAGE NMAKE /f "ContinueAfterRuntimeException.mak".
-!MESSAGE 
-!MESSAGE You can specify a configuration when running NMAKE
-!MESSAGE by defining the macro CFG on the command line. For example:
-!MESSAGE 
-!MESSAGE NMAKE /f "ContinueAfterRuntimeException.mak" CFG="ContinueAfterRuntimeException - Win32 Debug"
-!MESSAGE 
-!MESSAGE Possible choices for configuration are:
-!MESSAGE 
-!MESSAGE "ContinueAfterRuntimeException - Win32 Release" (based on "Win32 (x86) Application")
-!MESSAGE "ContinueAfterRuntimeException - Win32 Debug" (based on "Win32 (x86) Application")
-!MESSAGE 
-
-# Begin Project
-# PROP AllowPerConfigDependencies 0
-# PROP Scc_ProjName ""
-# PROP Scc_LocalPath ""
-CPP=cl.exe
-MTL=midl.exe
-RSC=rc.exe
-
-!IF  "$(CFG)" == "ContinueAfterRuntimeException - Win32 Release"
-
-# PROP BASE Use_MFC 0
-# PROP BASE Use_Debug_Libraries 0
-# PROP BASE Output_Dir "Release"
-# PROP BASE Intermediate_Dir "Release"
-# PROP BASE Target_Dir ""
-# PROP Use_MFC 0
-# PROP Use_Debug_Libraries 0
-# PROP Output_Dir "Release"
-# PROP Intermediate_Dir "Release"
-# PROP Ignore_Export_Lib 0
-# PROP Target_Dir ""
-# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /Yu"stdafx.h" /FD /c
-# ADD CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /Yu"stdafx.h" /FD /c
-# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32
-# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32
-# ADD BASE RSC /l 0x409 /d "NDEBUG"
-# ADD RSC /l 0x409 /d "NDEBUG"
-BSC32=bscmake.exe
-# ADD BASE BSC32 /nologo
-# ADD BSC32 /nologo
-LINK32=link.exe
-# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /machine:I386
-# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib ws2_32.lib /nologo /subsystem:windows /machine:I386
-
-!ELSEIF  "$(CFG)" == "ContinueAfterRuntimeException - Win32 Debug"
-
-# PROP BASE Use_MFC 0
-# PROP BASE Use_Debug_Libraries 1
-# PROP BASE Output_Dir "Debug"
-# PROP BASE Intermediate_Dir "Debug"
-# PROP BASE Target_Dir ""
-# PROP Use_MFC 0
-# PROP Use_Debug_Libraries 1
-# PROP Output_Dir "Debug"
-# PROP Intermediate_Dir "Debug"
-# PROP Ignore_Export_Lib 0
-# PROP Target_Dir ""
-# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /Yu"stdafx.h" /FD /GZ /c
-# ADD CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /Yu"stdafx.h" /FD /GZ /c
-# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32
-# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32
-# ADD BASE RSC /l 0x409 /d "_DEBUG"
-# ADD RSC /l 0x409 /d "_DEBUG"
-BSC32=bscmake.exe
-# ADD BASE BSC32 /nologo
-# ADD BSC32 /nologo
-LINK32=link.exe
-# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /debug /machine:I386 /pdbtype:sept
-# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib ws2_32.lib /nologo /subsystem:windows /debug /machine:I386 /pdbtype:sept
-
-!ENDIF 
-
-# Begin Target
-
-# Name "ContinueAfterRuntimeException - Win32 Release"
-# Name "ContinueAfterRuntimeException - Win32 Debug"
-# Begin Group "Source Files"
-
-# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
-# Begin Source File
-
-SOURCE=.\ContinueAfterRuntimeException.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=.\ContinueAfterRuntimeException.rc
-# End Source File
-# Begin Source File
-
-SOURCE=.\StdAfx.cpp
-# ADD CPP /Yc"stdafx.h"
-# End Source File
-# End Group
-# Begin Group "Header Files"
-
-# PROP Default_Filter "h;hpp;hxx;hm;inl"
-# Begin Source File
-
-SOURCE=.\ContinueAfterRuntimeException.h
-# End Source File
-# Begin Source File
-
-SOURCE=.\resource.h
-# End Source File
-# Begin Source File
-
-SOURCE=.\StdAfx.h
-# End Source File
-# End Group
-# Begin Group "Resource Files"
-
-# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe"
-# Begin Source File
-
-SOURCE=.\ContinueAfterRuntimeException.ico
-# End Source File
-# Begin Source File
-
-SOURCE=.\small.ico
-# End Source File
-# End Group
-# Begin Source File
-
-SOURCE=.\ReadMe.txt
-# End Source File
-# End Target
-# End Project
diff --git a/mustella/src/main/flex/ContinueAfterRuntimeException/ContinueAfterRuntimeException.dsw b/mustella/src/main/flex/ContinueAfterRuntimeException/ContinueAfterRuntimeException.dsw
deleted file mode 100644
index 128f914..0000000
--- a/mustella/src/main/flex/ContinueAfterRuntimeException/ContinueAfterRuntimeException.dsw
+++ /dev/null
@@ -1,29 +0,0 @@
-Microsoft Developer Studio Workspace File, Format Version 6.00
-# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE!
-
-###############################################################################
-
-Project: "ContinueAfterRuntimeException"=.\ContinueAfterRuntimeException.dsp - Package Owner=<4>
-
-Package=<5>
-{{{
-}}}
-
-Package=<4>
-{{{
-}}}
-
-###############################################################################
-
-Global:
-
-Package=<5>
-{{{
-}}}
-
-Package=<3>
-{{{
-}}}
-
-###############################################################################
-
diff --git a/mustella/src/main/flex/ContinueAfterRuntimeException/ContinueAfterRuntimeException.h b/mustella/src/main/flex/ContinueAfterRuntimeException/ContinueAfterRuntimeException.h
deleted file mode 100644
index 84c0736..0000000
--- a/mustella/src/main/flex/ContinueAfterRuntimeException/ContinueAfterRuntimeException.h
+++ /dev/null
@@ -1,30 +0,0 @@
-/*
- *
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements.  See the NOTICE file distributed with
- * this work for additional information regarding copyright ownership.
- * The ASF licenses this file to You under the Apache License, Version 2.0
- * (the "License"); you may not use this file except in compliance with
- * the License.  You may obtain a copy of the License at
- *
- *     http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- *
- */
-
-#if !defined(AFX_CONTINUEAFTERRUNTIMEEXCEPTION_H__DC8E8327_5E0B_4EE3_9891_6C46447FEBFD__INCLUDED_)
-#define AFX_CONTINUEAFTERRUNTIMEEXCEPTION_H__DC8E8327_5E0B_4EE3_9891_6C46447FEBFD__INCLUDED_
-
-#if _MSC_VER > 1000
-#pragma once
-#endif // _MSC_VER > 1000
-
-#include "resource.h"
-
-
-#endif // !defined(AFX_CONTINUEAFTERRUNTIMEEXCEPTION_H__DC8E8327_5E0B_4EE3_9891_6C46447FEBFD__INCLUDED_)
diff --git a/mustella/src/main/flex/ContinueAfterRuntimeException/ContinueAfterRuntimeException.rc b/mustella/src/main/flex/ContinueAfterRuntimeException/ContinueAfterRuntimeException.rc
deleted file mode 100644
index b6518fa..0000000
--- a/mustella/src/main/flex/ContinueAfterRuntimeException/ContinueAfterRuntimeException.rc
+++ /dev/null
@@ -1,140 +0,0 @@
-//Microsoft Developer Studio generated resource script.
-//
-#include "resource.h"
-
-#define APSTUDIO_READONLY_SYMBOLS
-/////////////////////////////////////////////////////////////////////////////
-//
-// Generated from the TEXTINCLUDE 2 resource.
-//
-#define APSTUDIO_HIDDEN_SYMBOLS
-#include "windows.h"
-#undef APSTUDIO_HIDDEN_SYMBOLS
-#include "resource.h"
-
-/////////////////////////////////////////////////////////////////////////////
-#undef APSTUDIO_READONLY_SYMBOLS
-
-/////////////////////////////////////////////////////////////////////////////
-// English (U.S.) resources
-
-#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU)
-#ifdef _WIN32
-LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
-#pragma code_page(1252)
-#endif //_WIN32
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// Icon
-//
-
-// Icon with lowest ID value placed first to ensure application icon
-// remains consistent on all systems.
-IDI_CONTINUEAFTERRUNTIMEEXCEPTION ICON    DISCARDABLE     "ContinueAfterRuntimeException.ICO"
-IDI_SMALL               ICON    DISCARDABLE     "SMALL.ICO"
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// Menu
-//
-
-IDC_CONTINUEAFTERRUNTIMEEXCEPTION MENU DISCARDABLE 
-BEGIN
-    POPUP "&File"
-    BEGIN
-        MENUITEM "E&xit",                       IDM_EXIT
-    END
-    POPUP "&Help"
-    BEGIN
-        MENUITEM "&About ...",                  IDM_ABOUT
-    END
-END
-
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// Accelerator
-//
-
-IDC_CONTINUEAFTERRUNTIMEEXCEPTION ACCELERATORS MOVEABLE PURE 
-BEGIN
-    "?",            IDM_ABOUT,              ASCII,  ALT
-    "/",            IDM_ABOUT,              ASCII,  ALT
-END
-
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// Dialog
-//
-
-IDD_ABOUTBOX DIALOG DISCARDABLE  22, 17, 230, 75
-STYLE DS_MODALFRAME | WS_CAPTION | WS_SYSMENU
-CAPTION "About"
-FONT 8, "System"
-BEGIN
-    ICON            IDI_CONTINUEAFTERRUNTIMEEXCEPTION,IDC_MYICON,14,9,16,16
-    LTEXT           "ContinueAfterRuntimeException Version 1.0",IDC_STATIC,
-                    49,10,119,8,SS_NOPREFIX
-    LTEXT           "Copyright (C) 2006",IDC_STATIC,49,20,119,8
-    DEFPUSHBUTTON   "OK",IDOK,195,6,30,11,WS_GROUP
-END
-
-
-#ifdef APSTUDIO_INVOKED
-/////////////////////////////////////////////////////////////////////////////
-//
-// TEXTINCLUDE
-//
-
-2 TEXTINCLUDE DISCARDABLE 
-BEGIN
-    "#define APSTUDIO_HIDDEN_SYMBOLS\r\n"
-    "#include ""windows.h""\r\n"
-    "#undef APSTUDIO_HIDDEN_SYMBOLS\r\n"
-    "#include ""resource.h""\r\n"
-    "\0"
-END
-
-3 TEXTINCLUDE DISCARDABLE 
-BEGIN
-    "\r\n"
-    "\0"
-END
-
-1 TEXTINCLUDE DISCARDABLE 
-BEGIN
-    "resource.h\0"
-END
-
-#endif    // APSTUDIO_INVOKED
-
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// String Table
-//
-
-STRINGTABLE DISCARDABLE 
-BEGIN
-    IDS_APP_TITLE           "ContinueAfterRuntimeException"
-    IDS_HELLO               "I watch for the Flash Player's\nexception dialog and will hit Continue\n when it appears."
-    IDC_CONTINUEAFTERRUNTIMEEXCEPTION "CONTINUEAFTERRUNTIMEEXCEPTION"
-END
-
-#endif    // English (U.S.) resources
-/////////////////////////////////////////////////////////////////////////////
-
-
-
-#ifndef APSTUDIO_INVOKED
-/////////////////////////////////////////////////////////////////////////////
-//
-// Generated from the TEXTINCLUDE 3 resource.
-//
-
-
-/////////////////////////////////////////////////////////////////////////////
-#endif    // not APSTUDIO_INVOKED
-
diff --git a/mustella/src/main/flex/ContinueAfterRuntimeException/SMALL.ICO b/mustella/src/main/flex/ContinueAfterRuntimeException/SMALL.ICO
deleted file mode 100644
index 3323086..0000000
Binary files a/mustella/src/main/flex/ContinueAfterRuntimeException/SMALL.ICO and /dev/null differ
diff --git a/mustella/src/main/flex/ContinueAfterRuntimeException/StdAfx.cpp b/mustella/src/main/flex/ContinueAfterRuntimeException/StdAfx.cpp
deleted file mode 100644
index d90fe4a..0000000
--- a/mustella/src/main/flex/ContinueAfterRuntimeException/StdAfx.cpp
+++ /dev/null
@@ -1,26 +0,0 @@
-/*
- *
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements.  See the NOTICE file distributed with
- * this work for additional information regarding copyright ownership.
- * The ASF licenses this file to You under the Apache License, Version 2.0
- * (the "License"); you may not use this file except in compliance with
- * the License.  You may obtain a copy of the License at
- *
- *     http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- *
- */
-// stdafx.cpp : source file that includes just the standard includes
-//	ContinueAfterRuntimeException.pch will be the pre-compiled header
-//	stdafx.obj will contain the pre-compiled type information
-
-#include "stdafx.h"
-
-// TODO: reference any additional headers you need in STDAFX.H
-// and not in this file
diff --git a/mustella/src/main/flex/ContinueAfterRuntimeException/StdAfx.h b/mustella/src/main/flex/ContinueAfterRuntimeException/StdAfx.h
deleted file mode 100644
index 68f06d7..0000000
--- a/mustella/src/main/flex/ContinueAfterRuntimeException/StdAfx.h
+++ /dev/null
@@ -1,52 +0,0 @@
-/*
- *
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements.  See the NOTICE file distributed with
- * this work for additional information regarding copyright ownership.
- * The ASF licenses this file to You under the Apache License, Version 2.0
- * (the "License"); you may not use this file except in compliance with
- * the License.  You may obtain a copy of the License at
- *
- *     http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- *
- */
-// stdafx.h : include file for standard system include files,
-//  or project specific include files that are used frequently, but
-//      are changed infrequently
-//
-
-#if !defined(AFX_STDAFX_H__A9DB83DB_A9FD_11D0_BFD1_444553540000__INCLUDED_)
-#define AFX_STDAFX_H__A9DB83DB_A9FD_11D0_BFD1_444553540000__INCLUDED_
-
-#if _MSC_VER > 1000
-#pragma once
-#endif // _MSC_VER > 1000
-
-#define WIN32_LEAN_AND_MEAN		// Exclude rarely-used stuff from Windows headers
-
-
-// Windows Header Files:
-#include <windows.h>
-#include <winsock2.h>
-#include <ws2tcpip.h>
-
-// C RunTime Header Files
-#include <stdlib.h>
-#include <malloc.h>
-#include <memory.h>
-#include <tchar.h>
-
-// Local Header Files
-
-// TODO: reference additional headers your program requires here
-
-//{{AFX_INSERT_LOCATION}}
-// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
-
-#endif // !defined(AFX_STDAFX_H__A9DB83DB_A9FD_11D0_BFD1_444553540000__INCLUDED_)
diff --git a/mustella/src/main/flex/ContinueAfterRuntimeException/resource.h b/mustella/src/main/flex/ContinueAfterRuntimeException/resource.h
deleted file mode 100644
index 475cd6c..0000000
--- a/mustella/src/main/flex/ContinueAfterRuntimeException/resource.h
+++ /dev/null
@@ -1,45 +0,0 @@
-/*
- *
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements.  See the NOTICE file distributed with
- * this work for additional information regarding copyright ownership.
- * The ASF licenses this file to You under the Apache License, Version 2.0
- * (the "License"); you may not use this file except in compliance with
- * the License.  You may obtain a copy of the License at
- *
- *     http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- *
- */
-//{{NO_DEPENDENCIES}}
-// Microsoft Visual C++ generated include file.
-// Used by CONTINUEAFTERRUNTIMEEXCEPTION.RC
-//
-#define IDR_MAINFRAME					128
-#define IDD_CONTINUEAFTERRUNTIMEEXCEPTION_DIALOG		102
-#define IDD_ABOUTBOX					103
-#define IDS_APP_TITLE					103
-#define IDM_ABOUT						104
-#define IDM_EXIT						105
-#define IDS_HELLO						106
-#define IDI_CONTINUEAFTERRUNTIMEEXCEPTION	            107
-#define IDI_SMALL						108
-#define IDC_CONTINUEAFTERRUNTIMEEXCEPTION	            109
-#define IDC_MYICON						2
-#define IDC_STATIC	                    -1
-// Next default values for new objects
-// 
-#ifdef APSTUDIO_INVOKED
-#ifndef APSTUDIO_READONLY_SYMBOLS
-
-#define _APS_NEXT_RESOURCE_VALUE        129
-#define _APS_NEXT_COMMAND_VALUE         32771
-#define _APS_NEXT_CONTROL_VALUE         1000
-#define _APS_NEXT_SYMED_VALUE           110
-#endif
-#endif
diff --git a/mustella/src/main/flex/ExcludeList.txt b/mustella/src/main/flex/ExcludeList.txt
deleted file mode 100644
index fcf48fb..0000000
--- a/mustella/src/main/flex/ExcludeList.txt
+++ /dev/null
@@ -1 +0,0 @@
-CBTester$myButtonTest1
\ No newline at end of file
diff --git a/mustella/src/main/flex/IncludeList.txt b/mustella/src/main/flex/IncludeList.txt
deleted file mode 100644
index fcf48fb..0000000
--- a/mustella/src/main/flex/IncludeList.txt
+++ /dev/null
@@ -1 +0,0 @@
-CBTester$myButtonTest1
\ No newline at end of file
diff --git a/mustella/src/main/flex/MobileConfig.as b/mustella/src/main/flex/MobileConfig.as
index 59764c5..ef42620 100644
--- a/mustella/src/main/flex/MobileConfig.as
+++ b/mustella/src/main/flex/MobileConfig.as
@@ -1,3 +1,22 @@
+////////////////////////////////////////////////////////////////////////////////
+//
+//  Licensed to the Apache Software Foundation (ASF) under one or more
+//  contributor license agreements.  See the NOTICE file distributed with
+//  this work for additional information regarding copyright ownership.
+//  The ASF licenses this file to You under the Apache License, Version 2.0
+//  (the "License"); you may not use this file except in compliance with
+//  the License.  You may obtain a copy of the License at
+//
+//      http://www.apache.org/licenses/LICENSE-2.0
+//
+//  Unless required by applicable law or agreed to in writing, software
+//  distributed under the License is distributed on an "AS IS" BASIS,
+//  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+//  See the License for the specific language governing permissions and
+//  limitations under the License.
+//
+////////////////////////////////////////////////////////////////////////////////
+
 package {
 import flash.display.DisplayObject;
 import flash.system.Capabilities;

-- 
To stop receiving notification emails like this one, please contact
['"commits@royale.apache.org" <co...@royale.apache.org>'].