initial commit
authorv.shishlov <vladimir.shishlov@sophicsystems.com>
Fri, 27 Aug 2021 14:33:17 +0000 (17:33 +0300)
committerv.shishlov <vladimir.shishlov@sophicsystems.com>
Fri, 27 Aug 2021 14:33:17 +0000 (17:33 +0300)
commit4cd176a439ea516368a5d8827cdf8726027259a6
treed7f5ae0651fa5c97ab26aac31748ffcc35969257
initial commit
531 files changed:
.gitignore [new file with mode: 0644]
.nuget/NuGet.config [new file with mode: 0644]
.nuget/NuGet.exe [new file with mode: 0644]
.nuget/NuGet.targets [new file with mode: 0644]
CPE.sln [new file with mode: 0644]
CPE.sln.DotSettings [new file with mode: 0644]
CPE/.DS_Store [new file with mode: 0644]
CPE/._.DS_Store [new file with mode: 0644]
CPE/CPE.App/CPE.App.Api/App_Start/BundleConfig.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.Api/App_Start/FilterConfig.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.Api/App_Start/IdentityConfig.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.Api/App_Start/RouteConfig.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.Api/App_Start/Startup.Auth.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.Api/App_Start/WebApiConfig.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.Api/App_Start/WebHookConfig.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.Api/CPE.App.Api.csproj [new file with mode: 0644]
CPE/CPE.App/CPE.App.Api/Content/Site.css [new file with mode: 0644]
CPE/CPE.App/CPE.App.Api/Content/bootstrap.css [new file with mode: 0644]
CPE/CPE.App/CPE.App.Api/Content/bootstrap.min.css [new file with mode: 0644]
CPE/CPE.App/CPE.App.Api/Controllers/CertificateController.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.Api/Controllers/ElucidatController.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.Api/Controllers/ElucidatWebHookController.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.Api/Controllers/HomeController.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.Api/Controllers/StatementController.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.Api/Global.asax [new file with mode: 0644]
CPE/CPE.App/CPE.App.Api/Global.asax.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.Api/Helpers/CertificateBuilder.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.Api/Helpers/ProjectConfigureHelper.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.Api/Helpers/ReleaseDetailHelper.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.Api/Helpers/SendEmailHelper.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.Api/Helpers/TinCanHelper.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.Api/Models/AccountBindingModels.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.Api/Models/AccountViewModels.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.Api/Models/IdentityModels.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.Api/Models/TinCanStatementModel.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.Api/NotImplExceptionFilterAttribute.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.Api/OrmLite.Core.ttinclude [new file with mode: 0644]
CPE/CPE.App/CPE.App.Api/OrmLite.Poco.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.Api/OrmLite.Poco.tt [new file with mode: 0644]
CPE/CPE.App/CPE.App.Api/OrmLite.SP.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.Api/OrmLite.SP.tt [new file with mode: 0644]
CPE/CPE.App/CPE.App.Api/Project_Readme.html [new file with mode: 0644]
CPE/CPE.App/CPE.App.Api/Properties/AssemblyInfo.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.Api/Providers/ApplicationOAuthProvider.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.Api/Results/ChallengeResult.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.Api/Scripts/_references.js [new file with mode: 0644]
CPE/CPE.App/CPE.App.Api/Scripts/bootstrap.js [new file with mode: 0644]
CPE/CPE.App/CPE.App.Api/Scripts/bootstrap.min.js [new file with mode: 0644]
CPE/CPE.App/CPE.App.Api/Scripts/jquery-1.10.2.intellisense.js [new file with mode: 0644]
CPE/CPE.App/CPE.App.Api/Scripts/jquery-1.10.2.js [new file with mode: 0644]
CPE/CPE.App/CPE.App.Api/Scripts/jquery-1.10.2.min.js [new file with mode: 0644]
CPE/CPE.App/CPE.App.Api/Scripts/jquery-1.10.2.min.map [new file with mode: 0644]
CPE/CPE.App/CPE.App.Api/Scripts/jquery.validate-vsdoc.js [new file with mode: 0644]
CPE/CPE.App/CPE.App.Api/Scripts/jquery.validate.js [new file with mode: 0644]
CPE/CPE.App/CPE.App.Api/Scripts/jquery.validate.min.js [new file with mode: 0644]
CPE/CPE.App/CPE.App.Api/Scripts/jquery.validate.unobtrusive.js [new file with mode: 0644]
CPE/CPE.App/CPE.App.Api/Scripts/jquery.validate.unobtrusive.min.js [new file with mode: 0644]
CPE/CPE.App/CPE.App.Api/Scripts/modernizr-2.6.2.js [new file with mode: 0644]
CPE/CPE.App/CPE.App.Api/Scripts/respond.js [new file with mode: 0644]
CPE/CPE.App/CPE.App.Api/Scripts/respond.min.js [new file with mode: 0644]
CPE/CPE.App/CPE.App.Api/Service References/WebHooks/ConnectedService.json [new file with mode: 0644]
CPE/CPE.App/CPE.App.Api/Startup.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.Api/Views/Elucidat/Statement.cshtml [new file with mode: 0644]
CPE/CPE.App/CPE.App.Api/Views/Home/Index.cshtml [new file with mode: 0644]
CPE/CPE.App/CPE.App.Api/Views/Shared/Error.cshtml [new file with mode: 0644]
CPE/CPE.App/CPE.App.Api/Views/Shared/_Layout.cshtml [new file with mode: 0644]
CPE/CPE.App/CPE.App.Api/Views/Statement/Index.cshtml [new file with mode: 0644]
CPE/CPE.App/CPE.App.Api/Views/Web.config [new file with mode: 0644]
CPE/CPE.App/CPE.App.Api/Views/_ViewStart.cshtml [new file with mode: 0644]
CPE/CPE.App/CPE.App.Api/Web.Debug.config [new file with mode: 0644]
CPE/CPE.App/CPE.App.Api/Web.Release.config [new file with mode: 0644]
CPE/CPE.App/CPE.App.Api/Web.config [new file with mode: 0644]
CPE/CPE.App/CPE.App.Api/WebHooks/ElucidatWebHookHandler.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.Api/WebHooks/GenericJsonWebHookHandler.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.Api/WebHooks/GitHubWebHookHandler.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.Api/favicon.ico [new file with mode: 0644]
CPE/CPE.App/CPE.App.Api/fonts/glyphicons-halflings-regular.eot [new file with mode: 0644]
CPE/CPE.App/CPE.App.Api/fonts/glyphicons-halflings-regular.svg [new file with mode: 0644]
CPE/CPE.App/CPE.App.Api/fonts/glyphicons-halflings-regular.ttf [new file with mode: 0644]
CPE/CPE.App/CPE.App.Api/fonts/glyphicons-halflings-regular.woff [new file with mode: 0644]
CPE/CPE.App/CPE.App.Api/license.elic.xml [new file with mode: 0644]
CPE/CPE.App/CPE.App.Api/log4net.config [new file with mode: 0644]
CPE/CPE.App/CPE.App.Api/packages.config [new file with mode: 0644]
CPE/CPE.App/CPE.App.Api/static/doc/CertificateEmailBody.html [new file with mode: 0644]
CPE/CPE.App/CPE.App.Api/static/doc/license.elic.xml [new file with mode: 0644]
CPE/CPE.App/CPE.App.Api/static/doc/selfstudycert.docx [new file with mode: 0644]
CPE/CPE.App/CPE.App.Api/static/doc/webcastcert.docx [new file with mode: 0644]
CPE/CPE.App/CPE.App.Notify.Test/App.config [new file with mode: 0644]
CPE/CPE.App/CPE.App.Notify.Test/ArchiveSessionTest.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.Notify.Test/CPE.App.Notify.Test.csproj [new file with mode: 0644]
CPE/CPE.App/CPE.App.Notify.Test/ProcessEndOfMeetingSessionAdobeConnectResultsForParticipantTest.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.Notify.Test/Properties/AssemblyInfo.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.Notify.Test/StopSessionTest.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.Notify.Test/packages.config [new file with mode: 0644]
CPE/CPE.App/CPE.App.Notify/App.config [new file with mode: 0644]
CPE/CPE.App/CPE.App.Notify/CPE.App.Notify.csproj [new file with mode: 0644]
CPE/CPE.App/CPE.App.Notify/Database/NotifyLog_TableCreate.sql [new file with mode: 0644]
CPE/CPE.App/CPE.App.Notify/Extensions/LoggingExtensions.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.Notify/Helpers/AdobeCertificateHelper.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.Notify/Helpers/AdobeHelper.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.Notify/Helpers/EmailHelper.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.Notify/Helpers/MeetingParticipantSession.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.Notify/Helpers/SessionHelper.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.Notify/Models/CPEDataContext.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.Notify/Models/CPEWeb.dbml [new file with mode: 0644]
CPE/CPE.App/CPE.App.Notify/Models/CPEWeb.dbml.layout [new file with mode: 0644]
CPE/CPE.App/CPE.App.Notify/Models/CPEWeb.designer.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.Notify/Models/Enums/ApplicationMethods.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.Notify/Models/Enums/DispositionProcessingStates.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.Notify/Models/Enums/EmailCertificateResult.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.Notify/Models/Enums/LoggingLevels.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.Notify/Models/Enums/ParticipantResult.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.Notify/Models/Partials/AdobeTransaction.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.Notify/Models/Partials/GetRecordingCandidatesResult.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.Notify/Models/Partials/MeetingParticipantSession.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.Notify/Models/Partials/MeetingSession.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.Notify/Models/Partials/PartialClass.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.Notify/Models/Partials/PurchasedCoursesDataResult.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.Notify/Models/Partials/WebcastCertficateDataResult.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.Notify/Models/Partials/WebcastPurchaseDataResult.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.Notify/Properties/AssemblyInfo.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.Notify/Properties/Settings.Designer.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.Notify/Properties/Settings.settings [new file with mode: 0644]
CPE/CPE.App/CPE.App.Notify/packages.config [new file with mode: 0644]
CPE/CPE.App/CPE.App.NotifyConsole/App.config [new file with mode: 0644]
CPE/CPE.App/CPE.App.NotifyConsole/CPE.App.NotifyConsole.csproj [new file with mode: 0644]
CPE/CPE.App/CPE.App.NotifyConsole/Extensions/ApplicationExtensions.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.NotifyConsole/Extensions/LoggingExtensions.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.NotifyConsole/Helpers/AdobeCertificateHelper.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.NotifyConsole/Helpers/AdobeHelper.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.NotifyConsole/Helpers/EmailHelper.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.NotifyConsole/Helpers/MeetingParticipantSession.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.NotifyConsole/Helpers/SessionHelper.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.NotifyConsole/Models/CPEDataContext.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.NotifyConsole/Models/CPEWeb.dbml [new file with mode: 0644]
CPE/CPE.App/CPE.App.NotifyConsole/Models/CPEWeb.dbml.layout [new file with mode: 0644]
CPE/CPE.App/CPE.App.NotifyConsole/Models/CPEWeb.designer.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.NotifyConsole/Models/Enums/ApplicationMethods.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.NotifyConsole/Models/Enums/DispositionProcessingStates.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.NotifyConsole/Models/Enums/EmailCertificateResult.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.NotifyConsole/Models/Enums/LoggingLevels.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.NotifyConsole/Models/Enums/ParticipantResult.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.NotifyConsole/Models/Partials/AdobeTransaction.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.NotifyConsole/Models/Partials/MeetingParticipantSession.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.NotifyConsole/Models/Partials/MeetingSession.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.NotifyConsole/Models/Partials/PartialClass.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.NotifyConsole/Models/Partials/PurchasedCoursesDataResult.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.NotifyConsole/Models/Partials/WebcastCertficateDataResult.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.NotifyConsole/Models/Partials/WebcastPurchaseDataResult.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.NotifyConsole/Program.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.NotifyConsole/Properties/AssemblyInfo.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.NotifyConsole/Properties/Settings.Designer.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.NotifyConsole/Properties/Settings.settings [new file with mode: 0644]
CPE/CPE.App/CPE.App.NotifyConsole/Templates/CertificateEmailBody.html [new file with mode: 0644]
CPE/CPE.App/CPE.App.NotifyConsole/Templates/FailResultText.html [new file with mode: 0644]
CPE/CPE.App/CPE.App.NotifyConsole/Templates/IneligibleResultText.html [new file with mode: 0644]
CPE/CPE.App/CPE.App.NotifyConsole/Templates/PassResultText.html [new file with mode: 0644]
CPE/CPE.App/CPE.App.NotifyConsole/Templates/WebcastCertificateEmailBody.html [new file with mode: 0644]
CPE/CPE.App/CPE.App.NotifyConsole/Templates/WebcastFailEmailBody.html [new file with mode: 0644]
CPE/CPE.App/CPE.App.NotifyConsole/Templates/WonkyResultText.html [new file with mode: 0644]
CPE/CPE.App/CPE.App.NotifyConsole/packages.config [new file with mode: 0644]
CPE/CPE.App/CPE.App.NotifyService/App.config [new file with mode: 0644]
CPE/CPE.App/CPE.App.NotifyService/CPE.App.NotifyService.csproj [new file with mode: 0644]
CPE/CPE.App/CPE.App.NotifyService/CPEMonitor.Designer.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.NotifyService/CPEMonitor.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.NotifyService/CPEMonitor.resx [new file with mode: 0644]
CPE/CPE.App/CPE.App.NotifyService/Program.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.NotifyService/ProjectInstaller.Designer.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.NotifyService/ProjectInstaller.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.NotifyService/ProjectInstaller.resx [new file with mode: 0644]
CPE/CPE.App/CPE.App.NotifyService/Properties/AssemblyInfo.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.NotifyService/Worker.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.NotifyService/packages.config [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/App_Start/BundleConfig.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/App_Start/FilterConfig.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/App_Start/IdentityConfig.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/App_Start/RouteConfig.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/App_Start/Startup.Auth.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/CPE.App.Web.csproj [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/Code/BaseController.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/Code/BaseWebService.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/Code/Extensions.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/Code/SessionEnd.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/Connect/CommonInfo.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/Connect/Login.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/Connect/PrincipalInfo.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/Connect/Request.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/Connect/Session.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/Content/Site.css [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/Content/bootstrap.css [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/Content/bootstrap.min.css [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/Content/coursedetails.css [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/Content/sessiondetails.css [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/Controllers/AccessController.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/Controllers/IndexController.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/Controllers/RebroadcastController.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/Elucidat/EludicatClient.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/Elucidat/StringExtensions.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/Elucidat/UnderscoreContractResolver.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/Global.asax [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/Global.asax.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/Helpers/AdobeMeetingConnection.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/Helpers/ElucidatMeetingConnection.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/Helpers/ReleaseHelper.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/Helpers/VerifyAccess.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/Helpers/adobe.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/Models/AdobeModels/AdobeMeetingView.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/Models/AdobeModels/AdobeSessionViewModel.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/Models/AdobeModels/LobbyModel.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/Models/AdobeModels/RecordingPauses.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/Models/AdobeModels/RecordingSession.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/Models/AdobeModels/RecordingView.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/Models/AdobeModels/SessionResultViewModel.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/Models/CPEDataContext.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/Models/CPEDataModel.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/Models/CPEWeb.dbml [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/Models/CPEWeb.dbml.layout [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/Models/CPEWeb.designer - Copy.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/Models/CPEWeb.designer.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/Models/ElucidatModels/ElucidatCourseView.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/Models/ElucidatModels/ElucidatCourseViewModel.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/Models/ElucidatModels/LearnerSessionModel.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/Models/ElucidatModels/LinkModel.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/Models/ElucidatModels/MessageModel.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/Models/ElucidatModels/NonceModel.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/Models/ElucidatModels/ProjectModel.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/Models/ElucidatModels/ProjectSettingModel.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/Models/ElucidatModels/ReleaseModel.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/Models/ElucidatModels/ReleaseSettingModel.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/Models/JsonDataResult.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/Models/TicketModel.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/Models/partials/Meeting.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/Models/partials/PurchasedCoursesDataResult.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/Models/partials/WebcastCertficateDataResult.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/Models/partials/WebcastPurchaseDataResult.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/Project_Readme.html [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/Properties/AssemblyInfo.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/Scripts/_references.js [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/Scripts/bootstrap.js [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/Scripts/bootstrap.min.js [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/Scripts/jquery-1.10.2.intellisense.js [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/Scripts/jquery-1.10.2.js [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/Scripts/jquery-1.10.2.min.js [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/Scripts/jquery-1.10.2.min.map [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/Scripts/jquery.validate-vsdoc.js [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/Scripts/jquery.validate.js [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/Scripts/jquery.validate.min.js [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/Scripts/jquery.validate.unobtrusive.js [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/Scripts/jquery.validate.unobtrusive.min.js [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/Scripts/modernizr-2.6.2.js [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/Scripts/respond.js [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/Scripts/respond.min.js [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/Views/Account/ConfirmEmail.cshtml [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/Views/Account/ExternalLoginConfirmation.cshtml [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/Views/Account/ExternalLoginFailure.cshtml [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/Views/Account/ForgotPassword.cshtml [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/Views/Account/ForgotPasswordConfirmation.cshtml [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/Views/Account/Home/About.cshtml [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/Views/Account/Home/Contact.cshtml [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/Views/Account/Home/Index.cshtml [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/Views/Account/Login.cshtml [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/Views/Account/Register.cshtml [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/Views/Account/ResetPassword.cshtml [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/Views/Account/ResetPasswordConfirmation.cshtml [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/Views/Account/SendCode.cshtml [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/Views/Account/VerifyCode.cshtml [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/Views/Account/_ExternalLoginsListPartial.cshtml [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/Views/Courses/Index.cshtml [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/Views/Index/admin.cshtml [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/Views/Index/certificatereport.cshtml [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/Views/Index/coursedetails.cshtml [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/Views/Index/elucidat.cshtml [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/Views/Index/elucidatlogin.cshtml [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/Views/Index/getticket.cshtml [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/Views/Index/index.cshtml [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/Views/Index/login.cshtml [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/Views/Index/meeting.cshtml [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/Views/Index/result.cshtml [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/Views/Index/sessiondetails.cshtml [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/Views/Index/webcastcertificatereport.cshtml [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/Views/Shared/Error.cshtml [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/Views/Shared/Lockout.cshtml [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/Views/Shared/_Layout.cshtml [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/Views/Shared/_LoginPartial.cshtml [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/Views/Web.config [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/Views/_ViewStart.cshtml [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/Views/rebroadcast/lobby.cshtml [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/Views/rebroadcast/rebroadcastSessions.cshtml [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/Views/rebroadcast/rebroadcastpauses.cshtml [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/Views/rebroadcast/rebroadcastschedule.cshtml [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/Views/rebroadcast/recording.cshtml [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/Views/rebroadcast/recordinglogin.cshtml [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/Web.Debug.config [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/Web.Release.config [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/Web.config [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/favicon.ico [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/fonts/glyphicons-halflings-regular.eot [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/fonts/glyphicons-halflings-regular.svg [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/fonts/glyphicons-halflings-regular.ttf [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/fonts/glyphicons-halflings-regular.woff [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/packages.config [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/static/css/global.css [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/static/css/index/recording.css [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/static/css/jquery.datatables.css [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/static/css/jquery.datatables.tabletools.css [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/static/css/rebroadcast/lobby.css [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/static/css/redmond/images/animated-overlay.gif [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/static/css/redmond/images/ui-bg_flat_0_aaaaaa_40x100.png [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/static/css/redmond/images/ui-bg_flat_55_fbec88_40x100.png [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/static/css/redmond/images/ui-bg_glass_75_d0e5f5_1x400.png [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/static/css/redmond/images/ui-bg_glass_85_dfeffc_1x400.png [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/static/css/redmond/images/ui-bg_glass_95_fef1ec_1x400.png [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/static/css/redmond/images/ui-bg_gloss-wave_55_5c9ccc_500x100.png [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/static/css/redmond/images/ui-bg_inset-hard_100_f5f8f9_1x100.png [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/static/css/redmond/images/ui-bg_inset-hard_100_fcfdfd_1x100.png [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/static/css/redmond/images/ui-icons_217bc0_256x240.png [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/static/css/redmond/images/ui-icons_2e83ff_256x240.png [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/static/css/redmond/images/ui-icons_469bdd_256x240.png [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/static/css/redmond/images/ui-icons_6da8d5_256x240.png [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/static/css/redmond/images/ui-icons_cd0a0a_256x240.png [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/static/css/redmond/images/ui-icons_d8e7f3_256x240.png [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/static/css/redmond/images/ui-icons_f9bd01_256x240.png [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/static/css/redmond/jquery-ui-1.10.3.custom.css [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/static/css/redmond/jquery-ui-1.10.3.custom.min.css [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/static/css/redmond/jquery-ui-1.9.1.custom.css [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/static/css/redmond/jquery-ui-1.9.1.custom.min.css [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/static/css/redmond/jquery-ui-1.9.2.custom.min.css [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/static/doc/CertificateEmailBody.html [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/static/doc/FailResultText.html [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/static/doc/IneligibleResultText.html [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/static/doc/PassResultText.html [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/static/doc/WebcastCertificateEmailBody.html [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/static/doc/WebcastFailEmailBody.html [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/static/doc/WonkyResultText.html [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/static/img/calendar.gif [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/static/img/datatables/back_disabled.jpg [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/static/img/datatables/back_enabled.jpg [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/static/img/datatables/forward_disabled.jpg [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/static/img/datatables/forward_enabled.jpg [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/static/img/datatables/sort_asc.png [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/static/img/datatables/sort_asc_disabled.png [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/static/img/datatables/sort_both.png [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/static/img/datatables/sort_desc.png [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/static/img/datatables/sort_desc_disabled.png [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/static/img/instructions.png [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/static/img/instructions2015.png [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/static/img/instructionsold.png [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/static/img/tabletools/background.png [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/static/img/tabletools/collection.png [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/static/img/tabletools/collection_hover.png [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/static/img/tabletools/copy.png [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/static/img/tabletools/copy_hover.png [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/static/img/tabletools/csv.png [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/static/img/tabletools/csv_hover.png [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/static/img/tabletools/pdf.png [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/static/img/tabletools/pdf_hover.png [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/static/img/tabletools/print.png [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/static/img/tabletools/print_hover.png [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/static/img/tabletools/xls.png [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/static/img/tabletools/xls_hover.png [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/static/js/detect-zoom.js [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/static/js/excanvas.js [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/static/js/index/certificatereport.js [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/static/js/index/coursedetails.js [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/static/js/index/elucidat.js [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/static/js/index/getticket.js [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/static/js/index/index.js [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/static/js/index/login.js [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/static/js/index/sessiondetails.js [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/static/js/jquery-1.10.1.min.js [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/static/js/jquery-1.8.3.min.js [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/static/js/jquery-ui-1.10.3.custom.js [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/static/js/jquery-ui-1.10.3.custom.min.js [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/static/js/jquery-ui-1.9.1.custom.js [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/static/js/jquery-ui-1.9.1.custom.min.js [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/static/js/jquery-ui-1.9.2.custom.js [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/static/js/jquery-ui-1.9.2.custom.min.js [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/static/js/jquery-ui.min.js [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/static/js/jquery.1-7-2.min.js [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/static/js/jquery.bt.min.js [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/static/js/jquery.dataTables.min.js [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/static/js/jquery.datatable.tabletools.zeroclipboard.js [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/static/js/jquery.datatables.tabletools.min.js [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/static/js/jquery.dictionary-1.2.js [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/static/js/jquery.timePicker.js [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/static/js/jquery.timePicker.min.js [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/static/js/jquery.ui.1-9-1.min.js [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/static/js/jquery.validate.min.js [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/static/js/rebroadcast/lobby.js [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/static/js/rebroadcast/rebroadcastSessions.js [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/static/js/rebroadcast/rebroadcastpauses.js [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/static/js/rebroadcast/rebroadcastschedule.js [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/static/js/rebroadcast/recordinglogin.js [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/static/services/engagement/service.asmx [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/static/services/engagement/service.asmx.cs [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/static/swf/CpeLeftRecordingOverlay.swf [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/static/swf/CpeRecordingOverlay.swf [new file with mode: 0644]
CPE/CPE.App/CPE.App.Web/static/swf/copy.csv.xls.swf [new file with mode: 0644]
CPE/CPE.Resources/IBS.Connect.API.dll [new file with mode: 0644]
CPE/CPE.Resources/IBS.ORMLite.dll [new file with mode: 0644]
CPE/CPE.Resources/selfstudycert.docx [new file with mode: 0644]
CPE/CPE.Resources/selfstudycert_DW.docx [new file with mode: 0644]
CPE/CPE.Resources/webcast_cert-3.doc [new file with mode: 0644]
CPE/CPE.Resources/webcastcert.docx [new file with mode: 0644]
CPE/CPE.Utilities/CPE.Utilities.csproj [new file with mode: 0644]
CPE/CPE.Utilities/Email.cs [new file with mode: 0644]
CPE/CPE.Utilities/LogWrapper.cs [new file with mode: 0644]
CPE/CPE.Utilities/Properties/AssemblyInfo.cs [new file with mode: 0644]
CPE/CPE.Utilities/Result.cs [new file with mode: 0644]
CPE/CPE.Utilities/app.config [new file with mode: 0644]
CPE/CPE.Utilities/packages.config [new file with mode: 0644]
CPEFlex/CpeLeftRecordingOverlay/.actionScriptProperties [new file with mode: 0644]
CPEFlex/CpeLeftRecordingOverlay/.flexProperties [new file with mode: 0644]
CPEFlex/CpeLeftRecordingOverlay/.project [new file with mode: 0644]
CPEFlex/CpeLeftRecordingOverlay/.settings/org.eclipse.core.resources.prefs [new file with mode: 0644]
CPEFlex/CpeLeftRecordingOverlay/bin-debug/AC_OETags.js [new file with mode: 0644]
CPEFlex/CpeLeftRecordingOverlay/bin-debug/CpeLeftRecordingOverlay.html [new file with mode: 0644]
CPEFlex/CpeLeftRecordingOverlay/bin-debug/CpeLeftRecordingOverlay.swf [new file with mode: 0644]
CPEFlex/CpeLeftRecordingOverlay/bin-debug/history/history.css [new file with mode: 0644]
CPEFlex/CpeLeftRecordingOverlay/bin-debug/history/history.js [new file with mode: 0644]
CPEFlex/CpeLeftRecordingOverlay/bin-debug/history/historyFrame.html [new file with mode: 0644]
CPEFlex/CpeLeftRecordingOverlay/bin-debug/playerProductInstall.swf [new file with mode: 0644]
CPEFlex/CpeLeftRecordingOverlay/html-template/AC_OETags.js [new file with mode: 0644]
CPEFlex/CpeLeftRecordingOverlay/html-template/history/history.css [new file with mode: 0644]
CPEFlex/CpeLeftRecordingOverlay/html-template/history/history.js [new file with mode: 0644]
CPEFlex/CpeLeftRecordingOverlay/html-template/history/historyFrame.html [new file with mode: 0644]
CPEFlex/CpeLeftRecordingOverlay/html-template/index.template.html [new file with mode: 0644]
CPEFlex/CpeLeftRecordingOverlay/html-template/playerProductInstall.swf [new file with mode: 0644]
CPEFlex/CpeLeftRecordingOverlay/src/CpeLeftRecordingOverlay.mxml [new file with mode: 0644]
CPEFlex/CpeRecordingOverlay/.actionScriptProperties [new file with mode: 0644]
CPEFlex/CpeRecordingOverlay/.flexProperties [new file with mode: 0644]
CPEFlex/CpeRecordingOverlay/.project [new file with mode: 0644]
CPEFlex/CpeRecordingOverlay/.settings/org.eclipse.core.resources.prefs [new file with mode: 0644]
CPEFlex/CpeRecordingOverlay/bin-debug/AC_OETags.js [new file with mode: 0644]
CPEFlex/CpeRecordingOverlay/bin-debug/CpeRecordingOverlay.html [new file with mode: 0644]
CPEFlex/CpeRecordingOverlay/bin-debug/CpeRecordingOverlay.swf [new file with mode: 0644]
CPEFlex/CpeRecordingOverlay/bin-debug/history/history.css [new file with mode: 0644]
CPEFlex/CpeRecordingOverlay/bin-debug/history/history.js [new file with mode: 0644]
CPEFlex/CpeRecordingOverlay/bin-debug/history/historyFrame.html [new file with mode: 0644]
CPEFlex/CpeRecordingOverlay/bin-debug/playerProductInstall.swf [new file with mode: 0644]
CPEFlex/CpeRecordingOverlay/html-template/AC_OETags.js [new file with mode: 0644]
CPEFlex/CpeRecordingOverlay/html-template/history/history.css [new file with mode: 0644]
CPEFlex/CpeRecordingOverlay/html-template/history/history.js [new file with mode: 0644]
CPEFlex/CpeRecordingOverlay/html-template/history/historyFrame.html [new file with mode: 0644]
CPEFlex/CpeRecordingOverlay/html-template/index.template.html [new file with mode: 0644]
CPEFlex/CpeRecordingOverlay/html-template/playerProductInstall.swf [new file with mode: 0644]
CPEFlex/CpeRecordingOverlay/src/CpeRecordingOverlay.mxml [new file with mode: 0644]
CPEFlex/EngagementAdminPod/.actionScriptProperties [new file with mode: 0644]
CPEFlex/EngagementAdminPod/.flexProperties [new file with mode: 0644]
CPEFlex/EngagementAdminPod/.project [new file with mode: 0644]
CPEFlex/EngagementAdminPod/.settings/org.eclipse.core.resources.prefs [new file with mode: 0644]
CPEFlex/EngagementAdminPod/assets/config.xml [new file with mode: 0644]
CPEFlex/EngagementAdminPod/bin-debug/AC_OETags.js [new file with mode: 0644]
CPEFlex/EngagementAdminPod/bin-debug/EngagementAdminPod.html [new file with mode: 0644]
CPEFlex/EngagementAdminPod/bin-debug/EngagementAdminPod.swf [new file with mode: 0644]
CPEFlex/EngagementAdminPod/bin-debug/EngagementAdminPod.swf.r4931 [new file with mode: 0644]
CPEFlex/EngagementAdminPod/bin-debug/EngagementAdminPod.swf.r4937 [new file with mode: 0644]
CPEFlex/EngagementAdminPod/bin-debug/crossdomain.xml [new file with mode: 0644]
CPEFlex/EngagementAdminPod/bin-debug/history/history.css [new file with mode: 0644]
CPEFlex/EngagementAdminPod/bin-debug/history/history.js [new file with mode: 0644]
CPEFlex/EngagementAdminPod/bin-debug/history/historyFrame.html [new file with mode: 0644]
CPEFlex/EngagementAdminPod/bin-debug/playerProductInstall.swf [new file with mode: 0644]
CPEFlex/EngagementAdminPod/html-template/AC_OETags.js [new file with mode: 0644]
CPEFlex/EngagementAdminPod/html-template/history/history.css [new file with mode: 0644]
CPEFlex/EngagementAdminPod/html-template/history/history.js [new file with mode: 0644]
CPEFlex/EngagementAdminPod/html-template/history/historyFrame.html [new file with mode: 0644]
CPEFlex/EngagementAdminPod/html-template/index.template.html [new file with mode: 0644]
CPEFlex/EngagementAdminPod/html-template/playerProductInstall.swf [new file with mode: 0644]
CPEFlex/EngagementAdminPod/libs/SyncConnector.swc [new file with mode: 0644]
CPEFlex/EngagementAdminPod/src/EngagementAdminPod.mxml [new file with mode: 0644]
CPEFlex/EngagementAdminPod/src/crossdomain.xml [new file with mode: 0644]
CPEFlex/EngagementPod/.DS_Store [new file with mode: 0644]
CPEFlex/EngagementPod/.actionScriptProperties [new file with mode: 0644]
CPEFlex/EngagementPod/.flexProperties [new file with mode: 0644]
CPEFlex/EngagementPod/.project [new file with mode: 0644]
CPEFlex/EngagementPod/.settings/org.eclipse.core.resources.prefs [new file with mode: 0644]
CPEFlex/EngagementPod/assets/._BoxingBell.mp3 [new file with mode: 0644]
CPEFlex/EngagementPod/assets/._ElevatorBell.mp3 [new file with mode: 0644]
CPEFlex/EngagementPod/assets/._GameshowBellDing1.mp3 [new file with mode: 0644]
CPEFlex/EngagementPod/assets/._GameshowBellDing4.mp3 [new file with mode: 0644]
CPEFlex/EngagementPod/assets/._ding.mp3 [new file with mode: 0644]
CPEFlex/EngagementPod/assets/._ding.wav [new file with mode: 0644]
CPEFlex/EngagementPod/assets/BoxingBell.mp3 [new file with mode: 0644]
CPEFlex/EngagementPod/assets/ElevatorBell.mp3 [new file with mode: 0644]
CPEFlex/EngagementPod/assets/GameshowBellDing1.mp3 [new file with mode: 0644]
CPEFlex/EngagementPod/assets/GameshowBellDing4.mp3 [new file with mode: 0644]
CPEFlex/EngagementPod/assets/config.xml [new file with mode: 0644]
CPEFlex/EngagementPod/assets/ding.mp3 [new file with mode: 0644]
CPEFlex/EngagementPod/assets/ding.wav [new file with mode: 0644]
CPEFlex/EngagementPod/bin-debug/AC_OETags.js [new file with mode: 0644]
CPEFlex/EngagementPod/bin-debug/EngagementPod.html [new file with mode: 0644]
CPEFlex/EngagementPod/bin-debug/EngagementPod.swf [new file with mode: 0644]
CPEFlex/EngagementPod/bin-debug/crossdomain.xml [new file with mode: 0644]
CPEFlex/EngagementPod/bin-debug/history/history.css [new file with mode: 0644]
CPEFlex/EngagementPod/bin-debug/history/history.js [new file with mode: 0644]
CPEFlex/EngagementPod/bin-debug/history/historyFrame.html [new file with mode: 0644]
CPEFlex/EngagementPod/bin-debug/models/Settings.as.mine [new file with mode: 0644]
CPEFlex/EngagementPod/bin-debug/models/Settings.as.r5086 [new file with mode: 0644]
CPEFlex/EngagementPod/bin-debug/models/Settings.as.r5087 [new file with mode: 0644]
CPEFlex/EngagementPod/bin-debug/playerProductInstall.swf [new file with mode: 0644]
CPEFlex/EngagementPod/bin-release/AC_OETags.js [new file with mode: 0644]
CPEFlex/EngagementPod/bin-release/EngagementPod.html [new file with mode: 0644]
CPEFlex/EngagementPod/bin-release/EngagementPod.swf [new file with mode: 0644]
CPEFlex/EngagementPod/bin-release/crossdomain.xml [new file with mode: 0644]
CPEFlex/EngagementPod/bin-release/history/history.css [new file with mode: 0644]
CPEFlex/EngagementPod/bin-release/history/history.js [new file with mode: 0644]
CPEFlex/EngagementPod/bin-release/history/historyFrame.html [new file with mode: 0644]
CPEFlex/EngagementPod/bin-release/playerProductInstall.swf [new file with mode: 0644]
CPEFlex/EngagementPod/html-template/AC_OETags.js [new file with mode: 0644]
CPEFlex/EngagementPod/html-template/history/history.css [new file with mode: 0644]
CPEFlex/EngagementPod/html-template/history/history.js [new file with mode: 0644]
CPEFlex/EngagementPod/html-template/history/historyFrame.html [new file with mode: 0644]
CPEFlex/EngagementPod/html-template/index.template.html [new file with mode: 0644]
CPEFlex/EngagementPod/html-template/playerProductInstall.swf [new file with mode: 0644]
CPEFlex/EngagementPod/libs/SyncConnector.swc [new file with mode: 0644]
CPEFlex/EngagementPod/src/EngagementPod.mxml [new file with mode: 0644]
CPEFlex/EngagementPod/src/Host.mxml [new file with mode: 0644]
CPEFlex/EngagementPod/src/Participant.mxml [new file with mode: 0644]
CPEFlex/EngagementPod/src/Presenter.mxml [new file with mode: 0644]
CPEFlex/EngagementPod/src/Utilities.as [new file with mode: 0644]
CPEFlex/EngagementPod/src/com/effects/AnimateColor.as [new file with mode: 0644]
CPEFlex/EngagementPod/src/com/effects/effectClasses/AnimateColorInstance.as [new file with mode: 0644]
CPEFlex/EngagementPod/src/com/util/ColorUtil.as [new file with mode: 0644]
CPEFlex/EngagementPod/src/crossdomain.xml [new file with mode: 0644]
CPEFlex/EngagementPod/src/models/CustomSyncMessage.as [new file with mode: 0644]
CPEFlex/EngagementPod/src/models/ExternalInterfaceUtil.as [new file with mode: 0644]
CPEFlex/EngagementPod/src/models/Settings.as [new file with mode: 0644]
CPEFlex/EngagementPod/src/models/TimeSpan.as [new file with mode: 0644]
CPEFlex/EngagementPod/src/models/TrackingEventType.as [new file with mode: 0644]
CPEFlex/EngagementPod/src/models/User.as [new file with mode: 0644]
Documentation/WhatIsCPE.txt [new file with mode: 0644]