├── .gitignore ├── Documentation ├── Concept-ControllerAndAgentCommunication.png ├── Development │ └── How to add new administration.txt ├── HISTORY.txt ├── Installation │ ├── sample-solution-cpp11.cpp │ ├── sample-solution.cpp │ ├── sample-solution.cs │ ├── sample-solution.js │ └── sample-tests.zip └── Requirements │ ├── Gacutil │ ├── gacutil.exe │ ├── gacutil.exe.config │ └── gacutlrc.dll │ ├── MinGW │ ├── mingw-get-setup.exe │ └── mingw-w64-install.exe │ ├── PowerCollections │ ├── Binaries │ │ ├── License.txt │ │ ├── PowerCollections.XML │ │ └── PowerCollections.dll │ └── Binaries_Signed_4.5 │ │ ├── PowerCollections.XML │ │ ├── PowerCollections.dll │ │ └── PowerCollections.dll.config │ └── Requirements for agent enviroments.txt ├── LICENSE ├── Open Judge System ├── .nuget │ ├── NuGet.Config │ ├── NuGet.exe │ └── NuGet.targets ├── Data │ ├── OJS.Data.Contracts │ │ ├── App.config │ │ ├── AuditInfo.cs │ │ ├── CodeFirstConventions │ │ │ └── UnicodeAttributeConvention.cs │ │ ├── DataAnnotations │ │ │ └── IsUnicodeAttribute.cs │ │ ├── DeletableEntity.cs │ │ ├── IAuditInfo.cs │ │ ├── IDeletableEntity.cs │ │ ├── IDeletableEntityRepository.cs │ │ ├── IOrderable.cs │ │ ├── IRepository.cs │ │ ├── OJS.Data.Contracts.csproj │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── packages.config │ ├── OJS.Data.Models │ │ ├── AccessLog.cs │ │ ├── App.config │ │ ├── Checker.cs │ │ ├── Contest.cs │ │ ├── ContestCategory.cs │ │ ├── ContestIp.cs │ │ ├── ContestQuestion.cs │ │ ├── ContestQuestionAnswer.cs │ │ ├── Event.cs │ │ ├── FeedbackReport.cs │ │ ├── Ip.cs │ │ ├── LecturerInContest.cs │ │ ├── LecturerInContestCategory.cs │ │ ├── News.cs │ │ ├── OJS.Data.Models.csproj │ │ ├── Participant.cs │ │ ├── ParticipantAnswer.cs │ │ ├── ParticipantScore.cs │ │ ├── Problem.cs │ │ ├── ProblemResource.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Settings.cs │ │ ├── SourceCode.cs │ │ ├── Submission.cs │ │ ├── SubmissionType.cs │ │ ├── Tag.cs │ │ ├── Test.cs │ │ ├── TestRun.cs │ │ ├── UserProfile.cs │ │ ├── UserSettings.cs │ │ └── packages.config │ └── OJS.Data │ │ ├── App.config │ │ ├── Configurations │ │ ├── ParticipantAnswersConfiguration.cs │ │ ├── ParticipantScoresConfiguration.cs │ │ ├── TestRunConfiguration.cs │ │ └── UserProfileConfiguration.cs │ │ ├── IOjsData.cs │ │ ├── IOjsDbContext.cs │ │ ├── Migrations │ │ └── DefaultMigrationConfiguration.cs │ │ ├── OJS.Data.csproj │ │ ├── OjsData.cs │ │ ├── OjsDbContext.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── Providers │ │ ├── GlimpseConnectionEfSqlBulkInsertProvider.cs │ │ └── Registries │ │ │ └── EfBulkInsertGlimpseProviderRegistry.cs │ │ ├── Repositories │ │ ├── Base │ │ │ ├── DeletableEntityRepository.cs │ │ │ └── GenericRepository.cs │ │ ├── ContestsRepository.cs │ │ ├── Contracts │ │ │ ├── IContestsRepository.cs │ │ │ ├── IParticipantScoresRepository.cs │ │ │ ├── IParticipantsRepository.cs │ │ │ ├── ISubmissionsRepository.cs │ │ │ ├── ITestRepository.cs │ │ │ ├── ITestRunsRepository.cs │ │ │ └── IUsersRepository.cs │ │ ├── ParticipantScoresRepository.cs │ │ ├── ParticipantsRepository.cs │ │ ├── SubmissionsRepository.cs │ │ ├── TestRepository.cs │ │ ├── TestRunsRepository.cs │ │ └── UsersRepository.cs │ │ └── packages.config ├── External Libraries │ ├── Kendo.Mvc.README │ ├── Kendo.Mvc.dll │ ├── Kendo.Mvc.xml │ └── nuget.exe ├── OJS.Common │ ├── AgeCalculator.cs │ ├── Attributes │ │ ├── LocalizedDescriptionAttribute.cs │ │ └── LocalizedDisplayFormatAttribute.cs │ ├── DataAnnotations │ │ ├── DatabasePropertyAttribute.cs │ │ └── ExcludeFromExcelAttribute.cs │ ├── ExpressionBuilder.cs │ ├── Extensions │ │ ├── ByteArrayExtensions.cs │ │ ├── CompilerTypeExtensions.cs │ │ ├── CompressStringExtensions.cs │ │ ├── DirectoryHelpers.cs │ │ ├── EnumExtensions.cs │ │ ├── ExecutionStrategyTypeExtensions.cs │ │ ├── FileHelpers.cs │ │ ├── IEnumerableExtensions.cs │ │ ├── ObjectExtensions.cs │ │ ├── PlagiarismDetectorTypeExtensions.cs │ │ ├── StreamExtensions.cs │ │ └── StringExtensions.cs │ ├── GlobalConstants.cs │ ├── MailSender.cs │ ├── Models │ │ ├── CompilerType.cs │ │ ├── ContestQuestionType.cs │ │ ├── ContestType.cs │ │ ├── ExecutionStrategyType.cs │ │ ├── PlagiarismDetectorType.cs │ │ ├── ProblemResourceType.cs │ │ ├── SubmissionStatus.cs │ │ ├── SystemRole.cs │ │ └── TestRunResultType.cs │ ├── OJS.Common.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Resources │ │ └── Enums │ │ │ ├── EnumTranslations.Designer.cs │ │ │ ├── EnumTranslations.bg.Designer.cs │ │ │ ├── EnumTranslations.bg.resx │ │ │ └── EnumTranslations.resx │ ├── SynchronizedHashtable.cs │ └── packages.config ├── Open Judge System.sln ├── Rules.ruleset ├── Settings.StyleCop ├── Tests │ ├── OJS.Common.Tests │ │ ├── OJS.Common.Tests.csproj │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── StringExtensions │ │ │ ├── CompressDecompressTests.cs │ │ │ ├── GetFileExtensionTests.cs │ │ │ ├── GetFirstDifferenceIndexTests.cs │ │ │ ├── GetFirstDifferenceIndexWithTests.cs │ │ │ ├── GetStringBetweenTests.cs │ │ │ ├── GetStringWithEllipsisBetweenTests.cs │ │ │ ├── MaxLengthTests.cs │ │ │ ├── PascalCaseToTextTests.cs │ │ │ ├── StringToUrlTests.cs │ │ │ ├── ToInteger.cs │ │ │ └── ToIntegerTests.cs │ │ └── packages.config │ ├── OJS.Data.Models.Tests │ │ ├── OJS.Data.Models.Tests.csproj │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── SubmissionTests.cs │ │ └── packages.config │ ├── OJS.Tests.Common │ │ ├── App.config │ │ ├── DataFakes │ │ │ ├── DatabaseConfiguration.cs │ │ │ ├── FakeEmptyOjsDbContext.cs │ │ │ ├── FakeOjsDbContext.cs │ │ │ └── ObjectExtensions.cs │ │ ├── OJS.Tests.Common.csproj │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── TestClassBase.cs │ │ ├── WebStubs │ │ │ ├── StubHttpContextForRouting.cs │ │ │ ├── StubHttpRequestForRouting.cs │ │ │ └── StubHttpResponseForRouting.cs │ │ └── packages.config │ ├── OJS.Tools.SubmissionScoresMigrator.Tests │ │ ├── App.config │ │ ├── OJS.Tools.SubmissionScoresMigrator.Tests.csproj │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── SubmissionScoreTests.cs │ │ └── packages.config │ ├── OJS.Web.Tests │ │ ├── Areas │ │ │ └── Contests │ │ │ │ └── ViewModels │ │ │ │ └── TestRunFullResultsViewModelTests.cs │ │ ├── OJS.Web.Tests.csproj │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── packages.config │ ├── OJS.Workers.Checkers.Tests │ │ ├── CSharpCodeCheckerTests.cs │ │ ├── CaseInsensitiveCheckerTests.cs │ │ ├── ExactCheckerTests.cs │ │ ├── OJS.Workers.Checkers.Tests.csproj │ │ ├── PrecisionCheckerTests.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── SortCheckerTests.cs │ │ ├── TrimCheckerTests.cs │ │ └── packages.config │ ├── OJS.Workers.Compilers.Tests │ │ ├── CSharpCompilerTests.cs │ │ ├── MsBuildCompilerTests.cs │ │ ├── OJS.Workers.Compilers.Tests.csproj │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── packages.config │ ├── OJS.Workers.ExecutionStrategies.Tests │ │ ├── JsonExecutionResultTests.cs │ │ ├── OJS.Workers.ExecutionStrategies.Tests.csproj │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── packages.config │ ├── OJS.Workers.Executors.Tests │ │ ├── BaseExecutorsTestClass.cs │ │ ├── OJS.Workers.Executors.Tests.csproj │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── RestrictedProcessSecurityTests.cs │ │ ├── RestrictedProcessTests.cs │ │ └── packages.config │ └── OJS.Workers.Tools.Tests │ │ ├── AntiCheat │ │ └── SortAndTrimLinesVisitorTests.cs │ │ ├── OJS.Workers.Tools.Tests.csproj │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── Similarity │ │ └── SimilarityFinderDiffTextTests.cs │ │ └── packages.config ├── Tools │ ├── SandboxExecutorProofOfConcept │ │ ├── App.config │ │ ├── GlobalConstants.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── SandboxExecutorProofOfConcept.csproj │ │ ├── SandboxExecutorProofOfConceptProgram.cs │ │ └── packages.config │ ├── SandboxTarget │ │ ├── App.config │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── SandboxTarget.csproj │ │ ├── SandboxTargetProgram.cs │ │ ├── TryToExecuteParams.cs │ │ └── packages.config │ ├── SqlTestingPoC │ │ ├── App.config │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── SqlPrepareDatabaseAndRunQueriesExecutionStrategy.cs │ │ ├── SqlRunQueryAndCheckDatabaseExecutionStrategy.cs │ │ ├── SqlTestingPoC.csproj │ │ └── packages.config │ └── SubmissionScoresMigrator │ │ ├── App.config │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── Startup.cs │ │ ├── SubmissionScoreModel.cs │ │ ├── SubmissionScoresMigrator.csproj │ │ └── packages.config ├── Web │ ├── OJS.Web.Common │ │ ├── Attributes │ │ │ ├── AuthorizeRolesAttribute.cs │ │ │ ├── LogAccessAttribute.cs │ │ │ ├── LoggerFilterAttribute.cs │ │ │ └── RestrictRequestsAttribute.cs │ │ ├── EnumConverter.cs │ │ ├── Extensions │ │ │ ├── PrincipalExtensions.cs │ │ │ └── TempDataExtentions.cs │ │ ├── Interfaces │ │ │ ├── IAdministrationViewModel.cs │ │ │ └── IKendoGridAdministrationController.cs │ │ ├── OJS.Web.Common.csproj │ │ ├── OjsUserManager.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── SearchResultType.cs │ │ ├── SystemMessage.cs │ │ ├── SystemMessageCollection.cs │ │ ├── SystemMessageType.cs │ │ ├── TestType.cs │ │ ├── ZipFileResult.cs │ │ ├── ZippedTestManipulator │ │ │ ├── ParseResult.cs │ │ │ └── ZippedTestsParser.cs │ │ ├── app.config │ │ └── packages.config │ └── OJS.Web │ │ ├── App_Code │ │ └── ContestsHelper.cshtml │ │ ├── App_GlobalResources │ │ ├── Account │ │ │ ├── AccountEmails.Designer.cs │ │ │ ├── AccountEmails.bg.Designer.cs │ │ │ ├── AccountEmails.bg.resx │ │ │ ├── AccountEmails.resx │ │ │ ├── ViewModels │ │ │ │ ├── AccountViewModels.Designer.cs │ │ │ │ ├── AccountViewModels.bg.Designer.cs │ │ │ │ ├── AccountViewModels.bg.resx │ │ │ │ └── AccountViewModels.resx │ │ │ └── Views │ │ │ │ ├── ChangeEmailView.Designer.cs │ │ │ │ ├── ChangeEmailView.bg.designer.cs │ │ │ │ ├── ChangeEmailView.bg.resx │ │ │ │ ├── ChangeEmailView.resx │ │ │ │ ├── ChangePasswordView.Designer.cs │ │ │ │ ├── ChangePasswordView.bg.designer.cs │ │ │ │ ├── ChangePasswordView.bg.resx │ │ │ │ ├── ChangePasswordView.resx │ │ │ │ ├── ChangeUsernameView.bg.designer.cs │ │ │ │ ├── ChangeUsernameView.bg.resx │ │ │ │ ├── ChangeUsernameView.designer.cs │ │ │ │ ├── ChangeUsernameView.resx │ │ │ │ ├── Disassociate.Designer.cs │ │ │ │ ├── Disassociate.bg.designer.cs │ │ │ │ ├── Disassociate.bg.resx │ │ │ │ ├── Disassociate.resx │ │ │ │ ├── ExternalLoginCallback.bg.designer.cs │ │ │ │ ├── ExternalLoginCallback.bg.resx │ │ │ │ ├── ExternalLoginCallback.designer.cs │ │ │ │ ├── ExternalLoginCallback.resx │ │ │ │ ├── ExternalLoginConfirmation.Designer.cs │ │ │ │ ├── ExternalLoginConfirmation.bg.designer.cs │ │ │ │ ├── ExternalLoginConfirmation.bg.resx │ │ │ │ ├── ExternalLoginConfirmation.resx │ │ │ │ ├── ExternalLoginFailure.Designer.cs │ │ │ │ ├── ExternalLoginFailure.bg.designer.cs │ │ │ │ ├── ExternalLoginFailure.bg.resx │ │ │ │ ├── ExternalLoginFailure.resx │ │ │ │ ├── ForgottenPassword.Designer.cs │ │ │ │ ├── ForgottenPassword.bg.designer.cs │ │ │ │ ├── ForgottenPassword.bg.resx │ │ │ │ ├── ForgottenPassword.resx │ │ │ │ ├── General.Designer.cs │ │ │ │ ├── General.bg.designer.cs │ │ │ │ ├── General.bg.resx │ │ │ │ ├── General.resx │ │ │ │ ├── Login.Designer.cs │ │ │ │ ├── Login.bg.designer.cs │ │ │ │ ├── Login.bg.resx │ │ │ │ ├── Login.resx │ │ │ │ ├── Manage.Designer.cs │ │ │ │ ├── Manage.bg.designer.cs │ │ │ │ ├── Manage.bg.resx │ │ │ │ ├── Manage.resx │ │ │ │ ├── Partial │ │ │ │ ├── ChangePassword.Designer.cs │ │ │ │ ├── ChangePassword.bg.designer.cs │ │ │ │ ├── ChangePassword.bg.resx │ │ │ │ ├── ChangePassword.resx │ │ │ │ ├── ExternalLoginsList.Designer.cs │ │ │ │ ├── ExternalLoginsList.bg.designer.cs │ │ │ │ ├── ExternalLoginsList.bg.resx │ │ │ │ ├── ExternalLoginsList.resx │ │ │ │ ├── RemoveAccount.Designer.cs │ │ │ │ ├── RemoveAccount.bg.designer.cs │ │ │ │ ├── RemoveAccount.bg.resx │ │ │ │ ├── RemoveAccount.resx │ │ │ │ ├── SetPassword.Designer.cs │ │ │ │ ├── SetPassword.bg.designer.cs │ │ │ │ ├── SetPassword.bg.resx │ │ │ │ └── SetPassword.resx │ │ │ │ ├── Register.Designer.cs │ │ │ │ ├── Register.bg.designer.cs │ │ │ │ ├── Register.bg.resx │ │ │ │ └── Register.resx │ │ ├── Areas │ │ │ ├── Administration │ │ │ │ ├── AccessLogs │ │ │ │ │ ├── ViewModels │ │ │ │ │ │ ├── AccessLogGridViewModel.Designer.cs │ │ │ │ │ │ ├── AccessLogGridViewModel.bg.designer.cs │ │ │ │ │ │ ├── AccessLogGridViewModel.bg.resx │ │ │ │ │ │ └── AccessLogGridViewModel.resx │ │ │ │ │ └── Views │ │ │ │ │ │ ├── AccessLogsIndex.Designer.cs │ │ │ │ │ │ ├── AccessLogsIndex.bg.Designer.cs │ │ │ │ │ │ ├── AccessLogsIndex.bg.resx │ │ │ │ │ │ └── AccessLogsIndex.resx │ │ │ │ ├── AdministrationGeneral.Designer.cs │ │ │ │ ├── AdministrationGeneral.bg.designer.cs │ │ │ │ ├── AdministrationGeneral.bg.resx │ │ │ │ ├── AdministrationGeneral.resx │ │ │ │ ├── AntiCheat │ │ │ │ │ └── Views │ │ │ │ │ │ ├── AntiCheatViews.Designer.cs │ │ │ │ │ │ ├── AntiCheatViews.bg.designer.cs │ │ │ │ │ │ ├── AntiCheatViews.bg.resx │ │ │ │ │ │ └── AntiCheatViews.resx │ │ │ │ ├── Checkers │ │ │ │ │ ├── ViewModels │ │ │ │ │ │ ├── CheckerAdministrationViewModel.Designer.cs │ │ │ │ │ │ ├── CheckerAdministrationViewModel.bg.designer.cs │ │ │ │ │ │ ├── CheckerAdministrationViewModel.bg.resx │ │ │ │ │ │ └── CheckerAdministrationViewModel.resx │ │ │ │ │ └── Views │ │ │ │ │ │ ├── CheckersIndex.Designer.cs │ │ │ │ │ │ ├── CheckersIndex.bg.designer.cs │ │ │ │ │ │ ├── CheckersIndex.bg.resx │ │ │ │ │ │ └── CheckersIndex.resx │ │ │ │ ├── ContestCategories │ │ │ │ │ ├── ViewModels │ │ │ │ │ │ ├── ContestCategoryAdministrationViewModel.Designer.cs │ │ │ │ │ │ ├── ContestCategoryAdministrationViewModel.bg.designer.cs │ │ │ │ │ │ ├── ContestCategoryAdministrationViewModel.bg.resx │ │ │ │ │ │ └── ContestCategoryAdministrationViewModel.resx │ │ │ │ │ └── Views │ │ │ │ │ │ ├── ContestCategoriesViews.Designer.cs │ │ │ │ │ │ ├── ContestCategoriesViews.bg.designer.cs │ │ │ │ │ │ ├── ContestCategoriesViews.bg.resx │ │ │ │ │ │ └── ContestCategoriesViews.resx │ │ │ │ ├── Contests │ │ │ │ │ ├── ContestsControllers.Designer.cs │ │ │ │ │ ├── ContestsControllers.bg.designer.cs │ │ │ │ │ ├── ContestsControllers.bg.resx │ │ │ │ │ ├── ContestsControllers.resx │ │ │ │ │ ├── ViewModels │ │ │ │ │ │ ├── ContestAdministration.Designer.cs │ │ │ │ │ │ ├── ContestAdministration.bg.Designer.cs │ │ │ │ │ │ ├── ContestAdministration.bg.resx │ │ │ │ │ │ ├── ContestAdministration.resx │ │ │ │ │ │ ├── ContestQuestion.Designer.cs │ │ │ │ │ │ ├── ContestQuestion.bg.designer.cs │ │ │ │ │ │ ├── ContestQuestion.bg.resx │ │ │ │ │ │ ├── ContestQuestion.resx │ │ │ │ │ │ ├── ContestQuestionAnswer.Designer.cs │ │ │ │ │ │ ├── ContestQuestionAnswer.bg.designer.cs │ │ │ │ │ │ ├── ContestQuestionAnswer.bg.resx │ │ │ │ │ │ ├── ContestQuestionAnswer.resx │ │ │ │ │ │ ├── ShortContestAdministration.Designer.cs │ │ │ │ │ │ ├── ShortContestAdministration.bg.Designer.cs │ │ │ │ │ │ ├── ShortContestAdministration.bg.resx │ │ │ │ │ │ └── ShortContestAdministration.resx │ │ │ │ │ └── Views │ │ │ │ │ │ ├── ContestCreate.bg.designer.cs │ │ │ │ │ │ ├── ContestCreate.bg.resx │ │ │ │ │ │ ├── ContestCreate.designer.cs │ │ │ │ │ │ ├── ContestCreate.resx │ │ │ │ │ │ ├── ContestEdit.Designer.cs │ │ │ │ │ │ ├── ContestEdit.bg.designer.cs │ │ │ │ │ │ ├── ContestEdit.bg.resx │ │ │ │ │ │ ├── ContestEdit.resx │ │ │ │ │ │ ├── ContestIndex.Designer.cs │ │ │ │ │ │ ├── ContestIndex.bg.designer.cs │ │ │ │ │ │ ├── ContestIndex.bg.resx │ │ │ │ │ │ ├── ContestIndex.resx │ │ │ │ │ │ ├── EditorTemplates │ │ │ │ │ │ ├── CategoryDropDown.Designer.cs │ │ │ │ │ │ ├── CategoryDropDown.bg.designer.cs │ │ │ │ │ │ ├── CategoryDropDown.bg.resx │ │ │ │ │ │ ├── CategoryDropDown.resx │ │ │ │ │ │ ├── SubmissionTypeCheckBoxes.Designer.cs │ │ │ │ │ │ ├── SubmissionTypeCheckBoxes.bg.designer.cs │ │ │ │ │ │ ├── SubmissionTypeCheckBoxes.bg.resx │ │ │ │ │ │ └── SubmissionTypeCheckBoxes.resx │ │ │ │ │ │ └── Partials │ │ │ │ │ │ ├── ContestEditor.Designer.cs │ │ │ │ │ │ ├── ContestEditor.bg.designer.cs │ │ │ │ │ │ ├── ContestEditor.bg.resx │ │ │ │ │ │ └── ContestEditor.resx │ │ │ │ ├── Feedback │ │ │ │ │ ├── ViewModels │ │ │ │ │ │ ├── FeedbackReport.Designer.cs │ │ │ │ │ │ ├── FeedbackReport.bg.designer.cs │ │ │ │ │ │ ├── FeedbackReport.bg.resx │ │ │ │ │ │ └── FeedbackReport.resx │ │ │ │ │ └── Views │ │ │ │ │ │ ├── FeedbackIndexAdmin.Designer.cs │ │ │ │ │ │ ├── FeedbackIndexAdmin.bg.Designer.cs │ │ │ │ │ │ ├── FeedbackIndexAdmin.bg.resx │ │ │ │ │ │ └── FeedbackIndexAdmin.resx │ │ │ │ ├── News │ │ │ │ │ ├── ViewModels │ │ │ │ │ │ ├── NewsAdministration.Designer.cs │ │ │ │ │ │ ├── NewsAdministration.bg.designer.cs │ │ │ │ │ │ ├── NewsAdministration.bg.resx │ │ │ │ │ │ └── NewsAdministration.resx │ │ │ │ │ └── Views │ │ │ │ │ │ ├── NewsIndex.Designer.cs │ │ │ │ │ │ ├── NewsIndex.bg.designer.cs │ │ │ │ │ │ ├── NewsIndex.bg.resx │ │ │ │ │ │ └── NewsIndex.resx │ │ │ │ ├── Participants │ │ │ │ │ ├── ViewModels │ │ │ │ │ │ ├── ParticipantViewModels.Designer.cs │ │ │ │ │ │ ├── ParticipantViewModels.bg.designer.cs │ │ │ │ │ │ ├── ParticipantViewModels.bg.resx │ │ │ │ │ │ └── ParticipantViewModels.resx │ │ │ │ │ └── Views │ │ │ │ │ │ ├── EditorTemplates │ │ │ │ │ │ ├── ParticipantEditorTemplates.Designer.cs │ │ │ │ │ │ ├── ParticipantEditorTemplates.bg.designer.cs │ │ │ │ │ │ ├── ParticipantEditorTemplates.bg.resx │ │ │ │ │ │ └── ParticipantEditorTemplates.resx │ │ │ │ │ │ ├── Partials │ │ │ │ │ │ ├── Participants.Designer.cs │ │ │ │ │ │ ├── Participants.bg.designer.cs │ │ │ │ │ │ ├── Participants.bg.resx │ │ │ │ │ │ └── Participants.resx │ │ │ │ │ │ ├── ParticipantsContest.bg.designer.cs │ │ │ │ │ │ ├── ParticipantsContest.bg.resx │ │ │ │ │ │ ├── ParticipantsContest.designer.cs │ │ │ │ │ │ ├── ParticipantsContest.resx │ │ │ │ │ │ ├── ParticipantsIndex.Designer.cs │ │ │ │ │ │ ├── ParticipantsIndex.bg.designer.cs │ │ │ │ │ │ ├── ParticipantsIndex.bg.resx │ │ │ │ │ │ └── ParticipantsIndex.resx │ │ │ │ ├── Problems │ │ │ │ │ ├── ProblemsControllers.Designer.cs │ │ │ │ │ ├── ProblemsControllers.bg.designer.cs │ │ │ │ │ ├── ProblemsControllers.bg.resx │ │ │ │ │ ├── ProblemsControllers.resx │ │ │ │ │ ├── ViewModels │ │ │ │ │ │ ├── DetailedProblem.Designer.cs │ │ │ │ │ │ ├── DetailedProblem.bg.designer.cs │ │ │ │ │ │ ├── DetailedProblem.bg.resx │ │ │ │ │ │ ├── DetailedProblem.resx │ │ │ │ │ │ ├── ProblemResources.bg.designer.cs │ │ │ │ │ │ ├── ProblemResources.bg.resx │ │ │ │ │ │ ├── ProblemResources.designer.cs │ │ │ │ │ │ └── ProblemResources.resx │ │ │ │ │ └── Views │ │ │ │ │ │ ├── Partials │ │ │ │ │ │ ├── ProblemsPartials.Designer.cs │ │ │ │ │ │ ├── ProblemsPartials.bg.designer.cs │ │ │ │ │ │ ├── ProblemsPartials.bg.resx │ │ │ │ │ │ └── ProblemsPartials.resx │ │ │ │ │ │ ├── ProblemsCreate.Designer.cs │ │ │ │ │ │ ├── ProblemsCreate.bg.designer.cs │ │ │ │ │ │ ├── ProblemsCreate.bg.resx │ │ │ │ │ │ ├── ProblemsCreate.resx │ │ │ │ │ │ ├── ProblemsDelete.Designer.cs │ │ │ │ │ │ ├── ProblemsDelete.bg.designer.cs │ │ │ │ │ │ ├── ProblemsDelete.bg.resx │ │ │ │ │ │ ├── ProblemsDelete.resx │ │ │ │ │ │ ├── ProblemsDeleteAll.Designer.cs │ │ │ │ │ │ ├── ProblemsDeleteAll.bg.designer.cs │ │ │ │ │ │ ├── ProblemsDeleteAll.bg.resx │ │ │ │ │ │ ├── ProblemsDeleteAll.resx │ │ │ │ │ │ ├── ProblemsDetails.Designer.cs │ │ │ │ │ │ ├── ProblemsDetails.bg.designer.cs │ │ │ │ │ │ ├── ProblemsDetails.bg.resx │ │ │ │ │ │ ├── ProblemsDetails.resx │ │ │ │ │ │ ├── ProblemsEdit.Designer.cs │ │ │ │ │ │ ├── ProblemsEdit.bg.designer.cs │ │ │ │ │ │ ├── ProblemsEdit.bg.resx │ │ │ │ │ │ ├── ProblemsEdit.resx │ │ │ │ │ │ ├── ProblemsIndex.Designer.cs │ │ │ │ │ │ ├── ProblemsIndex.bg.designer.cs │ │ │ │ │ │ ├── ProblemsIndex.bg.resx │ │ │ │ │ │ └── ProblemsIndex.resx │ │ │ │ ├── Resources │ │ │ │ │ ├── ResourcesControllers.Designer.cs │ │ │ │ │ ├── ResourcesControllers.bg.designer.cs │ │ │ │ │ ├── ResourcesControllers.bg.resx │ │ │ │ │ ├── ResourcesControllers.resx │ │ │ │ │ └── Views │ │ │ │ │ │ ├── ResourcesCreate.Designer.cs │ │ │ │ │ │ ├── ResourcesCreate.bg.designer.cs │ │ │ │ │ │ ├── ResourcesCreate.bg.resx │ │ │ │ │ │ ├── ResourcesCreate.resx │ │ │ │ │ │ ├── ResourcesEdit.Designer.cs │ │ │ │ │ │ ├── ResourcesEdit.bg.designer.cs │ │ │ │ │ │ ├── ResourcesEdit.bg.resx │ │ │ │ │ │ └── ResourcesEdit.resx │ │ │ │ ├── Roles │ │ │ │ │ ├── ViewModels │ │ │ │ │ │ ├── RolesViewModels.Designer.cs │ │ │ │ │ │ ├── RolesViewModels.bg.designer.cs │ │ │ │ │ │ ├── RolesViewModels.bg.resx │ │ │ │ │ │ └── RolesViewModels.resx │ │ │ │ │ └── Views │ │ │ │ │ │ ├── RolesIndex.Designer.cs │ │ │ │ │ │ ├── RolesIndex.bg.designer.cs │ │ │ │ │ │ ├── RolesIndex.bg.resx │ │ │ │ │ │ └── RolesIndex.resx │ │ │ │ ├── Settings │ │ │ │ │ ├── ViewModels │ │ │ │ │ │ ├── SettingAdministration.Designer.cs │ │ │ │ │ │ ├── SettingAdministration.bg.designer.cs │ │ │ │ │ │ ├── SettingAdministration.bg.resx │ │ │ │ │ │ └── SettingAdministration.resx │ │ │ │ │ └── Views │ │ │ │ │ │ ├── SettingsAdministrationIndex.Designer.cs │ │ │ │ │ │ ├── SettingsAdministrationIndex.bg.Designer.cs │ │ │ │ │ │ ├── SettingsAdministrationIndex.bg.resx │ │ │ │ │ │ └── SettingsAdministrationIndex.resx │ │ │ │ ├── Shared │ │ │ │ │ └── Views │ │ │ │ │ │ └── Partials │ │ │ │ │ │ ├── Partials.Designer.cs │ │ │ │ │ │ ├── Partials.bg.designer.cs │ │ │ │ │ │ ├── Partials.bg.resx │ │ │ │ │ │ └── Partials.resx │ │ │ │ ├── SubmissionTypes │ │ │ │ │ ├── ViewModels │ │ │ │ │ │ ├── SubmissionTypeAdministration.Designer.cs │ │ │ │ │ │ ├── SubmissionTypeAdministration.bg.designer.cs │ │ │ │ │ │ ├── SubmissionTypeAdministration.bg.resx │ │ │ │ │ │ └── SubmissionTypeAdministration.resx │ │ │ │ │ └── Views │ │ │ │ │ │ ├── SubmissionTypesIndex.Designer.cs │ │ │ │ │ │ ├── SubmissionTypesIndex.bg.designer.cs │ │ │ │ │ │ ├── SubmissionTypesIndex.bg.resx │ │ │ │ │ │ └── SubmissionTypesIndex.resx │ │ │ │ ├── Submissions │ │ │ │ │ ├── SubmissionsControllers.Designer.cs │ │ │ │ │ ├── SubmissionsControllers.bg.designer.cs │ │ │ │ │ ├── SubmissionsControllers.bg.resx │ │ │ │ │ ├── SubmissionsControllers.resx │ │ │ │ │ ├── ViewModels │ │ │ │ │ │ ├── SubmissionAdministration.Designer.cs │ │ │ │ │ │ ├── SubmissionAdministration.bg.designer.cs │ │ │ │ │ │ ├── SubmissionAdministration.bg.resx │ │ │ │ │ │ └── SubmissionAdministration.resx │ │ │ │ │ └── Views │ │ │ │ │ │ ├── EditorTemplates │ │ │ │ │ │ ├── SubmissionsEditorTemplates.Designer.cs │ │ │ │ │ │ ├── SubmissionsEditorTemplates.bg.Designer.cs │ │ │ │ │ │ ├── SubmissionsEditorTemplates.bg.resx │ │ │ │ │ │ └── SubmissionsEditorTemplates.resx │ │ │ │ │ │ ├── Partials │ │ │ │ │ │ ├── SubmissionForm.Designer.cs │ │ │ │ │ │ ├── SubmissionForm.bg.designer.cs │ │ │ │ │ │ ├── SubmissionForm.bg.resx │ │ │ │ │ │ ├── SubmissionForm.resx │ │ │ │ │ │ ├── SubmissionsGrid.Designer.cs │ │ │ │ │ │ ├── SubmissionsGrid.bg.designer.cs │ │ │ │ │ │ ├── SubmissionsGrid.bg.resx │ │ │ │ │ │ └── SubmissionsGrid.resx │ │ │ │ │ │ ├── SubmissionsCreate.Designer.cs │ │ │ │ │ │ ├── SubmissionsCreate.bg.designer.cs │ │ │ │ │ │ ├── SubmissionsCreate.bg.resx │ │ │ │ │ │ ├── SubmissionsCreate.resx │ │ │ │ │ │ ├── SubmissionsDelete.Designer.cs │ │ │ │ │ │ ├── SubmissionsDelete.bg.designer.cs │ │ │ │ │ │ ├── SubmissionsDelete.bg.resx │ │ │ │ │ │ ├── SubmissionsDelete.resx │ │ │ │ │ │ ├── SubmissionsIndex.Designer.cs │ │ │ │ │ │ ├── SubmissionsIndex.bg.designer.cs │ │ │ │ │ │ ├── SubmissionsIndex.bg.resx │ │ │ │ │ │ ├── SubmissionsIndex.resx │ │ │ │ │ │ ├── SubmissionsUpdate.Designer.cs │ │ │ │ │ │ ├── SubmissionsUpdate.bg.designer.cs │ │ │ │ │ │ ├── SubmissionsUpdate.bg.resx │ │ │ │ │ │ └── SubmissionsUpdate.resx │ │ │ │ ├── Tests │ │ │ │ │ ├── TestsControllers.bg.designer.cs │ │ │ │ │ ├── TestsControllers.bg.resx │ │ │ │ │ ├── TestsControllers.designer.cs │ │ │ │ │ ├── TestsControllers.resx │ │ │ │ │ ├── ViewModels │ │ │ │ │ │ ├── TestAdministration.Designer.cs │ │ │ │ │ │ ├── TestAdministration.bg.designer.cs │ │ │ │ │ │ ├── TestAdministration.bg.resx │ │ │ │ │ │ └── TestAdministration.resx │ │ │ │ │ └── Views │ │ │ │ │ │ ├── TestsCreate.Designer.cs │ │ │ │ │ │ ├── TestsCreate.bg.designer.cs │ │ │ │ │ │ ├── TestsCreate.bg.resx │ │ │ │ │ │ ├── TestsCreate.resx │ │ │ │ │ │ ├── TestsDelete.Designer.cs │ │ │ │ │ │ ├── TestsDelete.bg.designer.cs │ │ │ │ │ │ ├── TestsDelete.bg.resx │ │ │ │ │ │ ├── TestsDelete.resx │ │ │ │ │ │ ├── TestsDeleteAll.Designer.cs │ │ │ │ │ │ ├── TestsDeleteAll.bg.designer.cs │ │ │ │ │ │ ├── TestsDeleteAll.bg.resx │ │ │ │ │ │ ├── TestsDeleteAll.resx │ │ │ │ │ │ ├── TestsDetails.bg.designer.cs │ │ │ │ │ │ ├── TestsDetails.bg.resx │ │ │ │ │ │ ├── TestsDetails.designer.cs │ │ │ │ │ │ ├── TestsDetails.resx │ │ │ │ │ │ ├── TestsEdit.Designer.cs │ │ │ │ │ │ ├── TestsEdit.bg.designer.cs │ │ │ │ │ │ ├── TestsEdit.bg.resx │ │ │ │ │ │ ├── TestsEdit.resx │ │ │ │ │ │ ├── TestsIndex.Designer.cs │ │ │ │ │ │ ├── TestsIndex.bg.designer.cs │ │ │ │ │ │ ├── TestsIndex.bg.resx │ │ │ │ │ │ └── TestsIndex.resx │ │ │ │ └── Users │ │ │ │ │ ├── ViewModels │ │ │ │ │ ├── UserProfileAdministration.Designer.cs │ │ │ │ │ ├── UserProfileAdministration.bg.designer.cs │ │ │ │ │ ├── UserProfileAdministration.bg.resx │ │ │ │ │ └── UserProfileAdministration.resx │ │ │ │ │ └── Views │ │ │ │ │ ├── UsersIndex.Designer.cs │ │ │ │ │ ├── UsersIndex.bg.designer.cs │ │ │ │ │ ├── UsersIndex.bg.resx │ │ │ │ │ └── UsersIndex.resx │ │ │ ├── Contests │ │ │ │ ├── ContestsGeneral.Designer.cs │ │ │ │ ├── ContestsGeneral.bg.Designer.cs │ │ │ │ ├── ContestsGeneral.bg.resx │ │ │ │ ├── ContestsGeneral.resx │ │ │ │ ├── Controllers │ │ │ │ │ ├── Tests.bg.designer.cs │ │ │ │ │ ├── Tests.bg.resx │ │ │ │ │ ├── Tests.designer.cs │ │ │ │ │ └── Tests.resx │ │ │ │ ├── Shared │ │ │ │ │ ├── ContestsAllContestSubmissionsByUser.Designer.cs │ │ │ │ │ ├── ContestsAllContestSubmissionsByUser.bg.designer.cs │ │ │ │ │ ├── ContestsAllContestSubmissionsByUser.bg.resx │ │ │ │ │ ├── ContestsAllContestSubmissionsByUser.resx │ │ │ │ │ ├── ContestsProblemPartial.Designer.cs │ │ │ │ │ ├── ContestsProblemPartial.bg.Designer.cs │ │ │ │ │ ├── ContestsProblemPartial.bg.resx │ │ │ │ │ └── ContestsProblemPartial.resx │ │ │ │ ├── ViewModels │ │ │ │ │ ├── ContestsViewModels.Designer.cs │ │ │ │ │ ├── ContestsViewModels.bg.designer.cs │ │ │ │ │ ├── ContestsViewModels.bg.resx │ │ │ │ │ ├── ContestsViewModels.resx │ │ │ │ │ ├── ProblemsViewModels.Designer.cs │ │ │ │ │ ├── ProblemsViewModels.bg.designer.cs │ │ │ │ │ ├── ProblemsViewModels.bg.resx │ │ │ │ │ ├── ProblemsViewModels.resx │ │ │ │ │ ├── SubmissionsViewModels.Designer.cs │ │ │ │ │ ├── SubmissionsViewModels.bg.designer.cs │ │ │ │ │ ├── SubmissionsViewModels.bg.resx │ │ │ │ │ └── SubmissionsViewModels.resx │ │ │ │ └── Views │ │ │ │ │ ├── Compete │ │ │ │ │ ├── CompeteIndex.Designer.cs │ │ │ │ │ ├── CompeteIndex.bg.designer.cs │ │ │ │ │ ├── CompeteIndex.bg.resx │ │ │ │ │ ├── CompeteIndex.resx │ │ │ │ │ ├── CompeteRegister.Designer.cs │ │ │ │ │ ├── CompeteRegister.bg.Designer.cs │ │ │ │ │ ├── CompeteRegister.bg.resx │ │ │ │ │ └── CompeteRegister.resx │ │ │ │ │ ├── Contests │ │ │ │ │ ├── ContestsDetails.Designer.cs │ │ │ │ │ ├── ContestsDetails.bg.designer.cs │ │ │ │ │ ├── ContestsDetails.bg.resx │ │ │ │ │ └── ContestsDetails.resx │ │ │ │ │ ├── List │ │ │ │ │ ├── ListByCategory.Designer.cs │ │ │ │ │ ├── ListByCategory.bg.Designer.cs │ │ │ │ │ ├── ListByCategory.bg.resx │ │ │ │ │ ├── ListByCategory.resx │ │ │ │ │ ├── ListByType.Designer.cs │ │ │ │ │ ├── ListByType.bg.designer.cs │ │ │ │ │ ├── ListByType.bg.resx │ │ │ │ │ ├── ListByType.resx │ │ │ │ │ ├── ListIndex.bg.designer.cs │ │ │ │ │ ├── ListIndex.bg.resx │ │ │ │ │ ├── ListIndex.designer.cs │ │ │ │ │ └── ListIndex.resx │ │ │ │ │ ├── Results │ │ │ │ │ ├── Partials │ │ │ │ │ │ ├── StatsPartial.Designer.cs │ │ │ │ │ │ ├── StatsPartial.bg.designer.cs │ │ │ │ │ │ ├── StatsPartial.bg.resx │ │ │ │ │ │ └── StatsPartial.resx │ │ │ │ │ ├── ResultsFull.bg.Designer.cs │ │ │ │ │ ├── ResultsFull.bg.resx │ │ │ │ │ ├── ResultsFull.designer.cs │ │ │ │ │ ├── ResultsFull.resx │ │ │ │ │ ├── ResultsSimple.Designer.cs │ │ │ │ │ ├── ResultsSimple.bg.Designer.cs │ │ │ │ │ ├── ResultsSimple.bg.resx │ │ │ │ │ └── ResultsSimple.resx │ │ │ │ │ └── Submissions │ │ │ │ │ ├── SubmissionsView.Designer.cs │ │ │ │ │ ├── SubmissionsView.bg.designer.cs │ │ │ │ │ ├── SubmissionsView.bg.resx │ │ │ │ │ └── SubmissionsView.resx │ │ │ └── Users │ │ │ │ ├── Shared │ │ │ │ ├── ProfileProfileInfo.Designer.cs │ │ │ │ ├── ProfileProfileInfo.bg.Designer.cs │ │ │ │ ├── ProfileProfileInfo.bg.resx │ │ │ │ └── ProfileProfileInfo.resx │ │ │ │ ├── ViewModels │ │ │ │ ├── ProfileViewModels.Designer.cs │ │ │ │ ├── ProfileViewModels.bg.Designer.cs │ │ │ │ ├── ProfileViewModels.bg.resx │ │ │ │ └── ProfileViewModels.resx │ │ │ │ └── Views │ │ │ │ ├── Profile │ │ │ │ ├── ProfileIndex.Designer.cs │ │ │ │ ├── ProfileIndex.bg.Designer.cs │ │ │ │ ├── ProfileIndex.bg.resx │ │ │ │ └── ProfileIndex.resx │ │ │ │ └── Settings │ │ │ │ ├── SettingsIndex.Designer.cs │ │ │ │ ├── SettingsIndex.bg.designer.cs │ │ │ │ ├── SettingsIndex.bg.resx │ │ │ │ └── SettingsIndex.resx │ │ ├── Base │ │ │ ├── Main.Designer.cs │ │ │ ├── Main.bg.Designer.cs │ │ │ ├── Main.bg.resx │ │ │ └── Main.resx │ │ ├── Feedback │ │ │ ├── ViewModels │ │ │ │ ├── FeedbackViewModels.Designer.cs │ │ │ │ ├── FeedbackViewModels.bg.designer.cs │ │ │ │ ├── FeedbackViewModels.bg.resx │ │ │ │ └── FeedbackViewModels.resx │ │ │ └── Views │ │ │ │ ├── FeedbackIndex.Designer.cs │ │ │ │ ├── FeedbackIndex.bg.designer.cs │ │ │ │ ├── FeedbackIndex.bg.resx │ │ │ │ ├── FeedbackIndex.resx │ │ │ │ ├── FeedbackSubmitted.Designer.cs │ │ │ │ ├── FeedbackSubmitted.bg.designer.cs │ │ │ │ ├── FeedbackSubmitted.bg.resx │ │ │ │ └── FeedbackSubmitted.resx │ │ ├── Global.Designer.cs │ │ ├── Global.resx │ │ ├── Home │ │ │ └── Views │ │ │ │ ├── Index.bg.designer.cs │ │ │ │ ├── Index.bg.resx │ │ │ │ ├── Index.designer.cs │ │ │ │ └── Index.resx │ │ ├── Models │ │ │ ├── ContestQuestionTypeResource.bg.Designer.cs │ │ │ ├── ContestQuestionTypeResource.bg.resx │ │ │ ├── ContestQuestionTypeResource.designer.cs │ │ │ └── ContestQuestionTypeResource.resx │ │ ├── News │ │ │ └── Views │ │ │ │ ├── All.Designer.cs │ │ │ │ ├── All.bg.designer.cs │ │ │ │ ├── All.bg.resx │ │ │ │ ├── All.resx │ │ │ │ ├── LatestNews.Designer.cs │ │ │ │ ├── LatestNews.bg.designer.cs │ │ │ │ ├── LatestNews.bg.resx │ │ │ │ ├── LatestNews.resx │ │ │ │ ├── Selected.Designer.cs │ │ │ │ ├── Selected.bg.designer.cs │ │ │ │ ├── Selected.bg.resx │ │ │ │ └── Selected.resx │ │ ├── Search │ │ │ └── Views │ │ │ │ ├── SearchIndex.bg.Designer.cs │ │ │ │ ├── SearchIndex.bg.resx │ │ │ │ ├── SearchIndex.designer.cs │ │ │ │ ├── SearchIndex.resx │ │ │ │ ├── SearchResults.Designer.cs │ │ │ │ ├── SearchResults.bg.Designer.cs │ │ │ │ ├── SearchResults.bg.resx │ │ │ │ └── SearchResults.resx │ │ ├── Submissions │ │ │ └── Views │ │ │ │ ├── AdvancedSubmissions.Designer.cs │ │ │ │ ├── AdvancedSubmissions.bg.designer.cs │ │ │ │ ├── AdvancedSubmissions.bg.resx │ │ │ │ ├── AdvancedSubmissions.resx │ │ │ │ ├── BasicSubmissions.Designer.cs │ │ │ │ ├── BasicSubmissions.bg.designer.cs │ │ │ │ ├── BasicSubmissions.bg.resx │ │ │ │ ├── BasicSubmissions.resx │ │ │ │ └── Partial │ │ │ │ ├── AdvancedSubmissionsGridPartial.Designer.cs │ │ │ │ ├── AdvancedSubmissionsGridPartial.bg.designer.cs │ │ │ │ ├── AdvancedSubmissionsGridPartial.bg.resx │ │ │ │ └── AdvancedSubmissionsGridPartial.resx │ │ └── Views │ │ │ └── Shared │ │ │ ├── Layout.Designer.cs │ │ │ ├── Layout.bg.designer.cs │ │ │ ├── Layout.bg.resx │ │ │ ├── Layout.resx │ │ │ ├── LoginPartial.bg.designer.cs │ │ │ ├── LoginPartial.bg.resx │ │ │ ├── LoginPartial.designer.cs │ │ │ └── LoginPartial.resx │ │ ├── App_Start │ │ ├── BundleConfig.cs │ │ ├── FilterConfig.cs │ │ ├── GlimpseSecurityPolicy.cs │ │ ├── LoggingModule.cs │ │ ├── NinjectWebCommon.cs │ │ ├── RouteConfig.cs │ │ ├── Settings.cs │ │ ├── Startup.Auth.cs │ │ └── ViewEngineConfig.cs │ │ ├── Areas │ │ ├── Administration │ │ │ ├── AdministrationAreaRegistration.cs │ │ │ ├── Controllers │ │ │ │ ├── AccessLogsController.cs │ │ │ │ ├── AntiCheatController.cs │ │ │ │ ├── CheckersController.cs │ │ │ │ ├── Common │ │ │ │ │ ├── AdministrationBaseController.cs │ │ │ │ │ ├── AdministrationBaseGridController.cs │ │ │ │ │ ├── LecturerBaseController.cs │ │ │ │ │ └── LecturerBaseGridController.cs │ │ │ │ ├── ContestCategoriesController.cs │ │ │ │ ├── ContestQuestionAnswersController.cs │ │ │ │ ├── ContestQuestionsController.cs │ │ │ │ ├── ContestsController.cs │ │ │ │ ├── ContestsExportController.cs │ │ │ │ ├── FeedbackController.cs │ │ │ │ ├── LecturersController.cs │ │ │ │ ├── LecturersInContestCategoriesController.cs │ │ │ │ ├── LecturersInContestsController.cs │ │ │ │ ├── NavigationController.cs │ │ │ │ ├── NewsController.cs │ │ │ │ ├── ParticipantsController.cs │ │ │ │ ├── ProblemsController.cs │ │ │ │ ├── ResourcesController.cs │ │ │ │ ├── RolesController.cs │ │ │ │ ├── SettingsController.cs │ │ │ │ ├── SubmissionTypesController.cs │ │ │ │ ├── SubmissionsController.cs │ │ │ │ ├── TestsController.cs │ │ │ │ └── UsersController.cs │ │ │ ├── InputModels │ │ │ │ ├── AntiCheat │ │ │ │ │ └── SubmissionSimilarityFiltersInputModel.cs │ │ │ │ └── Contests │ │ │ │ │ └── LabStartInputModel.cs │ │ │ ├── Models │ │ │ │ ├── ParticipantModel.cs │ │ │ │ ├── ParticipantScoreModel.cs │ │ │ │ └── ProblemModel.cs │ │ │ ├── Providers │ │ │ │ ├── Common │ │ │ │ │ └── BaseNewsProvider.cs │ │ │ │ ├── Contracts │ │ │ │ │ └── INewsProvider.cs │ │ │ │ ├── InfoManNewsProvider.cs │ │ │ │ ├── InfosNewsProvider.cs │ │ │ │ └── SoftUniNewsProvier.cs │ │ │ ├── ViewModels │ │ │ │ ├── AccessLogs │ │ │ │ │ └── AccessLogGridViewModel.cs │ │ │ │ ├── AntiCheat │ │ │ │ │ ├── AntiCheatByIpAdministrationViewModel.cs │ │ │ │ │ ├── IpSubmissionsAdministrationViewModel.cs │ │ │ │ │ └── SubmissionSimilarityViewModel.cs │ │ │ │ ├── Checker │ │ │ │ │ └── CheckerAdministrationViewModel.cs │ │ │ │ ├── Common │ │ │ │ │ └── AdministrationViewModel.cs │ │ │ │ ├── Contest │ │ │ │ │ ├── ContestAdministrationViewModel.cs │ │ │ │ │ ├── IpAdministrationViewModel.cs │ │ │ │ │ └── ShortContestAdministrationViewModel.cs │ │ │ │ ├── ContestCategory │ │ │ │ │ └── ContestCategoryAdministrationViewModel.cs │ │ │ │ ├── ContestQuestion │ │ │ │ │ └── ContestQuestionViewModel.cs │ │ │ │ ├── ContestQuestionAnswer │ │ │ │ │ └── ContestQuestionAnswerViewModel.cs │ │ │ │ ├── FeedbackReport │ │ │ │ │ └── FeedbackReportViewModel.cs │ │ │ │ ├── Lecturers │ │ │ │ │ └── LecturerGridViewModel.cs │ │ │ │ ├── LecturersInContestCategories │ │ │ │ │ └── LecturerInContestCategoryShortViewModel.cs │ │ │ │ ├── LecturersInContests │ │ │ │ │ └── LecturerInContestShortViewModel.cs │ │ │ │ ├── News │ │ │ │ │ └── NewsAdministrationViewModel.cs │ │ │ │ ├── Participant │ │ │ │ │ ├── ContestViewModel.cs │ │ │ │ │ ├── ParticipantAdministrationViewModel.cs │ │ │ │ │ ├── ParticipantAnswerViewModel.cs │ │ │ │ │ └── UserViewModel.cs │ │ │ │ ├── Problem │ │ │ │ │ ├── DetailedProblemViewModel.cs │ │ │ │ │ └── ProblemViewModel.cs │ │ │ │ ├── ProblemResource │ │ │ │ │ ├── ProblemResourceGridViewModel.cs │ │ │ │ │ └── ProblemResourceViewModel.cs │ │ │ │ ├── Roles │ │ │ │ │ ├── RoleAdministrationViewModel.cs │ │ │ │ │ └── UserInRoleAdministrationViewModel.cs │ │ │ │ ├── Setting │ │ │ │ │ └── SettingAdministrationViewModel.cs │ │ │ │ ├── Submission │ │ │ │ │ ├── SubmissionAdministrationGridViewModel.cs │ │ │ │ │ └── SubmissionAdministrationViewModel.cs │ │ │ │ ├── SubmissionType │ │ │ │ │ ├── SubmissionTypeAdministrationViewModel.cs │ │ │ │ │ └── SubmissionTypeViewModel.cs │ │ │ │ ├── Test │ │ │ │ │ └── TestViewModel.cs │ │ │ │ ├── TestRun │ │ │ │ │ └── TestRunViewModel.cs │ │ │ │ └── User │ │ │ │ │ └── UserProfileAdministrationViewModel.cs │ │ │ └── Views │ │ │ │ ├── AccessLogs │ │ │ │ └── Index.cshtml │ │ │ │ ├── AntiCheat │ │ │ │ ├── ByIP.cshtml │ │ │ │ ├── BySubmissionSimilarity.cshtml │ │ │ │ ├── _ContestsComboBox.cshtml │ │ │ │ ├── _IPGrid.cshtml │ │ │ │ └── _SubmissionsGrid.cshtml │ │ │ │ ├── Checkers │ │ │ │ └── Index.cshtml │ │ │ │ ├── ContestCategories │ │ │ │ ├── Hierarchy.cshtml │ │ │ │ └── Index.cshtml │ │ │ │ ├── Contests │ │ │ │ ├── Create.cshtml │ │ │ │ ├── Edit.cshtml │ │ │ │ ├── EditorTemplates │ │ │ │ │ ├── CategoryDropDown.cshtml │ │ │ │ │ ├── ContestQuestionType.cshtml │ │ │ │ │ └── SubmissionTypeCheckBoxes.cshtml │ │ │ │ ├── Index.cshtml │ │ │ │ └── _ContestEditor.cshtml │ │ │ │ ├── Feedback │ │ │ │ └── Index.cshtml │ │ │ │ ├── Lecturers │ │ │ │ └── Index.cshtml │ │ │ │ ├── LecturersInContestCategories │ │ │ │ └── _LecturerInContestCategoriesGridTemplate.cshtml │ │ │ │ ├── LecturersInContests │ │ │ │ └── _LecturerInContestsGridTemplate.cshtml │ │ │ │ ├── Navigation │ │ │ │ └── Index.cshtml │ │ │ │ ├── News │ │ │ │ └── Index.cshtml │ │ │ │ ├── Participants │ │ │ │ ├── Contest.cshtml │ │ │ │ ├── EditorTemplates │ │ │ │ │ ├── ContestsComboBox.cshtml │ │ │ │ │ └── UsersComboBox.cshtml │ │ │ │ ├── Index.cshtml │ │ │ │ └── _Participants.cshtml │ │ │ │ ├── Problems │ │ │ │ ├── Create.cshtml │ │ │ │ ├── Delete.cshtml │ │ │ │ ├── DeleteAll.cshtml │ │ │ │ ├── Details.cshtml │ │ │ │ ├── Edit.cshtml │ │ │ │ ├── Index.cshtml │ │ │ │ ├── _ResourcesGrid.cshtml │ │ │ │ └── _SubmissionsGrid.cshtml │ │ │ │ ├── Resources │ │ │ │ ├── Create.cshtml │ │ │ │ └── Edit.cshtml │ │ │ │ ├── Roles │ │ │ │ ├── EditorTemplates │ │ │ │ │ └── AddUserToRole.cshtml │ │ │ │ └── Index.cshtml │ │ │ │ ├── Settings │ │ │ │ └── Index.cshtml │ │ │ │ ├── Shared │ │ │ │ ├── EditorTemplates │ │ │ │ │ ├── Date.cshtml │ │ │ │ │ ├── DateAndTime.cshtml │ │ │ │ │ ├── DisabledCheckbox.cshtml │ │ │ │ │ ├── DropDownList.cshtml │ │ │ │ │ ├── DropDownListCustom.cshtml │ │ │ │ │ ├── Enum.cshtml │ │ │ │ │ ├── HtmlContent.cshtml │ │ │ │ │ ├── Integer.cshtml │ │ │ │ │ ├── LecturerInContest.cshtml │ │ │ │ │ ├── LecturerInContestCategory.cshtml │ │ │ │ │ ├── MultiLineText.cshtml │ │ │ │ │ ├── NonEditable.cshtml │ │ │ │ │ ├── PositiveInteger.cshtml │ │ │ │ │ └── SingleLineText.cshtml │ │ │ │ ├── _AdministrationLayout.cshtml │ │ │ │ ├── _CopyQuestionsFromContest.cshtml │ │ │ │ ├── _DownloadSubmissionsPopupWindow.cshtml │ │ │ │ ├── _LabStartPopupWindow.cshtml │ │ │ │ ├── _LecturersInContestsAndCategoriesTabStrip.cshtml │ │ │ │ ├── _ProblemResourceForm.cshtml │ │ │ │ └── _QuickContestsGrid.cshtml │ │ │ │ ├── SubmissionTypes │ │ │ │ └── Index.cshtml │ │ │ │ ├── Submissions │ │ │ │ ├── Create.cshtml │ │ │ │ ├── Delete.cshtml │ │ │ │ ├── EditorTemplates │ │ │ │ │ ├── ParticipantDropDownList.cshtml │ │ │ │ │ ├── ProblemComboBox.cshtml │ │ │ │ │ ├── SubmissionAdministrationViewModel.cshtml │ │ │ │ │ └── SubmissionTypesDropDownList.cshtml │ │ │ │ ├── Index.cshtml │ │ │ │ ├── Update.cshtml │ │ │ │ ├── _SubmissionForm.cshtml │ │ │ │ └── _SubmissionsGrid.cshtml │ │ │ │ ├── Tests │ │ │ │ ├── Create.cshtml │ │ │ │ ├── Delete.cshtml │ │ │ │ ├── DeleteAll.cshtml │ │ │ │ ├── Details.cshtml │ │ │ │ ├── Edit.cshtml │ │ │ │ └── Index.cshtml │ │ │ │ ├── Users │ │ │ │ └── Index.cshtml │ │ │ │ ├── Web.config │ │ │ │ └── _ViewStart.cshtml │ │ ├── Api │ │ │ ├── ApiAreaRegistration.cs │ │ │ ├── Controllers │ │ │ │ ├── ApiController.cs │ │ │ │ ├── ResultsController.cs │ │ │ │ └── SubmissionsController.cs │ │ │ └── Models │ │ │ │ └── ErrorMessageViewModel.cs │ │ ├── Contests │ │ │ ├── ContestsAreaRegistration.cs │ │ │ ├── Controllers │ │ │ │ ├── CompeteController.cs │ │ │ │ ├── ContestsController.cs │ │ │ │ ├── LabsController.cs │ │ │ │ ├── ListController.cs │ │ │ │ ├── ResultsController.cs │ │ │ │ ├── SubmissionsController.cs │ │ │ │ └── TestsController.cs │ │ │ ├── Helpers │ │ │ │ └── ContestExtensions.cs │ │ │ ├── Models │ │ │ │ ├── BinarySubmissionModel.cs │ │ │ │ ├── ContestQuestionAnswerModel.cs │ │ │ │ ├── ContestRegistrationModel.cs │ │ │ │ ├── SubmissionExportType.cs │ │ │ │ └── SubmissionModel.cs │ │ │ ├── ViewModels │ │ │ │ ├── Contests │ │ │ │ │ ├── ContestCategoryListViewModel.cs │ │ │ │ │ ├── ContestCategoryViewModel.cs │ │ │ │ │ ├── ContestPointsRangeViewModel.cs │ │ │ │ │ ├── ContestProblemMaterialViewModel.cs │ │ │ │ │ ├── ContestProblemStatsViewModel.cs │ │ │ │ │ ├── ContestProblemViewModel.cs │ │ │ │ │ ├── ContestRegistrationViewModel.cs │ │ │ │ │ ├── ContestStatsChartViewModel.cs │ │ │ │ │ ├── ContestStatsViewModel.cs │ │ │ │ │ ├── ContestViewModel.cs │ │ │ │ │ ├── DropDownAnswerViewModel.cs │ │ │ │ │ ├── NewContestIpViewModel.cs │ │ │ │ │ └── QuestionViewModel.cs │ │ │ │ ├── Participants │ │ │ │ │ └── ParticipantViewModel.cs │ │ │ │ ├── Problems │ │ │ │ │ └── ProblemListItemViewModel.cs │ │ │ │ ├── Results │ │ │ │ │ ├── BestSubmissionViewModel.cs │ │ │ │ │ ├── ContestFullResultsViewModel.cs │ │ │ │ │ ├── ContestResultsViewModel.cs │ │ │ │ │ ├── ParticipantFullResultViewModel.cs │ │ │ │ │ ├── ParticipantResultViewModel.cs │ │ │ │ │ ├── ProblemFullResultViewModel.cs │ │ │ │ │ ├── ProblemResultPairViewModel.cs │ │ │ │ │ ├── ProblemResultViewModel.cs │ │ │ │ │ ├── SubmissionFullResultsViewModel.cs │ │ │ │ │ ├── SubmissionResultIsCompiledViewModel.cs │ │ │ │ │ └── TestRunFullResultsViewModel.cs │ │ │ │ ├── Submissions │ │ │ │ │ ├── SubmissionDetailsViewModel.cs │ │ │ │ │ ├── SubmissionResultViewModel.cs │ │ │ │ │ ├── SubmissionTypeViewModel.cs │ │ │ │ │ └── TestRunDetailsViewModel.cs │ │ │ │ └── Tests │ │ │ │ │ └── TestInputDataViewModel.cs │ │ │ └── Views │ │ │ │ ├── Compete │ │ │ │ ├── Index.cshtml │ │ │ │ ├── NewContestIp.cshtml │ │ │ │ └── Register.cshtml │ │ │ │ ├── Contests │ │ │ │ └── Details.cshtml │ │ │ │ ├── Labs │ │ │ │ └── Index.cshtml │ │ │ │ ├── List │ │ │ │ ├── ByCategory.cshtml │ │ │ │ ├── BySubmissionType.cshtml │ │ │ │ └── Index.cshtml │ │ │ │ ├── Results │ │ │ │ ├── Full.cshtml │ │ │ │ ├── Simple.cshtml │ │ │ │ ├── _StatsChartPartial.cshtml │ │ │ │ └── _StatsPartial.cshtml │ │ │ │ ├── Shared │ │ │ │ ├── _AllContestSubmissionsByUser.cshtml │ │ │ │ └── _ProblemPartial.cshtml │ │ │ │ ├── Submissions │ │ │ │ └── View.cshtml │ │ │ │ ├── Tests │ │ │ │ └── _GetInputDataPartial.cshtml │ │ │ │ └── Web.Config │ │ └── Users │ │ │ ├── Controllers │ │ │ ├── ProfileController.cs │ │ │ └── SettingsController.cs │ │ │ ├── Helpers │ │ │ └── NullDisplayFormatAttribute.cs │ │ │ ├── UsersAreaRegistration.cs │ │ │ ├── ViewModels │ │ │ ├── UserParticipationViewModel.cs │ │ │ ├── UserProfileViewModel.cs │ │ │ └── UserSettingsViewModel.cs │ │ │ └── Views │ │ │ ├── Profile │ │ │ └── Index.cshtml │ │ │ ├── Settings │ │ │ └── Index.cshtml │ │ │ ├── Shared │ │ │ └── _ProfileInfo.cshtml │ │ │ └── Web.Config │ │ ├── Content │ │ ├── CodeMirror │ │ │ ├── addon │ │ │ │ └── merge.css │ │ │ ├── codemirror.css │ │ │ └── theme │ │ │ │ ├── 3024-day.css │ │ │ │ ├── 3024-night.css │ │ │ │ ├── ambiance-mobile.css │ │ │ │ ├── ambiance.css │ │ │ │ ├── base16-dark.css │ │ │ │ ├── base16-light.css │ │ │ │ ├── blackboard.css │ │ │ │ ├── cobalt.css │ │ │ │ ├── eclipse.css │ │ │ │ ├── elegant.css │ │ │ │ ├── erlang-dark.css │ │ │ │ ├── lesser-dark.css │ │ │ │ ├── mbo.css │ │ │ │ ├── mdn-like.css │ │ │ │ ├── midnight.css │ │ │ │ ├── monokai.css │ │ │ │ ├── neat.css │ │ │ │ ├── night.css │ │ │ │ ├── paraiso-dark.css │ │ │ │ ├── paraiso-light.css │ │ │ │ ├── pastel-on-dark.css │ │ │ │ ├── rubyblue.css │ │ │ │ ├── solarized.css │ │ │ │ ├── the-matrix.css │ │ │ │ ├── tomorrow-night-eighties.css │ │ │ │ ├── twilight.css │ │ │ │ ├── vibrant-ink.css │ │ │ │ ├── xq-dark.css │ │ │ │ └── xq-light.css │ │ ├── Contests │ │ │ ├── results-page.css │ │ │ ├── submission-page.css │ │ │ └── submission-view-page.css │ │ ├── Fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ └── glyphicons-halflings-regular.woff │ │ ├── KendoUI │ │ │ ├── Black │ │ │ │ ├── editor.png │ │ │ │ ├── imagebrowser.png │ │ │ │ ├── indeterminate.gif │ │ │ │ ├── loading-image.gif │ │ │ │ ├── loading.gif │ │ │ │ ├── loading_2x.gif │ │ │ │ ├── slider-h.gif │ │ │ │ ├── slider-v.gif │ │ │ │ ├── sprite.png │ │ │ │ ├── sprite_2x.png │ │ │ │ ├── sprite_kpi.png │ │ │ │ └── sprite_kpi_2x.png │ │ │ ├── BlueOpal │ │ │ │ ├── Thumbs.db │ │ │ │ ├── editor.png │ │ │ │ ├── imagebrowser.png │ │ │ │ ├── indeterminate.gif │ │ │ │ ├── loading-image.gif │ │ │ │ ├── loading.gif │ │ │ │ ├── loading_2x.gif │ │ │ │ ├── markers.png │ │ │ │ ├── markers_2x.png │ │ │ │ ├── slider-h.gif │ │ │ │ ├── slider-v.gif │ │ │ │ ├── sprite.png │ │ │ │ └── sprite_2x.png │ │ │ ├── kendo.black.css │ │ │ ├── kendo.blueopal.min.css │ │ │ ├── kendo.common.css │ │ │ └── textures │ │ │ │ ├── brushed-metal.png │ │ │ │ ├── dots1.png │ │ │ │ ├── dots10.png │ │ │ │ ├── dots11.png │ │ │ │ ├── dots12.png │ │ │ │ ├── dots13.png │ │ │ │ ├── dots2.png │ │ │ │ ├── dots3.png │ │ │ │ ├── dots4.png │ │ │ │ ├── dots5.png │ │ │ │ ├── dots6.png │ │ │ │ ├── dots7.png │ │ │ │ ├── dots8.png │ │ │ │ ├── dots9.png │ │ │ │ ├── glass-lighter.png │ │ │ │ ├── glass.png │ │ │ │ ├── highlight.png │ │ │ │ ├── hsv-gradient.png │ │ │ │ ├── hue.png │ │ │ │ ├── leather1.png │ │ │ │ ├── leather2.png │ │ │ │ ├── noise.png │ │ │ │ ├── stripe1.png │ │ │ │ ├── stripe2.png │ │ │ │ ├── stripe3.png │ │ │ │ ├── stripe4.png │ │ │ │ ├── stripe5.png │ │ │ │ ├── stripe6.png │ │ │ │ ├── transparency.png │ │ │ │ └── transtexture.png │ │ ├── PublicFiles │ │ │ ├── DemoTests.zip │ │ │ └── SoftUni-Judge-System-Guidelines.pdf │ │ ├── Site.css │ │ ├── bootstrap-theme.css │ │ ├── bootstrap-theme.css.map │ │ ├── bootstrap-theme.min.css │ │ ├── bootstrap-theme.min.css.map │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ ├── bootstrap.min.css.map │ │ ├── bootstrap │ │ │ ├── bootstrap-amelia.css │ │ │ ├── bootstrap-amelia.min.css │ │ │ ├── bootstrap-flatly.css │ │ │ ├── bootstrap-flatly.min.css │ │ │ ├── bootstrap-theme-cyborg.css │ │ │ ├── bootstrap-theme-cyborg.min.css │ │ │ └── themes │ │ │ │ ├── bootstrap-theme-cosmo.css │ │ │ │ ├── bootstrap-theme-cosmo.min.css │ │ │ │ ├── bootstrap-theme-cyborg.css │ │ │ │ ├── bootstrap-theme-cyborg.min.css │ │ │ │ ├── bootstrap-theme-flatly.css │ │ │ │ ├── bootstrap-theme-flatly.min.css │ │ │ │ ├── bootstrap-theme.css │ │ │ │ └── bootstrap-theme.min.css │ │ └── docs.css │ │ ├── Controllers │ │ ├── AccountController.cs │ │ ├── AdministrationController.cs │ │ ├── BaseController.cs │ │ ├── FeedbackController.cs │ │ ├── HomeController.cs │ │ ├── KendoGridAdministrationController.cs │ │ ├── NewsController.cs │ │ ├── RedirectsController.cs │ │ ├── SearchController.cs │ │ └── SubmissionsController.cs │ │ ├── GlimpseSecurityPolicy.cs │ │ ├── Global.asax │ │ ├── Global.asax.cs │ │ ├── JSLintNet.json │ │ ├── OJS.Web.csproj │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── PublishProfiles │ │ │ ├── File System.pubxml │ │ │ └── Suls Judge System.pubxml │ │ ├── Scripts │ │ ├── Administration │ │ │ ├── Contests │ │ │ │ └── contests-index.js │ │ │ ├── Problems │ │ │ │ ├── problems-create.js │ │ │ │ ├── problems-edit.js │ │ │ │ └── problems-index.js │ │ │ ├── Resources │ │ │ │ ├── resources-create.js │ │ │ │ └── resources-edit.js │ │ │ ├── Tests │ │ │ │ ├── tests-details.js │ │ │ │ └── tests-index.js │ │ │ └── administration-global.js │ │ ├── CodeMirror │ │ │ ├── addon │ │ │ │ ├── diff_match_patch.js │ │ │ │ └── merge.js │ │ │ ├── codemirror.js │ │ │ └── mode │ │ │ │ ├── clike.js │ │ │ │ └── javascript.js │ │ ├── Contests │ │ │ ├── list-categories-page.js │ │ │ └── submission-page.js │ │ ├── Countdown │ │ │ └── countdown.min.js │ │ ├── Helpers │ │ │ └── test-results.js │ │ ├── KendoUI │ │ │ └── 2014.3.1411 │ │ │ │ ├── cultures │ │ │ │ ├── kendo.culture.bg.js │ │ │ │ └── kendo.culture.en-GB.js │ │ │ │ ├── kendo.all.js │ │ │ │ └── kendo.aspnetmvc.js │ │ ├── _references.js │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ ├── global.js │ │ ├── jquery-2.2.0.intellisense.js │ │ ├── jquery-2.2.0.js │ │ ├── jquery-2.2.0.min.js │ │ ├── jquery-2.2.0.min.map │ │ ├── jquery.unobtrusive-ajax.js │ │ ├── jquery.unobtrusive-ajax.min.js │ │ ├── jquery.validate-vsdoc.js │ │ ├── jquery.validate.js │ │ ├── jquery.validate.min.js │ │ ├── jquery.validate.unobtrusive.js │ │ └── jquery.validate.unobtrusive.min.js │ │ ├── Startup.cs │ │ ├── ViewModels │ │ ├── Account │ │ │ ├── ChangeEmailViewModel.cs │ │ │ ├── ChangeUsernameViewModel.cs │ │ │ ├── ExternalLoginConfirmationViewModel.cs │ │ │ ├── ExternalUserViewModel.cs │ │ │ ├── ForgottenPasswordViewModel.cs │ │ │ ├── LoginViewModel.cs │ │ │ ├── ManageUserViewModel.cs │ │ │ └── RegisterViewModel.cs │ │ ├── CategoryMenuItemViewModel.cs │ │ ├── Common │ │ │ └── DropdownViewModel.cs │ │ ├── Feedback │ │ │ └── FeedbackViewModel.cs │ │ ├── Home │ │ │ └── Index │ │ │ │ ├── IndexContestViewModel.cs │ │ │ │ └── IndexViewModel.cs │ │ ├── News │ │ │ ├── AllNewsViewModel.cs │ │ │ ├── NewsViewModel.cs │ │ │ └── SelectedViewModel.cs │ │ ├── Search │ │ │ ├── SearchResultGroupViewModel.cs │ │ │ └── SearchResultViewModel.cs │ │ ├── Shared │ │ │ ├── PaginationViewModel.cs │ │ │ └── SimplePaginationViewModel.cs │ │ ├── Submission │ │ │ ├── SubmissionViewModel.cs │ │ │ └── SubmissionsFilterViewModel.cs │ │ └── TestRun │ │ │ └── TestRunViewModel.cs │ │ ├── Views │ │ ├── Account │ │ │ ├── ChangeEmail.cshtml │ │ │ ├── ChangePassword.cshtml │ │ │ ├── ChangeUsername.cshtml │ │ │ ├── ExternalLoginConfirmation.cshtml │ │ │ ├── ExternalLoginFailure.cshtml │ │ │ ├── ExternalNotify.cshtml │ │ │ ├── ForgottenPassword.cshtml │ │ │ ├── Login.cshtml │ │ │ ├── Manage.cshtml │ │ │ ├── Register.cshtml │ │ │ ├── _ChangePasswordPartial.cshtml │ │ │ ├── _ExternalLoginsListPartial.cshtml │ │ │ ├── _RemoveAccountPartial.cshtml │ │ │ └── _SetPasswordPartial.cshtml │ │ ├── Feedback │ │ │ ├── Index.cshtml │ │ │ └── Submitted.cshtml │ │ ├── Home │ │ │ └── Index.cshtml │ │ ├── News │ │ │ ├── All.cshtml │ │ │ └── Selected.cshtml │ │ ├── Search │ │ │ ├── Index.cshtml │ │ │ └── Results.cshtml │ │ ├── Shared │ │ │ ├── EditorTemplates │ │ │ │ ├── Currency.cshtml │ │ │ │ ├── Date.cshtml │ │ │ │ ├── DateTime.cshtml │ │ │ │ ├── DropDownList.cshtml │ │ │ │ ├── EmailAddress.cshtml │ │ │ │ ├── GridForeignKey.cshtml │ │ │ │ ├── Integer.cshtml │ │ │ │ ├── MultilineText.cshtml │ │ │ │ ├── Number.cshtml │ │ │ │ ├── Password.cshtml │ │ │ │ ├── QuestionViewModel.cshtml │ │ │ │ ├── String.cshtml │ │ │ │ └── Time.cshtml │ │ │ ├── Error.cshtml │ │ │ ├── _AdvancedSubmissionsGridPartial.cshtml │ │ │ ├── _LatestNews.cshtml │ │ │ ├── _Layout.cshtml │ │ │ ├── _LoginPartial.cshtml │ │ │ ├── _Pagination.cshtml │ │ │ └── _SimplePagination.cshtml │ │ ├── Submissions │ │ │ ├── AdvancedSubmissions.cshtml │ │ │ └── BasicSubmissions.cshtml │ │ ├── Web.config │ │ └── _ViewStart.cshtml │ │ ├── Web.Debug.config │ │ ├── Web.Release.config │ │ ├── Web.config │ │ ├── Xapp_offline.htm │ │ ├── _ViewStart.cshtml │ │ ├── favicon.ico │ │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ │ ├── google95e631afa25e7960.html │ │ ├── packages.config │ │ └── robots.txt ├── Workers │ ├── OJS.Workers.Agent │ │ ├── AgentClient.cs │ │ ├── AgentCommunicator.cs │ │ ├── AgentService.cs │ │ ├── AgentServiceInstaller.cs │ │ ├── App.config │ │ ├── Batch Files │ │ │ ├── InstallService.bat │ │ │ └── StopService.bat │ │ ├── CodeJobWorker.cs │ │ ├── IFileCache.cs │ │ ├── IJobWorker.cs │ │ ├── OJS.Workers.Agent.csproj │ │ ├── OJS.Workers.Agent_TemporaryKey.pfx │ │ ├── Program.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ └── app.manifest │ │ ├── TasksCache.cs │ │ └── packages.config │ ├── OJS.Workers.Checkers │ │ ├── CPlusPlusCodeChecker.cs │ │ ├── CSharpCodeChecker.cs │ │ ├── CaseInsensitiveChecker.cs │ │ ├── Checker.cs │ │ ├── ExactChecker.cs │ │ ├── OJS.Workers.Checkers.csproj │ │ ├── PrecisionChecker.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── SortChecker.cs │ │ ├── TrimChecker.cs │ │ ├── TrimEndChecker.cs │ │ └── packages.config │ ├── OJS.Workers.Common │ │ ├── Agents │ │ │ ├── AgentRequestData.cs │ │ │ ├── AgentResponseData.cs │ │ │ ├── SourceFile.cs │ │ │ ├── TaskInformation.cs │ │ │ ├── Test.cs │ │ │ └── TestResult.cs │ │ ├── CheckerDetails.cs │ │ ├── CheckerResult.cs │ │ ├── CheckerResultType.cs │ │ ├── Communication │ │ │ ├── Job.cs │ │ │ ├── JobResult.cs │ │ │ ├── NetworkCommunicationException.cs │ │ │ ├── NetworkDataObject.cs │ │ │ ├── NetworkDataObjectType.cs │ │ │ └── SystemInformation.cs │ │ ├── CompileResult.cs │ │ ├── Helpers │ │ │ └── JavaCodePreprocessorHelper.cs │ │ ├── IChecker.cs │ │ ├── ICompiler.cs │ │ ├── IExecutor.cs │ │ ├── OJS.Workers.Common.csproj │ │ ├── ProcessExecutionResult.cs │ │ ├── ProcessExecutionResultType.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── packages.config │ ├── OJS.Workers.Compilers │ │ ├── CPlusPlusCompiler.cs │ │ ├── CSharpCompiler.cs │ │ ├── Compiler.cs │ │ ├── CompilerOutput.cs │ │ ├── JavaCompiler.cs │ │ ├── JavaZipCompiler.cs │ │ ├── MsBuildCompiler.cs │ │ ├── OJS.Workers.Compilers.csproj │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── packages.config │ ├── OJS.Workers.Controller │ │ ├── App.config │ │ ├── Batch Files │ │ │ ├── InstallService.bat │ │ │ └── StopService.bat │ │ ├── ClientConnectedEventArgs.cs │ │ ├── ControllerCommunicator.cs │ │ ├── ControllerServer.cs │ │ ├── ControllerService.cs │ │ ├── ControllerServiceInstaller.cs │ │ ├── OJS.Workers.Controller.csproj │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── packages.config │ ├── OJS.Workers.ExecutionStrategies │ │ ├── CSharpProjectTestsExecutionStrategy.cs │ │ ├── CSharpTestRunnerExecutionStrategy.cs │ │ ├── CSharpUnitTestsRunnerExecutionStrategy.cs │ │ ├── CheckOnlyExecutionStrategy.cs │ │ ├── CompileExecuteAndCheckExecutionStrategy.cs │ │ ├── DoNothingExecutionStrategy.cs │ │ ├── ExecutionContext.cs │ │ ├── ExecutionResult.cs │ │ ├── ExecutionStrategy.cs │ │ ├── IExecutionStrategy.cs │ │ ├── JavaPreprocessCompileExecuteAndCheckExecutionStrategy.cs │ │ ├── JavaProjectTestsExecutionStrategy.cs │ │ ├── JavaZipFileCompileExecuteAndCheckExecutionStrategy.cs │ │ ├── JsonExecutionResult.cs │ │ ├── NodeJsExecuteAndRunAsyncJsDomTestsWithReactExecutionStrategy.cs │ │ ├── NodeJsPreprocessExecuteAndCheckExecutionStrategy.cs │ │ ├── NodeJsPreprocessExecuteAndRunCodeAgainstUnitTestsWithMochaExecutionStrategy.cs │ │ ├── NodeJsPreprocessExecuteAndRunJsDomUnitTestsExecutionStrategy.cs │ │ ├── NodeJsPreprocessExecuteAndRunUnitTestsWithMochaExecutionStrategy.cs │ │ ├── NodeJsZipExecuteHtmlAndCssStrategy.cs │ │ ├── NodeJsZipPreprocessExecuteAndRunUnitTestsWithDOMAndMochaExecutionStrategy.cs │ │ ├── OJS.Workers.ExecutionStrategies.csproj │ │ ├── PhpCgiExecuteAndCheckExecutionStrategy.cs │ │ ├── PhpCliExecuteAndCheckExecutionStrategy.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── PythonExecuteAndCheckExecutionStrategy.cs │ │ ├── RemoteExecutionStrategy.cs │ │ ├── SqlStrategies │ │ │ ├── BaseSqlExecutionStrategy.cs │ │ │ ├── MySql │ │ │ │ ├── BaseMySqlExecutionStrategy.cs │ │ │ │ ├── MySqlPrepareDatabaseAndRunQueriesExecutionStrategy.cs │ │ │ │ ├── MySqlRunQueriesAndCheckDatabaseExecutionStrategy.cs │ │ │ │ └── MySqlRunSkeletonRunQueriesAndCheckDatabaseExecutionStrategy.cs │ │ │ ├── SqlResult.cs │ │ │ └── SqlServerLocalDb │ │ │ │ ├── BaseSqlServerLocalDbExecutionStrategy.cs │ │ │ │ ├── SqlServerLocalDbPrepareDatabaseAndRunQueriesExecutionStrategy.cs │ │ │ │ ├── SqlServerLocalDbRunQueriesAndCheckDatabaseExecutionStrategy.cs │ │ │ │ └── SqlServerLocalDbRunSkeletonRunQueriesAndCheckDatabaseExecutionStrategy.cs │ │ ├── TestContext.cs │ │ ├── TestResult.cs │ │ ├── app.config │ │ └── packages.config │ ├── OJS.Workers.Executors │ │ ├── JobObjects │ │ │ ├── BasicLimitInformation.cs │ │ │ ├── BasicUiRestrictions.cs │ │ │ ├── ExtendedLimitInformation.cs │ │ │ ├── InfoClass.cs │ │ │ ├── IoCounters.cs │ │ │ ├── JobObject.cs │ │ │ ├── LimitFlags.cs │ │ │ ├── NativeMethods.cs │ │ │ ├── PrepareJobObject.cs │ │ │ ├── SecurityAttributes.cs │ │ │ ├── SecurityLimitFlags.cs │ │ │ ├── SecurityLimitInformation.cs │ │ │ └── UiRestrictionFlags.cs │ │ ├── OJS.Workers.Executors.csproj │ │ ├── Process │ │ │ ├── CreateProcessFlags.cs │ │ │ ├── CreateRestrictedTokenFlags.cs │ │ │ ├── DuplicateOptions.cs │ │ │ ├── LogonProvider.cs │ │ │ ├── LogonType.cs │ │ │ ├── Luid.cs │ │ │ ├── LuidAndAttributes.cs │ │ │ ├── NativeMethods.cs │ │ │ ├── PriorityClass.cs │ │ │ ├── ProcessInformation.cs │ │ │ ├── ProcessMemoryCounters.cs │ │ │ ├── ProcessThreadTimes.cs │ │ │ ├── ProcessWaitHandle.cs │ │ │ ├── RestrictedProcess.cs │ │ │ ├── SafeLocalMemHandle.cs │ │ │ ├── SafeProcessHandle.cs │ │ │ ├── SecurityAttributes.cs │ │ │ ├── SecurityMandatoryLabel.cs │ │ │ ├── SidAndAttributes.cs │ │ │ ├── SidIdentifierAuthority.cs │ │ │ ├── StartupInfo.cs │ │ │ ├── StartupInfoFlags.cs │ │ │ ├── TokenInformationClass.cs │ │ │ └── TokenMandatoryLabel.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── RestrictedProcessExecutor.cs │ │ ├── StandardProcessExecutor.cs │ │ └── packages.config │ ├── OJS.Workers.LocalWorker │ │ ├── App.config │ │ ├── Batch Files │ │ │ ├── InstallService.bat │ │ │ └── StopService.bat │ │ ├── IJob.cs │ │ ├── LocalWorkerService.cs │ │ ├── LocalWorkerServiceInstaller.cs │ │ ├── OJS.Workers.LocalWorker.csproj │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Settings.cs │ │ ├── SubmissionJob.cs │ │ └── packages.config │ └── OJS.Workers.Tools │ │ ├── AntiCheat │ │ ├── CSharpCompileDisassemblePlagiarismDetector.cs │ │ ├── CompileDisassemblePlagiarismDetector.cs │ │ ├── Contracts │ │ │ ├── IDetectPlagiarismVisitor.cs │ │ │ ├── IPlagiarismDetector.cs │ │ │ └── IPlagiarismDetectorFactory.cs │ │ ├── JavaCompileDisassemblePlagiarismDetector.cs │ │ ├── PlagiarismDetectorCreationContext.cs │ │ ├── PlagiarismDetectorFactory.cs │ │ ├── PlagiarismResult.cs │ │ ├── PlainTextPlagiarismDetector.cs │ │ └── SortAndTrimLinesVisitor.cs │ │ ├── Disassemblers │ │ ├── Contracts │ │ │ └── IDisassembler.cs │ │ ├── DisassembleResult.cs │ │ ├── Disassembler.cs │ │ ├── DotNetDisassembler.cs │ │ └── JavaDisassembler.cs │ │ ├── OJS.Workers.Tools.csproj │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── Similarity │ │ ├── DiffData.cs │ │ ├── Difference.cs │ │ ├── ISimilarityFinder.cs │ │ ├── ShortestMiddleSnakeReturnData.cs │ │ └── SimilarityFinder.cs │ │ └── packages.config └── visual-studio-analyzers.ruleset ├── README.md └── Research ├── Other Judge Systems ├── PC2 │ ├── Web page.url │ ├── api-doc-9.2.3-2565.zip │ └── pc2-9.2.4-2837.zip └── README.md ├── Sandbox ├── ChromiumSandbox.docx ├── Escaping_The_Sandbox-2010.pdf ├── Executor.Security.Tests │ └── CSharp │ │ ├── 01. Shut Down With Diagnostics.txt │ │ ├── 02. Shut Down With Win32 Method.txt │ │ ├── 03. Shut Down With System.Management.txt │ │ ├── 04. Reboot.txt │ │ ├── 05. Kill Network.txt │ │ ├── 06. Registry Edit.txt │ │ ├── 07. Kill Process - WORKS ON CURRENT VERSION!.txt │ │ ├── 08. Execute Bat File - WORKS ON CURRENT VERSION.txt │ │ ├── 09. Create Folder Somewhere.txt │ │ ├── 10. Try To Save Input In File.txt │ │ ├── 11. Using Windows Fork Bomb - WORKS ON CURRENT VERSION.txt │ │ └── ToDo.txt ├── Java sandbox │ ├── SandboxTests │ │ ├── build.xml │ │ ├── build │ │ │ └── classes │ │ │ │ ├── .netbeans_automatic_build │ │ │ │ ├── .netbeans_update_resources │ │ │ │ ├── UserClass$TestThread.class │ │ │ │ ├── UserClass.class │ │ │ │ └── sandboxtests │ │ │ │ ├── SandboxSecurityManager.class │ │ │ │ └── SandboxTests.class │ │ ├── manifest.mf │ │ ├── nbproject │ │ │ ├── build-impl.xml │ │ │ ├── genfiles.properties │ │ │ ├── private │ │ │ │ ├── private.properties │ │ │ │ └── private.xml │ │ │ ├── project.properties │ │ │ └── project.xml │ │ └── src │ │ │ └── sandboxtests │ │ │ ├── SandboxSecurityManager.java │ │ │ ├── SandboxTests.java │ │ │ └── UserClass.java │ └── TestApplication │ │ ├── build.xml │ │ ├── build │ │ ├── built-jar.properties │ │ └── classes │ │ │ └── testapplication │ │ │ └── TestApplication.class │ │ ├── dist │ │ ├── README.TXT │ │ └── TestApplication.jar │ │ ├── manifest.mf │ │ ├── nbproject │ │ ├── build-impl.xml │ │ ├── genfiles.properties │ │ ├── private │ │ │ ├── private.properties │ │ │ └── private.xml │ │ ├── project.properties │ │ └── project.xml │ │ └── src │ │ └── testapplication │ │ └── TestApplication.java ├── README.md ├── Software │ └── AsproLock.v0504.src │ │ ├── AsproLock.sln │ │ └── AsproLock │ │ ├── AccessControl │ │ ├── BaseSecurity.cs │ │ ├── DesktopAccessRule.cs │ │ ├── DesktopAuditRule.cs │ │ ├── DesktopRights.cs │ │ ├── DesktopSecurity.cs │ │ ├── DirectoryAccessRule.cs │ │ ├── DirectoryAuditRule.cs │ │ ├── DirectoryRights.cs │ │ ├── DirectorySecurity.cs │ │ ├── FileAccessRule.cs │ │ ├── FileAuditRule.cs │ │ ├── FileMappingAccessRule.cs │ │ ├── FileMappingAuditRule.cs │ │ ├── FileMappingRights.cs │ │ ├── FileMappingSecurity.cs │ │ ├── FileRights.cs │ │ ├── FileSecurity.cs │ │ ├── GenericMapping.cs │ │ ├── JobObjectAccessRule.cs │ │ ├── JobObjectAuditRule.cs │ │ ├── JobObjectRights.cs │ │ ├── JobObjectSecurity.cs │ │ ├── PipeAccessRule.cs │ │ ├── PipeAuditRule.cs │ │ ├── PipeRights.cs │ │ ├── PipeSecurity.cs │ │ ├── PrinterAccessRule.cs │ │ ├── PrinterAuditRule.cs │ │ ├── PrinterRights.cs │ │ ├── PrinterSecurity.cs │ │ ├── ProcessAccessRule.cs │ │ ├── ProcessAuditRule.cs │ │ ├── ProcessRights.cs │ │ ├── ProcessSecurity.cs │ │ ├── RegistryKeyAccessRule.cs │ │ ├── RegistryKeyAuditRule.cs │ │ ├── RegistryKeyRights.cs │ │ ├── RegistryKeySecurity.cs │ │ ├── ServiceAccessRule.cs │ │ ├── ServiceAuditRule.cs │ │ ├── ServiceRights.cs │ │ ├── ServiceSecurity.cs │ │ ├── ShareAccessRule.cs │ │ ├── ShareAuditRule.cs │ │ ├── ShareRights.cs │ │ ├── ShareSecurity.cs │ │ ├── StandardRights.cs │ │ ├── ThreadAccessRule.cs │ │ ├── ThreadAuditRule.cs │ │ ├── ThreadRights.cs │ │ ├── ThreadSecurity.cs │ │ ├── TokenAccessRule.cs │ │ ├── TokenAuditRule.cs │ │ ├── TokenRights.cs │ │ ├── TokenSecurity.cs │ │ ├── WaitObjectAccessRule.cs │ │ ├── WaitObjectAuditRule.cs │ │ ├── WaitObjectRights.cs │ │ ├── WaitObjectSecurity.cs │ │ ├── WindowStationAccessRule.cs │ │ ├── WindowStationAuditRule.cs │ │ ├── WindowStationRights.cs │ │ └── WindowStationSecurity.cs │ │ ├── AsproLock.csproj │ │ ├── AssemblyInfo.cs │ │ └── Win32 │ │ ├── GenericSafeHandle.cs │ │ ├── NativeConstants.cs │ │ └── NativeMethods.cs ├── US-13-Bremer-Mo-Malware-Mo-Problems-Cuckoo-Sandbox-WP.pdf ├── bh-eu-13-thes-sandbox-wojtczuk-WP.pdf └── bh-eu-13-thes-sandbox-wojtczuk-slides.pdf └── Tools ├── API Monitor.url ├── ApiMonitorApiFilters.xml └── Whoami.exe /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/.gitignore -------------------------------------------------------------------------------- /Documentation/Concept-ControllerAndAgentCommunication.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Documentation/Concept-ControllerAndAgentCommunication.png -------------------------------------------------------------------------------- /Documentation/Development/How to add new administration.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Documentation/Development/How to add new administration.txt -------------------------------------------------------------------------------- /Documentation/HISTORY.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Documentation/HISTORY.txt -------------------------------------------------------------------------------- /Documentation/Installation/sample-solution-cpp11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Documentation/Installation/sample-solution-cpp11.cpp -------------------------------------------------------------------------------- /Documentation/Installation/sample-solution.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Documentation/Installation/sample-solution.cpp -------------------------------------------------------------------------------- /Documentation/Installation/sample-solution.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Documentation/Installation/sample-solution.cs -------------------------------------------------------------------------------- /Documentation/Installation/sample-solution.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Documentation/Installation/sample-solution.js -------------------------------------------------------------------------------- /Documentation/Installation/sample-tests.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Documentation/Installation/sample-tests.zip -------------------------------------------------------------------------------- /Documentation/Requirements/Gacutil/gacutil.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Documentation/Requirements/Gacutil/gacutil.exe -------------------------------------------------------------------------------- /Documentation/Requirements/Gacutil/gacutil.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Documentation/Requirements/Gacutil/gacutil.exe.config -------------------------------------------------------------------------------- /Documentation/Requirements/Gacutil/gacutlrc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Documentation/Requirements/Gacutil/gacutlrc.dll -------------------------------------------------------------------------------- /Documentation/Requirements/MinGW/mingw-get-setup.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Documentation/Requirements/MinGW/mingw-get-setup.exe -------------------------------------------------------------------------------- /Documentation/Requirements/MinGW/mingw-w64-install.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Documentation/Requirements/MinGW/mingw-w64-install.exe -------------------------------------------------------------------------------- /Documentation/Requirements/PowerCollections/Binaries/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Documentation/Requirements/PowerCollections/Binaries/License.txt -------------------------------------------------------------------------------- /Documentation/Requirements/PowerCollections/Binaries/PowerCollections.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Documentation/Requirements/PowerCollections/Binaries/PowerCollections.XML -------------------------------------------------------------------------------- /Documentation/Requirements/PowerCollections/Binaries/PowerCollections.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Documentation/Requirements/PowerCollections/Binaries/PowerCollections.dll -------------------------------------------------------------------------------- /Documentation/Requirements/Requirements for agent enviroments.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Documentation/Requirements/Requirements for agent enviroments.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/LICENSE -------------------------------------------------------------------------------- /Open Judge System/.nuget/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/.nuget/NuGet.Config -------------------------------------------------------------------------------- /Open Judge System/.nuget/NuGet.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/.nuget/NuGet.exe -------------------------------------------------------------------------------- /Open Judge System/.nuget/NuGet.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/.nuget/NuGet.targets -------------------------------------------------------------------------------- /Open Judge System/Data/OJS.Data.Contracts/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Data/OJS.Data.Contracts/App.config -------------------------------------------------------------------------------- /Open Judge System/Data/OJS.Data.Contracts/AuditInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Data/OJS.Data.Contracts/AuditInfo.cs -------------------------------------------------------------------------------- /Open Judge System/Data/OJS.Data.Contracts/DeletableEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Data/OJS.Data.Contracts/DeletableEntity.cs -------------------------------------------------------------------------------- /Open Judge System/Data/OJS.Data.Contracts/IAuditInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Data/OJS.Data.Contracts/IAuditInfo.cs -------------------------------------------------------------------------------- /Open Judge System/Data/OJS.Data.Contracts/IDeletableEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Data/OJS.Data.Contracts/IDeletableEntity.cs -------------------------------------------------------------------------------- /Open Judge System/Data/OJS.Data.Contracts/IDeletableEntityRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Data/OJS.Data.Contracts/IDeletableEntityRepository.cs -------------------------------------------------------------------------------- /Open Judge System/Data/OJS.Data.Contracts/IOrderable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Data/OJS.Data.Contracts/IOrderable.cs -------------------------------------------------------------------------------- /Open Judge System/Data/OJS.Data.Contracts/IRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Data/OJS.Data.Contracts/IRepository.cs -------------------------------------------------------------------------------- /Open Judge System/Data/OJS.Data.Contracts/OJS.Data.Contracts.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Data/OJS.Data.Contracts/OJS.Data.Contracts.csproj -------------------------------------------------------------------------------- /Open Judge System/Data/OJS.Data.Contracts/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Data/OJS.Data.Contracts/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Open Judge System/Data/OJS.Data.Contracts/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Data/OJS.Data.Contracts/packages.config -------------------------------------------------------------------------------- /Open Judge System/Data/OJS.Data.Models/AccessLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Data/OJS.Data.Models/AccessLog.cs -------------------------------------------------------------------------------- /Open Judge System/Data/OJS.Data.Models/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Data/OJS.Data.Models/App.config -------------------------------------------------------------------------------- /Open Judge System/Data/OJS.Data.Models/Checker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Data/OJS.Data.Models/Checker.cs -------------------------------------------------------------------------------- /Open Judge System/Data/OJS.Data.Models/Contest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Data/OJS.Data.Models/Contest.cs -------------------------------------------------------------------------------- /Open Judge System/Data/OJS.Data.Models/ContestCategory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Data/OJS.Data.Models/ContestCategory.cs -------------------------------------------------------------------------------- /Open Judge System/Data/OJS.Data.Models/ContestIp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Data/OJS.Data.Models/ContestIp.cs -------------------------------------------------------------------------------- /Open Judge System/Data/OJS.Data.Models/ContestQuestion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Data/OJS.Data.Models/ContestQuestion.cs -------------------------------------------------------------------------------- /Open Judge System/Data/OJS.Data.Models/ContestQuestionAnswer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Data/OJS.Data.Models/ContestQuestionAnswer.cs -------------------------------------------------------------------------------- /Open Judge System/Data/OJS.Data.Models/Event.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Data/OJS.Data.Models/Event.cs -------------------------------------------------------------------------------- /Open Judge System/Data/OJS.Data.Models/FeedbackReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Data/OJS.Data.Models/FeedbackReport.cs -------------------------------------------------------------------------------- /Open Judge System/Data/OJS.Data.Models/Ip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Data/OJS.Data.Models/Ip.cs -------------------------------------------------------------------------------- /Open Judge System/Data/OJS.Data.Models/LecturerInContest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Data/OJS.Data.Models/LecturerInContest.cs -------------------------------------------------------------------------------- /Open Judge System/Data/OJS.Data.Models/LecturerInContestCategory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Data/OJS.Data.Models/LecturerInContestCategory.cs -------------------------------------------------------------------------------- /Open Judge System/Data/OJS.Data.Models/News.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Data/OJS.Data.Models/News.cs -------------------------------------------------------------------------------- /Open Judge System/Data/OJS.Data.Models/OJS.Data.Models.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Data/OJS.Data.Models/OJS.Data.Models.csproj -------------------------------------------------------------------------------- /Open Judge System/Data/OJS.Data.Models/Participant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Data/OJS.Data.Models/Participant.cs -------------------------------------------------------------------------------- /Open Judge System/Data/OJS.Data.Models/ParticipantAnswer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Data/OJS.Data.Models/ParticipantAnswer.cs -------------------------------------------------------------------------------- /Open Judge System/Data/OJS.Data.Models/ParticipantScore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Data/OJS.Data.Models/ParticipantScore.cs -------------------------------------------------------------------------------- /Open Judge System/Data/OJS.Data.Models/Problem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Data/OJS.Data.Models/Problem.cs -------------------------------------------------------------------------------- /Open Judge System/Data/OJS.Data.Models/ProblemResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Data/OJS.Data.Models/ProblemResource.cs -------------------------------------------------------------------------------- /Open Judge System/Data/OJS.Data.Models/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Data/OJS.Data.Models/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Open Judge System/Data/OJS.Data.Models/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Data/OJS.Data.Models/Settings.cs -------------------------------------------------------------------------------- /Open Judge System/Data/OJS.Data.Models/SourceCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Data/OJS.Data.Models/SourceCode.cs -------------------------------------------------------------------------------- /Open Judge System/Data/OJS.Data.Models/Submission.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Data/OJS.Data.Models/Submission.cs -------------------------------------------------------------------------------- /Open Judge System/Data/OJS.Data.Models/SubmissionType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Data/OJS.Data.Models/SubmissionType.cs -------------------------------------------------------------------------------- /Open Judge System/Data/OJS.Data.Models/Tag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Data/OJS.Data.Models/Tag.cs -------------------------------------------------------------------------------- /Open Judge System/Data/OJS.Data.Models/Test.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Data/OJS.Data.Models/Test.cs -------------------------------------------------------------------------------- /Open Judge System/Data/OJS.Data.Models/TestRun.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Data/OJS.Data.Models/TestRun.cs -------------------------------------------------------------------------------- /Open Judge System/Data/OJS.Data.Models/UserProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Data/OJS.Data.Models/UserProfile.cs -------------------------------------------------------------------------------- /Open Judge System/Data/OJS.Data.Models/UserSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Data/OJS.Data.Models/UserSettings.cs -------------------------------------------------------------------------------- /Open Judge System/Data/OJS.Data.Models/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Data/OJS.Data.Models/packages.config -------------------------------------------------------------------------------- /Open Judge System/Data/OJS.Data/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Data/OJS.Data/App.config -------------------------------------------------------------------------------- /Open Judge System/Data/OJS.Data/Configurations/TestRunConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Data/OJS.Data/Configurations/TestRunConfiguration.cs -------------------------------------------------------------------------------- /Open Judge System/Data/OJS.Data/Configurations/UserProfileConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Data/OJS.Data/Configurations/UserProfileConfiguration.cs -------------------------------------------------------------------------------- /Open Judge System/Data/OJS.Data/IOjsData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Data/OJS.Data/IOjsData.cs -------------------------------------------------------------------------------- /Open Judge System/Data/OJS.Data/IOjsDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Data/OJS.Data/IOjsDbContext.cs -------------------------------------------------------------------------------- /Open Judge System/Data/OJS.Data/Migrations/DefaultMigrationConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Data/OJS.Data/Migrations/DefaultMigrationConfiguration.cs -------------------------------------------------------------------------------- /Open Judge System/Data/OJS.Data/OJS.Data.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Data/OJS.Data/OJS.Data.csproj -------------------------------------------------------------------------------- /Open Judge System/Data/OJS.Data/OjsData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Data/OJS.Data/OjsData.cs -------------------------------------------------------------------------------- /Open Judge System/Data/OJS.Data/OjsDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Data/OJS.Data/OjsDbContext.cs -------------------------------------------------------------------------------- /Open Judge System/Data/OJS.Data/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Data/OJS.Data/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Open Judge System/Data/OJS.Data/Repositories/Base/GenericRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Data/OJS.Data/Repositories/Base/GenericRepository.cs -------------------------------------------------------------------------------- /Open Judge System/Data/OJS.Data/Repositories/ContestsRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Data/OJS.Data/Repositories/ContestsRepository.cs -------------------------------------------------------------------------------- /Open Judge System/Data/OJS.Data/Repositories/Contracts/ITestRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Data/OJS.Data/Repositories/Contracts/ITestRepository.cs -------------------------------------------------------------------------------- /Open Judge System/Data/OJS.Data/Repositories/Contracts/IUsersRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Data/OJS.Data/Repositories/Contracts/IUsersRepository.cs -------------------------------------------------------------------------------- /Open Judge System/Data/OJS.Data/Repositories/ParticipantScoresRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Data/OJS.Data/Repositories/ParticipantScoresRepository.cs -------------------------------------------------------------------------------- /Open Judge System/Data/OJS.Data/Repositories/ParticipantsRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Data/OJS.Data/Repositories/ParticipantsRepository.cs -------------------------------------------------------------------------------- /Open Judge System/Data/OJS.Data/Repositories/SubmissionsRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Data/OJS.Data/Repositories/SubmissionsRepository.cs -------------------------------------------------------------------------------- /Open Judge System/Data/OJS.Data/Repositories/TestRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Data/OJS.Data/Repositories/TestRepository.cs -------------------------------------------------------------------------------- /Open Judge System/Data/OJS.Data/Repositories/TestRunsRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Data/OJS.Data/Repositories/TestRunsRepository.cs -------------------------------------------------------------------------------- /Open Judge System/Data/OJS.Data/Repositories/UsersRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Data/OJS.Data/Repositories/UsersRepository.cs -------------------------------------------------------------------------------- /Open Judge System/Data/OJS.Data/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Data/OJS.Data/packages.config -------------------------------------------------------------------------------- /Open Judge System/External Libraries/Kendo.Mvc.README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/External Libraries/Kendo.Mvc.README -------------------------------------------------------------------------------- /Open Judge System/External Libraries/Kendo.Mvc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/External Libraries/Kendo.Mvc.dll -------------------------------------------------------------------------------- /Open Judge System/External Libraries/Kendo.Mvc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/External Libraries/Kendo.Mvc.xml -------------------------------------------------------------------------------- /Open Judge System/External Libraries/nuget.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/External Libraries/nuget.exe -------------------------------------------------------------------------------- /Open Judge System/OJS.Common/AgeCalculator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/OJS.Common/AgeCalculator.cs -------------------------------------------------------------------------------- /Open Judge System/OJS.Common/Attributes/LocalizedDescriptionAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/OJS.Common/Attributes/LocalizedDescriptionAttribute.cs -------------------------------------------------------------------------------- /Open Judge System/OJS.Common/Attributes/LocalizedDisplayFormatAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/OJS.Common/Attributes/LocalizedDisplayFormatAttribute.cs -------------------------------------------------------------------------------- /Open Judge System/OJS.Common/DataAnnotations/DatabasePropertyAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/OJS.Common/DataAnnotations/DatabasePropertyAttribute.cs -------------------------------------------------------------------------------- /Open Judge System/OJS.Common/DataAnnotations/ExcludeFromExcelAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/OJS.Common/DataAnnotations/ExcludeFromExcelAttribute.cs -------------------------------------------------------------------------------- /Open Judge System/OJS.Common/ExpressionBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/OJS.Common/ExpressionBuilder.cs -------------------------------------------------------------------------------- /Open Judge System/OJS.Common/Extensions/ByteArrayExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/OJS.Common/Extensions/ByteArrayExtensions.cs -------------------------------------------------------------------------------- /Open Judge System/OJS.Common/Extensions/CompilerTypeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/OJS.Common/Extensions/CompilerTypeExtensions.cs -------------------------------------------------------------------------------- /Open Judge System/OJS.Common/Extensions/CompressStringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/OJS.Common/Extensions/CompressStringExtensions.cs -------------------------------------------------------------------------------- /Open Judge System/OJS.Common/Extensions/DirectoryHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/OJS.Common/Extensions/DirectoryHelpers.cs -------------------------------------------------------------------------------- /Open Judge System/OJS.Common/Extensions/EnumExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/OJS.Common/Extensions/EnumExtensions.cs -------------------------------------------------------------------------------- /Open Judge System/OJS.Common/Extensions/ExecutionStrategyTypeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/OJS.Common/Extensions/ExecutionStrategyTypeExtensions.cs -------------------------------------------------------------------------------- /Open Judge System/OJS.Common/Extensions/FileHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/OJS.Common/Extensions/FileHelpers.cs -------------------------------------------------------------------------------- /Open Judge System/OJS.Common/Extensions/IEnumerableExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/OJS.Common/Extensions/IEnumerableExtensions.cs -------------------------------------------------------------------------------- /Open Judge System/OJS.Common/Extensions/ObjectExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/OJS.Common/Extensions/ObjectExtensions.cs -------------------------------------------------------------------------------- /Open Judge System/OJS.Common/Extensions/PlagiarismDetectorTypeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/OJS.Common/Extensions/PlagiarismDetectorTypeExtensions.cs -------------------------------------------------------------------------------- /Open Judge System/OJS.Common/Extensions/StreamExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/OJS.Common/Extensions/StreamExtensions.cs -------------------------------------------------------------------------------- /Open Judge System/OJS.Common/Extensions/StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/OJS.Common/Extensions/StringExtensions.cs -------------------------------------------------------------------------------- /Open Judge System/OJS.Common/GlobalConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/OJS.Common/GlobalConstants.cs -------------------------------------------------------------------------------- /Open Judge System/OJS.Common/MailSender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/OJS.Common/MailSender.cs -------------------------------------------------------------------------------- /Open Judge System/OJS.Common/Models/CompilerType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/OJS.Common/Models/CompilerType.cs -------------------------------------------------------------------------------- /Open Judge System/OJS.Common/Models/ContestQuestionType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/OJS.Common/Models/ContestQuestionType.cs -------------------------------------------------------------------------------- /Open Judge System/OJS.Common/Models/ContestType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/OJS.Common/Models/ContestType.cs -------------------------------------------------------------------------------- /Open Judge System/OJS.Common/Models/ExecutionStrategyType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/OJS.Common/Models/ExecutionStrategyType.cs -------------------------------------------------------------------------------- /Open Judge System/OJS.Common/Models/PlagiarismDetectorType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/OJS.Common/Models/PlagiarismDetectorType.cs -------------------------------------------------------------------------------- /Open Judge System/OJS.Common/Models/ProblemResourceType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/OJS.Common/Models/ProblemResourceType.cs -------------------------------------------------------------------------------- /Open Judge System/OJS.Common/Models/SubmissionStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/OJS.Common/Models/SubmissionStatus.cs -------------------------------------------------------------------------------- /Open Judge System/OJS.Common/Models/SystemRole.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/OJS.Common/Models/SystemRole.cs -------------------------------------------------------------------------------- /Open Judge System/OJS.Common/Models/TestRunResultType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/OJS.Common/Models/TestRunResultType.cs -------------------------------------------------------------------------------- /Open Judge System/OJS.Common/OJS.Common.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/OJS.Common/OJS.Common.csproj -------------------------------------------------------------------------------- /Open Judge System/OJS.Common/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/OJS.Common/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Open Judge System/OJS.Common/Resources/Enums/EnumTranslations.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/OJS.Common/Resources/Enums/EnumTranslations.Designer.cs -------------------------------------------------------------------------------- /Open Judge System/OJS.Common/Resources/Enums/EnumTranslations.bg.Designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Open Judge System/OJS.Common/Resources/Enums/EnumTranslations.bg.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/OJS.Common/Resources/Enums/EnumTranslations.bg.resx -------------------------------------------------------------------------------- /Open Judge System/OJS.Common/Resources/Enums/EnumTranslations.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/OJS.Common/Resources/Enums/EnumTranslations.resx -------------------------------------------------------------------------------- /Open Judge System/OJS.Common/SynchronizedHashtable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/OJS.Common/SynchronizedHashtable.cs -------------------------------------------------------------------------------- /Open Judge System/OJS.Common/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/OJS.Common/packages.config -------------------------------------------------------------------------------- /Open Judge System/Open Judge System.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Open Judge System.sln -------------------------------------------------------------------------------- /Open Judge System/Rules.ruleset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Rules.ruleset -------------------------------------------------------------------------------- /Open Judge System/Settings.StyleCop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Settings.StyleCop -------------------------------------------------------------------------------- /Open Judge System/Tests/OJS.Common.Tests/OJS.Common.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Tests/OJS.Common.Tests/OJS.Common.Tests.csproj -------------------------------------------------------------------------------- /Open Judge System/Tests/OJS.Common.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Tests/OJS.Common.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Open Judge System/Tests/OJS.Common.Tests/StringExtensions/MaxLengthTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Tests/OJS.Common.Tests/StringExtensions/MaxLengthTests.cs -------------------------------------------------------------------------------- /Open Judge System/Tests/OJS.Common.Tests/StringExtensions/ToInteger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Tests/OJS.Common.Tests/StringExtensions/ToInteger.cs -------------------------------------------------------------------------------- /Open Judge System/Tests/OJS.Common.Tests/StringExtensions/ToIntegerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Tests/OJS.Common.Tests/StringExtensions/ToIntegerTests.cs -------------------------------------------------------------------------------- /Open Judge System/Tests/OJS.Common.Tests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Tests/OJS.Common.Tests/packages.config -------------------------------------------------------------------------------- /Open Judge System/Tests/OJS.Data.Models.Tests/OJS.Data.Models.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Tests/OJS.Data.Models.Tests/OJS.Data.Models.Tests.csproj -------------------------------------------------------------------------------- /Open Judge System/Tests/OJS.Data.Models.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Tests/OJS.Data.Models.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Open Judge System/Tests/OJS.Data.Models.Tests/SubmissionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Tests/OJS.Data.Models.Tests/SubmissionTests.cs -------------------------------------------------------------------------------- /Open Judge System/Tests/OJS.Data.Models.Tests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Tests/OJS.Data.Models.Tests/packages.config -------------------------------------------------------------------------------- /Open Judge System/Tests/OJS.Tests.Common/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Tests/OJS.Tests.Common/App.config -------------------------------------------------------------------------------- /Open Judge System/Tests/OJS.Tests.Common/DataFakes/DatabaseConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Tests/OJS.Tests.Common/DataFakes/DatabaseConfiguration.cs -------------------------------------------------------------------------------- /Open Judge System/Tests/OJS.Tests.Common/DataFakes/FakeEmptyOjsDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Tests/OJS.Tests.Common/DataFakes/FakeEmptyOjsDbContext.cs -------------------------------------------------------------------------------- /Open Judge System/Tests/OJS.Tests.Common/DataFakes/FakeOjsDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Tests/OJS.Tests.Common/DataFakes/FakeOjsDbContext.cs -------------------------------------------------------------------------------- /Open Judge System/Tests/OJS.Tests.Common/DataFakes/ObjectExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Tests/OJS.Tests.Common/DataFakes/ObjectExtensions.cs -------------------------------------------------------------------------------- /Open Judge System/Tests/OJS.Tests.Common/OJS.Tests.Common.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Tests/OJS.Tests.Common/OJS.Tests.Common.csproj -------------------------------------------------------------------------------- /Open Judge System/Tests/OJS.Tests.Common/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Tests/OJS.Tests.Common/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Open Judge System/Tests/OJS.Tests.Common/TestClassBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Tests/OJS.Tests.Common/TestClassBase.cs -------------------------------------------------------------------------------- /Open Judge System/Tests/OJS.Tests.Common/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Tests/OJS.Tests.Common/packages.config -------------------------------------------------------------------------------- /Open Judge System/Tests/OJS.Tools.SubmissionScoresMigrator.Tests/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Tests/OJS.Tools.SubmissionScoresMigrator.Tests/App.config -------------------------------------------------------------------------------- /Open Judge System/Tests/OJS.Web.Tests/OJS.Web.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Tests/OJS.Web.Tests/OJS.Web.Tests.csproj -------------------------------------------------------------------------------- /Open Judge System/Tests/OJS.Web.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Tests/OJS.Web.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Open Judge System/Tests/OJS.Web.Tests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Tests/OJS.Web.Tests/packages.config -------------------------------------------------------------------------------- /Open Judge System/Tests/OJS.Workers.Checkers.Tests/ExactCheckerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Tests/OJS.Workers.Checkers.Tests/ExactCheckerTests.cs -------------------------------------------------------------------------------- /Open Judge System/Tests/OJS.Workers.Checkers.Tests/PrecisionCheckerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Tests/OJS.Workers.Checkers.Tests/PrecisionCheckerTests.cs -------------------------------------------------------------------------------- /Open Judge System/Tests/OJS.Workers.Checkers.Tests/SortCheckerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Tests/OJS.Workers.Checkers.Tests/SortCheckerTests.cs -------------------------------------------------------------------------------- /Open Judge System/Tests/OJS.Workers.Checkers.Tests/TrimCheckerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Tests/OJS.Workers.Checkers.Tests/TrimCheckerTests.cs -------------------------------------------------------------------------------- /Open Judge System/Tests/OJS.Workers.Checkers.Tests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Tests/OJS.Workers.Checkers.Tests/packages.config -------------------------------------------------------------------------------- /Open Judge System/Tests/OJS.Workers.Compilers.Tests/CSharpCompilerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Tests/OJS.Workers.Compilers.Tests/CSharpCompilerTests.cs -------------------------------------------------------------------------------- /Open Judge System/Tests/OJS.Workers.Compilers.Tests/MsBuildCompilerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Tests/OJS.Workers.Compilers.Tests/MsBuildCompilerTests.cs -------------------------------------------------------------------------------- /Open Judge System/Tests/OJS.Workers.Compilers.Tests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Tests/OJS.Workers.Compilers.Tests/packages.config -------------------------------------------------------------------------------- /Open Judge System/Tests/OJS.Workers.Executors.Tests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Tests/OJS.Workers.Executors.Tests/packages.config -------------------------------------------------------------------------------- /Open Judge System/Tests/OJS.Workers.Tools.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Tests/OJS.Workers.Tools.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Open Judge System/Tests/OJS.Workers.Tools.Tests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Tests/OJS.Workers.Tools.Tests/packages.config -------------------------------------------------------------------------------- /Open Judge System/Tools/SandboxExecutorProofOfConcept/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Tools/SandboxExecutorProofOfConcept/App.config -------------------------------------------------------------------------------- /Open Judge System/Tools/SandboxExecutorProofOfConcept/GlobalConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Tools/SandboxExecutorProofOfConcept/GlobalConstants.cs -------------------------------------------------------------------------------- /Open Judge System/Tools/SandboxExecutorProofOfConcept/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Tools/SandboxExecutorProofOfConcept/packages.config -------------------------------------------------------------------------------- /Open Judge System/Tools/SandboxTarget/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Tools/SandboxTarget/App.config -------------------------------------------------------------------------------- /Open Judge System/Tools/SandboxTarget/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Tools/SandboxTarget/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Open Judge System/Tools/SandboxTarget/SandboxTarget.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Tools/SandboxTarget/SandboxTarget.csproj -------------------------------------------------------------------------------- /Open Judge System/Tools/SandboxTarget/SandboxTargetProgram.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Tools/SandboxTarget/SandboxTargetProgram.cs -------------------------------------------------------------------------------- /Open Judge System/Tools/SandboxTarget/TryToExecuteParams.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Tools/SandboxTarget/TryToExecuteParams.cs -------------------------------------------------------------------------------- /Open Judge System/Tools/SandboxTarget/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Tools/SandboxTarget/packages.config -------------------------------------------------------------------------------- /Open Judge System/Tools/SqlTestingPoC/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Tools/SqlTestingPoC/App.config -------------------------------------------------------------------------------- /Open Judge System/Tools/SqlTestingPoC/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Tools/SqlTestingPoC/Program.cs -------------------------------------------------------------------------------- /Open Judge System/Tools/SqlTestingPoC/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Tools/SqlTestingPoC/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Open Judge System/Tools/SqlTestingPoC/SqlTestingPoC.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Tools/SqlTestingPoC/SqlTestingPoC.csproj -------------------------------------------------------------------------------- /Open Judge System/Tools/SqlTestingPoC/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Tools/SqlTestingPoC/packages.config -------------------------------------------------------------------------------- /Open Judge System/Tools/SubmissionScoresMigrator/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Tools/SubmissionScoresMigrator/App.config -------------------------------------------------------------------------------- /Open Judge System/Tools/SubmissionScoresMigrator/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Tools/SubmissionScoresMigrator/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Open Judge System/Tools/SubmissionScoresMigrator/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Tools/SubmissionScoresMigrator/Startup.cs -------------------------------------------------------------------------------- /Open Judge System/Tools/SubmissionScoresMigrator/SubmissionScoreModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Tools/SubmissionScoresMigrator/SubmissionScoreModel.cs -------------------------------------------------------------------------------- /Open Judge System/Tools/SubmissionScoresMigrator/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Tools/SubmissionScoresMigrator/packages.config -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web.Common/Attributes/AuthorizeRolesAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web.Common/Attributes/AuthorizeRolesAttribute.cs -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web.Common/Attributes/LogAccessAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web.Common/Attributes/LogAccessAttribute.cs -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web.Common/Attributes/LoggerFilterAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web.Common/Attributes/LoggerFilterAttribute.cs -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web.Common/EnumConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web.Common/EnumConverter.cs -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web.Common/Extensions/PrincipalExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web.Common/Extensions/PrincipalExtensions.cs -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web.Common/Extensions/TempDataExtentions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web.Common/Extensions/TempDataExtentions.cs -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web.Common/Interfaces/IAdministrationViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web.Common/Interfaces/IAdministrationViewModel.cs -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web.Common/OJS.Web.Common.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web.Common/OJS.Web.Common.csproj -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web.Common/OjsUserManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web.Common/OjsUserManager.cs -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web.Common/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web.Common/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web.Common/SearchResultType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web.Common/SearchResultType.cs -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web.Common/SystemMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web.Common/SystemMessage.cs -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web.Common/SystemMessageCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web.Common/SystemMessageCollection.cs -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web.Common/SystemMessageType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web.Common/SystemMessageType.cs -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web.Common/TestType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web.Common/TestType.cs -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web.Common/ZipFileResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web.Common/ZipFileResult.cs -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web.Common/ZippedTestManipulator/ParseResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web.Common/ZippedTestManipulator/ParseResult.cs -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web.Common/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web.Common/app.config -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web.Common/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web.Common/packages.config -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_Code/ContestsHelper.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/App_Code/ContestsHelper.cshtml -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_GlobalResources/Account/AccountEmails.bg.Designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_GlobalResources/Account/ViewModels/AccountViewModels.bg.Designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_GlobalResources/Account/Views/ChangeEmailView.bg.designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_GlobalResources/Account/Views/ChangePasswordView.bg.designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_GlobalResources/Account/Views/ChangeUsernameView.bg.designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_GlobalResources/Account/Views/Disassociate.bg.designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_GlobalResources/Account/Views/ExternalLoginCallback.bg.designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_GlobalResources/Account/Views/ExternalLoginConfirmation.bg.designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_GlobalResources/Account/Views/ExternalLoginFailure.bg.designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_GlobalResources/Account/Views/ForgottenPassword.bg.designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_GlobalResources/Account/Views/General.bg.designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_GlobalResources/Account/Views/Login.bg.designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_GlobalResources/Account/Views/Login.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/App_GlobalResources/Account/Views/Login.resx -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_GlobalResources/Account/Views/Manage.bg.designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_GlobalResources/Account/Views/Manage.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/App_GlobalResources/Account/Views/Manage.resx -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_GlobalResources/Account/Views/Partial/ChangePassword.bg.designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_GlobalResources/Account/Views/Partial/ExternalLoginsList.bg.designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_GlobalResources/Account/Views/Partial/RemoveAccount.bg.designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_GlobalResources/Account/Views/Partial/SetPassword.bg.designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_GlobalResources/Account/Views/Register.bg.designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_GlobalResources/Areas/Administration/AccessLogs/ViewModels/AccessLogGridViewModel.bg.designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_GlobalResources/Areas/Administration/AccessLogs/Views/AccessLogsIndex.bg.Designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_GlobalResources/Areas/Administration/AdministrationGeneral.bg.designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_GlobalResources/Areas/Administration/AntiCheat/Views/AntiCheatViews.bg.designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_GlobalResources/Areas/Administration/Checkers/ViewModels/CheckerAdministrationViewModel.bg.designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_GlobalResources/Areas/Administration/Checkers/Views/CheckersIndex.bg.designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_GlobalResources/Areas/Administration/ContestCategories/ViewModels/ContestCategoryAdministrationViewModel.bg.designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_GlobalResources/Areas/Administration/ContestCategories/Views/ContestCategoriesViews.bg.designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_GlobalResources/Areas/Administration/Contests/ContestsControllers.bg.designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_GlobalResources/Areas/Administration/Contests/ViewModels/ContestAdministration.bg.Designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_GlobalResources/Areas/Administration/Contests/ViewModels/ContestQuestion.bg.designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_GlobalResources/Areas/Administration/Contests/ViewModels/ContestQuestionAnswer.bg.designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_GlobalResources/Areas/Administration/Contests/ViewModels/ShortContestAdministration.bg.Designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_GlobalResources/Areas/Administration/Contests/Views/ContestCreate.bg.designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_GlobalResources/Areas/Administration/Contests/Views/ContestEdit.bg.designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_GlobalResources/Areas/Administration/Contests/Views/ContestIndex.bg.designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_GlobalResources/Areas/Administration/Contests/Views/EditorTemplates/CategoryDropDown.bg.designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_GlobalResources/Areas/Administration/Contests/Views/EditorTemplates/SubmissionTypeCheckBoxes.bg.designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_GlobalResources/Areas/Administration/Contests/Views/Partials/ContestEditor.bg.designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_GlobalResources/Areas/Administration/Feedback/ViewModels/FeedbackReport.bg.designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_GlobalResources/Areas/Administration/Feedback/Views/FeedbackIndexAdmin.bg.Designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_GlobalResources/Areas/Administration/News/ViewModels/NewsAdministration.bg.designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_GlobalResources/Areas/Administration/News/Views/NewsIndex.bg.designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_GlobalResources/Areas/Administration/Participants/ViewModels/ParticipantViewModels.bg.designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_GlobalResources/Areas/Administration/Participants/Views/EditorTemplates/ParticipantEditorTemplates.bg.designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_GlobalResources/Areas/Administration/Participants/Views/Partials/Participants.bg.designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_GlobalResources/Areas/Administration/Participants/Views/ParticipantsContest.bg.designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_GlobalResources/Areas/Administration/Participants/Views/ParticipantsIndex.bg.designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_GlobalResources/Areas/Administration/Problems/ProblemsControllers.bg.designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_GlobalResources/Areas/Administration/Problems/ViewModels/DetailedProblem.bg.designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_GlobalResources/Areas/Administration/Problems/ViewModels/ProblemResources.bg.designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_GlobalResources/Areas/Administration/Problems/Views/Partials/ProblemsPartials.bg.designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_GlobalResources/Areas/Administration/Problems/Views/ProblemsCreate.bg.designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_GlobalResources/Areas/Administration/Problems/Views/ProblemsDelete.bg.designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_GlobalResources/Areas/Administration/Problems/Views/ProblemsDeleteAll.bg.designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_GlobalResources/Areas/Administration/Problems/Views/ProblemsDetails.bg.designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_GlobalResources/Areas/Administration/Problems/Views/ProblemsEdit.bg.designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_GlobalResources/Areas/Administration/Problems/Views/ProblemsIndex.bg.designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_GlobalResources/Areas/Administration/Resources/ResourcesControllers.bg.designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_GlobalResources/Areas/Administration/Resources/Views/ResourcesCreate.bg.designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_GlobalResources/Areas/Administration/Resources/Views/ResourcesEdit.bg.designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_GlobalResources/Areas/Administration/Roles/ViewModels/RolesViewModels.bg.designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_GlobalResources/Areas/Administration/Roles/Views/RolesIndex.bg.designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_GlobalResources/Areas/Administration/Settings/ViewModels/SettingAdministration.bg.designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_GlobalResources/Areas/Administration/Settings/Views/SettingsAdministrationIndex.bg.Designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_GlobalResources/Areas/Administration/Shared/Views/Partials/Partials.bg.designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_GlobalResources/Areas/Administration/SubmissionTypes/ViewModels/SubmissionTypeAdministration.bg.designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_GlobalResources/Areas/Administration/SubmissionTypes/Views/SubmissionTypesIndex.bg.designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_GlobalResources/Areas/Administration/Submissions/SubmissionsControllers.bg.designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_GlobalResources/Areas/Administration/Submissions/ViewModels/SubmissionAdministration.bg.designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_GlobalResources/Areas/Administration/Submissions/Views/EditorTemplates/SubmissionsEditorTemplates.bg.Designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_GlobalResources/Areas/Administration/Submissions/Views/Partials/SubmissionForm.bg.designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_GlobalResources/Areas/Administration/Submissions/Views/Partials/SubmissionsGrid.bg.designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_GlobalResources/Areas/Administration/Submissions/Views/SubmissionsCreate.bg.designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_GlobalResources/Areas/Administration/Submissions/Views/SubmissionsDelete.bg.designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_GlobalResources/Areas/Administration/Submissions/Views/SubmissionsIndex.bg.designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_GlobalResources/Areas/Administration/Submissions/Views/SubmissionsUpdate.bg.designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_GlobalResources/Areas/Administration/Tests/TestsControllers.bg.designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_GlobalResources/Areas/Administration/Tests/ViewModels/TestAdministration.bg.designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_GlobalResources/Areas/Administration/Tests/Views/TestsCreate.bg.designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_GlobalResources/Areas/Administration/Tests/Views/TestsDelete.bg.designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_GlobalResources/Areas/Administration/Tests/Views/TestsDeleteAll.bg.designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_GlobalResources/Areas/Administration/Tests/Views/TestsDetails.bg.designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_GlobalResources/Areas/Administration/Tests/Views/TestsEdit.bg.designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_GlobalResources/Areas/Administration/Tests/Views/TestsIndex.bg.designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_GlobalResources/Areas/Administration/Users/ViewModels/UserProfileAdministration.bg.designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_GlobalResources/Areas/Administration/Users/Views/UsersIndex.bg.designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_GlobalResources/Areas/Contests/ContestsGeneral.bg.Designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_GlobalResources/Areas/Contests/Controllers/Tests.bg.designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_GlobalResources/Areas/Contests/Shared/ContestsAllContestSubmissionsByUser.bg.designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_GlobalResources/Areas/Contests/Shared/ContestsProblemPartial.bg.Designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_GlobalResources/Areas/Contests/ViewModels/ContestsViewModels.bg.designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_GlobalResources/Areas/Contests/ViewModels/ProblemsViewModels.bg.designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_GlobalResources/Areas/Contests/ViewModels/SubmissionsViewModels.bg.designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_GlobalResources/Areas/Contests/Views/Compete/CompeteIndex.bg.designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_GlobalResources/Areas/Contests/Views/Compete/CompeteRegister.bg.Designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_GlobalResources/Areas/Contests/Views/Contests/ContestsDetails.bg.designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_GlobalResources/Areas/Contests/Views/List/ListByCategory.bg.Designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_GlobalResources/Areas/Contests/Views/List/ListByType.bg.designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_GlobalResources/Areas/Contests/Views/List/ListIndex.bg.designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_GlobalResources/Areas/Contests/Views/Results/Partials/StatsPartial.bg.designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_GlobalResources/Areas/Contests/Views/Results/ResultsFull.bg.Designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_GlobalResources/Areas/Contests/Views/Results/ResultsSimple.bg.Designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_GlobalResources/Areas/Contests/Views/Submissions/SubmissionsView.bg.designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_GlobalResources/Areas/Users/Shared/ProfileProfileInfo.bg.Designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_GlobalResources/Areas/Users/ViewModels/ProfileViewModels.bg.Designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_GlobalResources/Areas/Users/Views/Profile/ProfileIndex.bg.Designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_GlobalResources/Areas/Users/Views/Settings/SettingsIndex.bg.designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_GlobalResources/Base/Main.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/App_GlobalResources/Base/Main.Designer.cs -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_GlobalResources/Base/Main.bg.Designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_GlobalResources/Base/Main.bg.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/App_GlobalResources/Base/Main.bg.resx -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_GlobalResources/Base/Main.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/App_GlobalResources/Base/Main.resx -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_GlobalResources/Feedback/ViewModels/FeedbackViewModels.bg.designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_GlobalResources/Feedback/Views/FeedbackIndex.bg.designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_GlobalResources/Feedback/Views/FeedbackSubmitted.bg.designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_GlobalResources/Global.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/App_GlobalResources/Global.Designer.cs -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_GlobalResources/Global.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/App_GlobalResources/Global.resx -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_GlobalResources/Home/Views/Index.bg.designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_GlobalResources/Home/Views/Index.bg.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/App_GlobalResources/Home/Views/Index.bg.resx -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_GlobalResources/Home/Views/Index.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/App_GlobalResources/Home/Views/Index.resx -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_GlobalResources/Models/ContestQuestionTypeResource.bg.Designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_GlobalResources/News/Views/All.bg.designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_GlobalResources/News/Views/All.bg.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/App_GlobalResources/News/Views/All.bg.resx -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_GlobalResources/News/Views/All.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/App_GlobalResources/News/Views/All.resx -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_GlobalResources/News/Views/LatestNews.bg.designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_GlobalResources/News/Views/Selected.bg.designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_GlobalResources/News/Views/Selected.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/App_GlobalResources/News/Views/Selected.resx -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_GlobalResources/Search/Views/SearchIndex.bg.Designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_GlobalResources/Search/Views/SearchResults.bg.Designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_GlobalResources/Submissions/Views/AdvancedSubmissions.bg.designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_GlobalResources/Submissions/Views/BasicSubmissions.bg.designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_GlobalResources/Submissions/Views/Partial/AdvancedSubmissionsGridPartial.bg.designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_GlobalResources/Views/Shared/Layout.bg.designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_GlobalResources/Views/Shared/Layout.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/App_GlobalResources/Views/Shared/Layout.resx -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_GlobalResources/Views/Shared/LoginPartial.bg.designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_Start/BundleConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/App_Start/BundleConfig.cs -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_Start/FilterConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/App_Start/FilterConfig.cs -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_Start/GlimpseSecurityPolicy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/App_Start/GlimpseSecurityPolicy.cs -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_Start/LoggingModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/App_Start/LoggingModule.cs -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_Start/NinjectWebCommon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/App_Start/NinjectWebCommon.cs -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_Start/RouteConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/App_Start/RouteConfig.cs -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_Start/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/App_Start/Settings.cs -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_Start/Startup.Auth.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/App_Start/Startup.Auth.cs -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/App_Start/ViewEngineConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/App_Start/ViewEngineConfig.cs -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Areas/Administration/Models/ProblemModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Areas/Administration/Models/ProblemModel.cs -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Areas/Administration/Views/News/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Areas/Administration/Views/News/Index.cshtml -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Areas/Administration/Views/Roles/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Areas/Administration/Views/Roles/Index.cshtml -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Areas/Administration/Views/Shared/EditorTemplates/Enum.cshtml: -------------------------------------------------------------------------------- 1 | @model Enum 2 | 3 | @Html.EnumDropDownListFor(m => m, new { @class = "form-control" }) -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Areas/Administration/Views/Shared/EditorTemplates/HtmlContent.cshtml: -------------------------------------------------------------------------------- 1 | @model string 2 | 3 | @Html.Kendo().EditorFor(m => m).Encode(false) 4 | -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Areas/Administration/Views/Shared/EditorTemplates/MultiLineText.cshtml: -------------------------------------------------------------------------------- 1 | @model string 2 | 3 | @Html.TextAreaFor(m => m, new { @class = "form-control", rows = 10 }) 4 | -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Areas/Administration/Views/Shared/EditorTemplates/SingleLineText.cshtml: -------------------------------------------------------------------------------- 1 | @model string 2 | 3 | @Html.TextBoxFor(m => m, new { @class = "form-control" }) -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Areas/Administration/Views/Tests/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Areas/Administration/Views/Tests/Edit.cshtml -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Areas/Administration/Views/Tests/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Areas/Administration/Views/Tests/Index.cshtml -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Areas/Administration/Views/Users/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Areas/Administration/Views/Users/Index.cshtml -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Areas/Administration/Views/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Areas/Administration/Views/Web.config -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Areas/Administration/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Areas/Administration/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Areas/Api/ApiAreaRegistration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Areas/Api/ApiAreaRegistration.cs -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Areas/Api/Controllers/ApiController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Areas/Api/Controllers/ApiController.cs -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Areas/Api/Controllers/ResultsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Areas/Api/Controllers/ResultsController.cs -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Areas/Api/Models/ErrorMessageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Areas/Api/Models/ErrorMessageViewModel.cs -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Areas/Contests/ContestsAreaRegistration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Areas/Contests/ContestsAreaRegistration.cs -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Areas/Contests/Controllers/LabsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Areas/Contests/Controllers/LabsController.cs -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Areas/Contests/Controllers/ListController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Areas/Contests/Controllers/ListController.cs -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Areas/Contests/Controllers/TestsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Areas/Contests/Controllers/TestsController.cs -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Areas/Contests/Helpers/ContestExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Areas/Contests/Helpers/ContestExtensions.cs -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Areas/Contests/Models/SubmissionExportType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Areas/Contests/Models/SubmissionExportType.cs -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Areas/Contests/Models/SubmissionModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Areas/Contests/Models/SubmissionModel.cs -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Areas/Contests/Views/Compete/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Areas/Contests/Views/Compete/Index.cshtml -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Areas/Contests/Views/Compete/Register.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Areas/Contests/Views/Compete/Register.cshtml -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Areas/Contests/Views/Contests/Details.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Areas/Contests/Views/Contests/Details.cshtml -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Areas/Contests/Views/Labs/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Areas/Contests/Views/Labs/Index.cshtml -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Areas/Contests/Views/List/ByCategory.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Areas/Contests/Views/List/ByCategory.cshtml -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Areas/Contests/Views/List/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Areas/Contests/Views/List/Index.cshtml -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Areas/Contests/Views/Results/Full.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Areas/Contests/Views/Results/Full.cshtml -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Areas/Contests/Views/Results/Simple.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Areas/Contests/Views/Results/Simple.cshtml -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Areas/Contests/Views/Submissions/View.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Areas/Contests/Views/Submissions/View.cshtml -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Areas/Contests/Views/Web.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Areas/Contests/Views/Web.Config -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Areas/Users/Controllers/ProfileController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Areas/Users/Controllers/ProfileController.cs -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Areas/Users/Controllers/SettingsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Areas/Users/Controllers/SettingsController.cs -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Areas/Users/UsersAreaRegistration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Areas/Users/UsersAreaRegistration.cs -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Areas/Users/Views/Profile/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Areas/Users/Views/Profile/Index.cshtml -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Areas/Users/Views/Settings/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Areas/Users/Views/Settings/Index.cshtml -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Areas/Users/Views/Shared/_ProfileInfo.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Areas/Users/Views/Shared/_ProfileInfo.cshtml -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Areas/Users/Views/Web.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Areas/Users/Views/Web.Config -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Content/CodeMirror/addon/merge.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Content/CodeMirror/addon/merge.css -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Content/CodeMirror/codemirror.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Content/CodeMirror/codemirror.css -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Content/CodeMirror/theme/3024-day.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Content/CodeMirror/theme/3024-day.css -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Content/CodeMirror/theme/3024-night.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Content/CodeMirror/theme/3024-night.css -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Content/CodeMirror/theme/ambiance-mobile.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Content/CodeMirror/theme/ambiance-mobile.css -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Content/CodeMirror/theme/ambiance.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Content/CodeMirror/theme/ambiance.css -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Content/CodeMirror/theme/base16-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Content/CodeMirror/theme/base16-dark.css -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Content/CodeMirror/theme/base16-light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Content/CodeMirror/theme/base16-light.css -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Content/CodeMirror/theme/blackboard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Content/CodeMirror/theme/blackboard.css -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Content/CodeMirror/theme/cobalt.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Content/CodeMirror/theme/cobalt.css -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Content/CodeMirror/theme/eclipse.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Content/CodeMirror/theme/eclipse.css -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Content/CodeMirror/theme/elegant.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Content/CodeMirror/theme/elegant.css -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Content/CodeMirror/theme/erlang-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Content/CodeMirror/theme/erlang-dark.css -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Content/CodeMirror/theme/lesser-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Content/CodeMirror/theme/lesser-dark.css -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Content/CodeMirror/theme/mbo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Content/CodeMirror/theme/mbo.css -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Content/CodeMirror/theme/mdn-like.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Content/CodeMirror/theme/mdn-like.css -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Content/CodeMirror/theme/midnight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Content/CodeMirror/theme/midnight.css -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Content/CodeMirror/theme/monokai.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Content/CodeMirror/theme/monokai.css -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Content/CodeMirror/theme/neat.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Content/CodeMirror/theme/neat.css -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Content/CodeMirror/theme/night.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Content/CodeMirror/theme/night.css -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Content/CodeMirror/theme/paraiso-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Content/CodeMirror/theme/paraiso-dark.css -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Content/CodeMirror/theme/paraiso-light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Content/CodeMirror/theme/paraiso-light.css -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Content/CodeMirror/theme/pastel-on-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Content/CodeMirror/theme/pastel-on-dark.css -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Content/CodeMirror/theme/rubyblue.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Content/CodeMirror/theme/rubyblue.css -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Content/CodeMirror/theme/solarized.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Content/CodeMirror/theme/solarized.css -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Content/CodeMirror/theme/the-matrix.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Content/CodeMirror/theme/the-matrix.css -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Content/CodeMirror/theme/twilight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Content/CodeMirror/theme/twilight.css -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Content/CodeMirror/theme/vibrant-ink.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Content/CodeMirror/theme/vibrant-ink.css -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Content/CodeMirror/theme/xq-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Content/CodeMirror/theme/xq-dark.css -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Content/CodeMirror/theme/xq-light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Content/CodeMirror/theme/xq-light.css -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Content/Contests/results-page.css: -------------------------------------------------------------------------------- 1 | .table-bordered th { 2 | padding: 10px; 3 | } 4 | -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Content/Contests/submission-page.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Content/Contests/submission-page.css -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Content/Contests/submission-view-page.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Content/Contests/submission-view-page.css -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Content/KendoUI/Black/editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Content/KendoUI/Black/editor.png -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Content/KendoUI/Black/imagebrowser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Content/KendoUI/Black/imagebrowser.png -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Content/KendoUI/Black/indeterminate.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Content/KendoUI/Black/indeterminate.gif -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Content/KendoUI/Black/loading-image.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Content/KendoUI/Black/loading-image.gif -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Content/KendoUI/Black/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Content/KendoUI/Black/loading.gif -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Content/KendoUI/Black/loading_2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Content/KendoUI/Black/loading_2x.gif -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Content/KendoUI/Black/slider-h.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Content/KendoUI/Black/slider-h.gif -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Content/KendoUI/Black/slider-v.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Content/KendoUI/Black/slider-v.gif -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Content/KendoUI/Black/sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Content/KendoUI/Black/sprite.png -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Content/KendoUI/Black/sprite_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Content/KendoUI/Black/sprite_2x.png -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Content/KendoUI/Black/sprite_kpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Content/KendoUI/Black/sprite_kpi.png -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Content/KendoUI/Black/sprite_kpi_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Content/KendoUI/Black/sprite_kpi_2x.png -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Content/KendoUI/BlueOpal/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Content/KendoUI/BlueOpal/Thumbs.db -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Content/KendoUI/BlueOpal/editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Content/KendoUI/BlueOpal/editor.png -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Content/KendoUI/BlueOpal/imagebrowser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Content/KendoUI/BlueOpal/imagebrowser.png -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Content/KendoUI/BlueOpal/indeterminate.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Content/KendoUI/BlueOpal/indeterminate.gif -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Content/KendoUI/BlueOpal/loading-image.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Content/KendoUI/BlueOpal/loading-image.gif -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Content/KendoUI/BlueOpal/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Content/KendoUI/BlueOpal/loading.gif -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Content/KendoUI/BlueOpal/loading_2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Content/KendoUI/BlueOpal/loading_2x.gif -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Content/KendoUI/BlueOpal/markers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Content/KendoUI/BlueOpal/markers.png -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Content/KendoUI/BlueOpal/markers_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Content/KendoUI/BlueOpal/markers_2x.png -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Content/KendoUI/BlueOpal/slider-h.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Content/KendoUI/BlueOpal/slider-h.gif -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Content/KendoUI/BlueOpal/slider-v.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Content/KendoUI/BlueOpal/slider-v.gif -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Content/KendoUI/BlueOpal/sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Content/KendoUI/BlueOpal/sprite.png -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Content/KendoUI/BlueOpal/sprite_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Content/KendoUI/BlueOpal/sprite_2x.png -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Content/KendoUI/kendo.black.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Content/KendoUI/kendo.black.css -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Content/KendoUI/kendo.blueopal.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Content/KendoUI/kendo.blueopal.min.css -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Content/KendoUI/kendo.common.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Content/KendoUI/kendo.common.css -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Content/KendoUI/textures/brushed-metal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Content/KendoUI/textures/brushed-metal.png -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Content/KendoUI/textures/dots1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Content/KendoUI/textures/dots1.png -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Content/KendoUI/textures/dots10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Content/KendoUI/textures/dots10.png -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Content/KendoUI/textures/dots11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Content/KendoUI/textures/dots11.png -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Content/KendoUI/textures/dots12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Content/KendoUI/textures/dots12.png -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Content/KendoUI/textures/dots13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Content/KendoUI/textures/dots13.png -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Content/KendoUI/textures/dots2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Content/KendoUI/textures/dots2.png -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Content/KendoUI/textures/dots3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Content/KendoUI/textures/dots3.png -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Content/KendoUI/textures/dots4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Content/KendoUI/textures/dots4.png -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Content/KendoUI/textures/dots5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Content/KendoUI/textures/dots5.png -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Content/KendoUI/textures/dots6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Content/KendoUI/textures/dots6.png -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Content/KendoUI/textures/dots7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Content/KendoUI/textures/dots7.png -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Content/KendoUI/textures/dots8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Content/KendoUI/textures/dots8.png -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Content/KendoUI/textures/dots9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Content/KendoUI/textures/dots9.png -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Content/KendoUI/textures/glass-lighter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Content/KendoUI/textures/glass-lighter.png -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Content/KendoUI/textures/glass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Content/KendoUI/textures/glass.png -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Content/KendoUI/textures/highlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Content/KendoUI/textures/highlight.png -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Content/KendoUI/textures/hsv-gradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Content/KendoUI/textures/hsv-gradient.png -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Content/KendoUI/textures/hue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Content/KendoUI/textures/hue.png -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Content/KendoUI/textures/leather1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Content/KendoUI/textures/leather1.png -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Content/KendoUI/textures/leather2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Content/KendoUI/textures/leather2.png -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Content/KendoUI/textures/noise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Content/KendoUI/textures/noise.png -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Content/KendoUI/textures/stripe1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Content/KendoUI/textures/stripe1.png -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Content/KendoUI/textures/stripe2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Content/KendoUI/textures/stripe2.png -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Content/KendoUI/textures/stripe3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Content/KendoUI/textures/stripe3.png -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Content/KendoUI/textures/stripe4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Content/KendoUI/textures/stripe4.png -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Content/KendoUI/textures/stripe5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Content/KendoUI/textures/stripe5.png -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Content/KendoUI/textures/stripe6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Content/KendoUI/textures/stripe6.png -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Content/KendoUI/textures/transparency.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Content/KendoUI/textures/transparency.png -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Content/KendoUI/textures/transtexture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Content/KendoUI/textures/transtexture.png -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Content/PublicFiles/DemoTests.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Content/PublicFiles/DemoTests.zip -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Content/Site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Content/Site.css -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Content/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Content/bootstrap-theme.css -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Content/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Content/bootstrap-theme.css.map -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Content/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Content/bootstrap-theme.min.css -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Content/bootstrap-theme.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Content/bootstrap-theme.min.css.map -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Content/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Content/bootstrap.css -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Content/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Content/bootstrap.css.map -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Content/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Content/bootstrap.min.css -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Content/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Content/bootstrap.min.css.map -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Content/bootstrap/bootstrap-amelia.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Content/bootstrap/bootstrap-amelia.css -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Content/bootstrap/bootstrap-amelia.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Content/bootstrap/bootstrap-amelia.min.css -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Content/bootstrap/bootstrap-flatly.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Content/bootstrap/bootstrap-flatly.css -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Content/bootstrap/bootstrap-flatly.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Content/bootstrap/bootstrap-flatly.min.css -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Content/bootstrap/bootstrap-theme-cyborg.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Content/bootstrap/bootstrap-theme-cyborg.css -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Content/bootstrap/themes/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Content/bootstrap/themes/bootstrap-theme.css -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Content/docs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Content/docs.css -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Controllers/AccountController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Controllers/AccountController.cs -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Controllers/AdministrationController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Controllers/AdministrationController.cs -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Controllers/BaseController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Controllers/BaseController.cs -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Controllers/FeedbackController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Controllers/FeedbackController.cs -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Controllers/HomeController.cs -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Controllers/NewsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Controllers/NewsController.cs -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Controllers/RedirectsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Controllers/RedirectsController.cs -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Controllers/SearchController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Controllers/SearchController.cs -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Controllers/SubmissionsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Controllers/SubmissionsController.cs -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/GlimpseSecurityPolicy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/GlimpseSecurityPolicy.cs -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Global.asax -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Global.asax.cs -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/JSLintNet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/JSLintNet.json -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/OJS.Web.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/OJS.Web.csproj -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Properties/PublishProfiles/File System.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Properties/PublishProfiles/File System.pubxml -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Scripts/Administration/Tests/tests-details.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Scripts/Administration/Tests/tests-details.js -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Scripts/Administration/Tests/tests-index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Scripts/Administration/Tests/tests-index.js -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Scripts/CodeMirror/addon/merge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Scripts/CodeMirror/addon/merge.js -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Scripts/CodeMirror/codemirror.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Scripts/CodeMirror/codemirror.js -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Scripts/CodeMirror/mode/clike.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Scripts/CodeMirror/mode/clike.js -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Scripts/CodeMirror/mode/javascript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Scripts/CodeMirror/mode/javascript.js -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Scripts/Contests/list-categories-page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Scripts/Contests/list-categories-page.js -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Scripts/Contests/submission-page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Scripts/Contests/submission-page.js -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Scripts/Countdown/countdown.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Scripts/Countdown/countdown.min.js -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Scripts/Helpers/test-results.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Scripts/Helpers/test-results.js -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Scripts/KendoUI/2014.3.1411/kendo.all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Scripts/KendoUI/2014.3.1411/kendo.all.js -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Scripts/_references.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Scripts/_references.js -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Scripts/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Scripts/bootstrap.js -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Scripts/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Scripts/bootstrap.min.js -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Scripts/global.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Scripts/global.js -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Scripts/jquery-2.2.0.intellisense.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Scripts/jquery-2.2.0.intellisense.js -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Scripts/jquery-2.2.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Scripts/jquery-2.2.0.js -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Scripts/jquery-2.2.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Scripts/jquery-2.2.0.min.js -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Scripts/jquery-2.2.0.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Scripts/jquery-2.2.0.min.map -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Scripts/jquery.unobtrusive-ajax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Scripts/jquery.unobtrusive-ajax.js -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Scripts/jquery.unobtrusive-ajax.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Scripts/jquery.unobtrusive-ajax.min.js -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Scripts/jquery.validate-vsdoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Scripts/jquery.validate-vsdoc.js -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Scripts/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Scripts/jquery.validate.js -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Scripts/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Scripts/jquery.validate.min.js -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Scripts/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Scripts/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Scripts/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Scripts/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Startup.cs -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/ViewModels/Account/ChangeEmailViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/ViewModels/Account/ChangeEmailViewModel.cs -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/ViewModels/Account/LoginViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/ViewModels/Account/LoginViewModel.cs -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/ViewModels/Account/ManageUserViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/ViewModels/Account/ManageUserViewModel.cs -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/ViewModels/Account/RegisterViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/ViewModels/Account/RegisterViewModel.cs -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/ViewModels/CategoryMenuItemViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/ViewModels/CategoryMenuItemViewModel.cs -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/ViewModels/Common/DropdownViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/ViewModels/Common/DropdownViewModel.cs -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/ViewModels/Feedback/FeedbackViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/ViewModels/Feedback/FeedbackViewModel.cs -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/ViewModels/Home/Index/IndexViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/ViewModels/Home/Index/IndexViewModel.cs -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/ViewModels/News/AllNewsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/ViewModels/News/AllNewsViewModel.cs -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/ViewModels/News/NewsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/ViewModels/News/NewsViewModel.cs -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/ViewModels/News/SelectedViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/ViewModels/News/SelectedViewModel.cs -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/ViewModels/Search/SearchResultViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/ViewModels/Search/SearchResultViewModel.cs -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/ViewModels/Shared/PaginationViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/ViewModels/Shared/PaginationViewModel.cs -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/ViewModels/TestRun/TestRunViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/ViewModels/TestRun/TestRunViewModel.cs -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Views/Account/ChangeEmail.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Views/Account/ChangeEmail.cshtml -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Views/Account/ChangePassword.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Views/Account/ChangePassword.cshtml -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Views/Account/ChangeUsername.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Views/Account/ChangeUsername.cshtml -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Views/Account/ExternalLoginFailure.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Views/Account/ExternalLoginFailure.cshtml -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Views/Account/ExternalNotify.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Views/Account/ExternalNotify.cshtml -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Views/Account/ForgottenPassword.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Views/Account/ForgottenPassword.cshtml -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Views/Account/Login.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Views/Account/Login.cshtml -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Views/Account/Manage.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Views/Account/Manage.cshtml -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Views/Account/Register.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Views/Account/Register.cshtml -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Views/Account/_RemoveAccountPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Views/Account/_RemoveAccountPartial.cshtml -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Views/Account/_SetPasswordPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Views/Account/_SetPasswordPartial.cshtml -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Views/Feedback/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Views/Feedback/Index.cshtml -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Views/Feedback/Submitted.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Views/Feedback/Submitted.cshtml -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Views/News/All.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Views/News/All.cshtml -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Views/News/Selected.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Views/News/Selected.cshtml -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Views/Search/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Views/Search/Index.cshtml -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Views/Search/Results.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Views/Search/Results.cshtml -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Views/Shared/EditorTemplates/Date.cshtml: -------------------------------------------------------------------------------- 1 | @model DateTime? 2 | 3 | @(Html.Kendo().DatePickerFor(m => m)) -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Views/Shared/EditorTemplates/Number.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Views/Shared/EditorTemplates/Number.cshtml -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Views/Shared/EditorTemplates/Password.cshtml: -------------------------------------------------------------------------------- 1 | @model object 2 | 3 | @Html.PasswordFor(m => m, new { @class = "k-textbox" }) -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Views/Shared/EditorTemplates/String.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Views/Shared/EditorTemplates/String.cshtml -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Views/Shared/EditorTemplates/Time.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Views/Shared/EditorTemplates/Time.cshtml -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Views/Shared/_LatestNews.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Views/Shared/_LatestNews.cshtml -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Views/Shared/_LoginPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Views/Shared/_LoginPartial.cshtml -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Views/Shared/_Pagination.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Views/Shared/_Pagination.cshtml -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Views/Shared/_SimplePagination.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Views/Shared/_SimplePagination.cshtml -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Views/Submissions/BasicSubmissions.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Views/Submissions/BasicSubmissions.cshtml -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Views/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Views/Web.config -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Web.Debug.config -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Web.Release.config -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Web.config -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/Xapp_offline.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/Xapp_offline.htm -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/_ViewStart.cshtml -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/favicon.ico -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/google95e631afa25e7960.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/google95e631afa25e7960.html -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Web/OJS.Web/packages.config -------------------------------------------------------------------------------- /Open Judge System/Web/OJS.Web/robots.txt: -------------------------------------------------------------------------------- 1 | User-Agent: * 2 | Allow: / 3 | -------------------------------------------------------------------------------- /Open Judge System/Workers/OJS.Workers.Agent/AgentClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Workers/OJS.Workers.Agent/AgentClient.cs -------------------------------------------------------------------------------- /Open Judge System/Workers/OJS.Workers.Agent/AgentCommunicator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Workers/OJS.Workers.Agent/AgentCommunicator.cs -------------------------------------------------------------------------------- /Open Judge System/Workers/OJS.Workers.Agent/AgentService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Workers/OJS.Workers.Agent/AgentService.cs -------------------------------------------------------------------------------- /Open Judge System/Workers/OJS.Workers.Agent/AgentServiceInstaller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Workers/OJS.Workers.Agent/AgentServiceInstaller.cs -------------------------------------------------------------------------------- /Open Judge System/Workers/OJS.Workers.Agent/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Workers/OJS.Workers.Agent/App.config -------------------------------------------------------------------------------- /Open Judge System/Workers/OJS.Workers.Agent/Batch Files/StopService.bat: -------------------------------------------------------------------------------- 1 | NET STOP "OJS Agent Service" 2 | pause -------------------------------------------------------------------------------- /Open Judge System/Workers/OJS.Workers.Agent/CodeJobWorker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Workers/OJS.Workers.Agent/CodeJobWorker.cs -------------------------------------------------------------------------------- /Open Judge System/Workers/OJS.Workers.Agent/IFileCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Workers/OJS.Workers.Agent/IFileCache.cs -------------------------------------------------------------------------------- /Open Judge System/Workers/OJS.Workers.Agent/IJobWorker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Workers/OJS.Workers.Agent/IJobWorker.cs -------------------------------------------------------------------------------- /Open Judge System/Workers/OJS.Workers.Agent/OJS.Workers.Agent.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Workers/OJS.Workers.Agent/OJS.Workers.Agent.csproj -------------------------------------------------------------------------------- /Open Judge System/Workers/OJS.Workers.Agent/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Workers/OJS.Workers.Agent/Program.cs -------------------------------------------------------------------------------- /Open Judge System/Workers/OJS.Workers.Agent/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Workers/OJS.Workers.Agent/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Open Judge System/Workers/OJS.Workers.Agent/Properties/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Workers/OJS.Workers.Agent/Properties/app.manifest -------------------------------------------------------------------------------- /Open Judge System/Workers/OJS.Workers.Agent/TasksCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Workers/OJS.Workers.Agent/TasksCache.cs -------------------------------------------------------------------------------- /Open Judge System/Workers/OJS.Workers.Agent/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Workers/OJS.Workers.Agent/packages.config -------------------------------------------------------------------------------- /Open Judge System/Workers/OJS.Workers.Checkers/CPlusPlusCodeChecker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Workers/OJS.Workers.Checkers/CPlusPlusCodeChecker.cs -------------------------------------------------------------------------------- /Open Judge System/Workers/OJS.Workers.Checkers/CSharpCodeChecker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Workers/OJS.Workers.Checkers/CSharpCodeChecker.cs -------------------------------------------------------------------------------- /Open Judge System/Workers/OJS.Workers.Checkers/CaseInsensitiveChecker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Workers/OJS.Workers.Checkers/CaseInsensitiveChecker.cs -------------------------------------------------------------------------------- /Open Judge System/Workers/OJS.Workers.Checkers/Checker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Workers/OJS.Workers.Checkers/Checker.cs -------------------------------------------------------------------------------- /Open Judge System/Workers/OJS.Workers.Checkers/ExactChecker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Workers/OJS.Workers.Checkers/ExactChecker.cs -------------------------------------------------------------------------------- /Open Judge System/Workers/OJS.Workers.Checkers/PrecisionChecker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Workers/OJS.Workers.Checkers/PrecisionChecker.cs -------------------------------------------------------------------------------- /Open Judge System/Workers/OJS.Workers.Checkers/SortChecker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Workers/OJS.Workers.Checkers/SortChecker.cs -------------------------------------------------------------------------------- /Open Judge System/Workers/OJS.Workers.Checkers/TrimChecker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Workers/OJS.Workers.Checkers/TrimChecker.cs -------------------------------------------------------------------------------- /Open Judge System/Workers/OJS.Workers.Checkers/TrimEndChecker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Workers/OJS.Workers.Checkers/TrimEndChecker.cs -------------------------------------------------------------------------------- /Open Judge System/Workers/OJS.Workers.Checkers/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Workers/OJS.Workers.Checkers/packages.config -------------------------------------------------------------------------------- /Open Judge System/Workers/OJS.Workers.Common/Agents/AgentRequestData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Workers/OJS.Workers.Common/Agents/AgentRequestData.cs -------------------------------------------------------------------------------- /Open Judge System/Workers/OJS.Workers.Common/Agents/AgentResponseData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Workers/OJS.Workers.Common/Agents/AgentResponseData.cs -------------------------------------------------------------------------------- /Open Judge System/Workers/OJS.Workers.Common/Agents/SourceFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Workers/OJS.Workers.Common/Agents/SourceFile.cs -------------------------------------------------------------------------------- /Open Judge System/Workers/OJS.Workers.Common/Agents/TaskInformation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Workers/OJS.Workers.Common/Agents/TaskInformation.cs -------------------------------------------------------------------------------- /Open Judge System/Workers/OJS.Workers.Common/Agents/Test.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Workers/OJS.Workers.Common/Agents/Test.cs -------------------------------------------------------------------------------- /Open Judge System/Workers/OJS.Workers.Common/Agents/TestResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Workers/OJS.Workers.Common/Agents/TestResult.cs -------------------------------------------------------------------------------- /Open Judge System/Workers/OJS.Workers.Common/CheckerDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Workers/OJS.Workers.Common/CheckerDetails.cs -------------------------------------------------------------------------------- /Open Judge System/Workers/OJS.Workers.Common/CheckerResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Workers/OJS.Workers.Common/CheckerResult.cs -------------------------------------------------------------------------------- /Open Judge System/Workers/OJS.Workers.Common/CheckerResultType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Workers/OJS.Workers.Common/CheckerResultType.cs -------------------------------------------------------------------------------- /Open Judge System/Workers/OJS.Workers.Common/Communication/Job.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Workers/OJS.Workers.Common/Communication/Job.cs -------------------------------------------------------------------------------- /Open Judge System/Workers/OJS.Workers.Common/Communication/JobResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Workers/OJS.Workers.Common/Communication/JobResult.cs -------------------------------------------------------------------------------- /Open Judge System/Workers/OJS.Workers.Common/CompileResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Workers/OJS.Workers.Common/CompileResult.cs -------------------------------------------------------------------------------- /Open Judge System/Workers/OJS.Workers.Common/IChecker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Workers/OJS.Workers.Common/IChecker.cs -------------------------------------------------------------------------------- /Open Judge System/Workers/OJS.Workers.Common/ICompiler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Workers/OJS.Workers.Common/ICompiler.cs -------------------------------------------------------------------------------- /Open Judge System/Workers/OJS.Workers.Common/IExecutor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Workers/OJS.Workers.Common/IExecutor.cs -------------------------------------------------------------------------------- /Open Judge System/Workers/OJS.Workers.Common/OJS.Workers.Common.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Workers/OJS.Workers.Common/OJS.Workers.Common.csproj -------------------------------------------------------------------------------- /Open Judge System/Workers/OJS.Workers.Common/ProcessExecutionResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Workers/OJS.Workers.Common/ProcessExecutionResult.cs -------------------------------------------------------------------------------- /Open Judge System/Workers/OJS.Workers.Common/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Workers/OJS.Workers.Common/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Open Judge System/Workers/OJS.Workers.Common/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Workers/OJS.Workers.Common/packages.config -------------------------------------------------------------------------------- /Open Judge System/Workers/OJS.Workers.Compilers/CPlusPlusCompiler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Workers/OJS.Workers.Compilers/CPlusPlusCompiler.cs -------------------------------------------------------------------------------- /Open Judge System/Workers/OJS.Workers.Compilers/CSharpCompiler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Workers/OJS.Workers.Compilers/CSharpCompiler.cs -------------------------------------------------------------------------------- /Open Judge System/Workers/OJS.Workers.Compilers/Compiler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Workers/OJS.Workers.Compilers/Compiler.cs -------------------------------------------------------------------------------- /Open Judge System/Workers/OJS.Workers.Compilers/CompilerOutput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Workers/OJS.Workers.Compilers/CompilerOutput.cs -------------------------------------------------------------------------------- /Open Judge System/Workers/OJS.Workers.Compilers/JavaCompiler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Workers/OJS.Workers.Compilers/JavaCompiler.cs -------------------------------------------------------------------------------- /Open Judge System/Workers/OJS.Workers.Compilers/JavaZipCompiler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Workers/OJS.Workers.Compilers/JavaZipCompiler.cs -------------------------------------------------------------------------------- /Open Judge System/Workers/OJS.Workers.Compilers/MsBuildCompiler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Workers/OJS.Workers.Compilers/MsBuildCompiler.cs -------------------------------------------------------------------------------- /Open Judge System/Workers/OJS.Workers.Compilers/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Workers/OJS.Workers.Compilers/packages.config -------------------------------------------------------------------------------- /Open Judge System/Workers/OJS.Workers.Controller/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Workers/OJS.Workers.Controller/App.config -------------------------------------------------------------------------------- /Open Judge System/Workers/OJS.Workers.Controller/Batch Files/StopService.bat: -------------------------------------------------------------------------------- 1 | NET STOP "OJS Controller Service" 2 | pause -------------------------------------------------------------------------------- /Open Judge System/Workers/OJS.Workers.Controller/ControllerServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Workers/OJS.Workers.Controller/ControllerServer.cs -------------------------------------------------------------------------------- /Open Judge System/Workers/OJS.Workers.Controller/ControllerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Workers/OJS.Workers.Controller/ControllerService.cs -------------------------------------------------------------------------------- /Open Judge System/Workers/OJS.Workers.Controller/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Workers/OJS.Workers.Controller/Program.cs -------------------------------------------------------------------------------- /Open Judge System/Workers/OJS.Workers.Controller/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Workers/OJS.Workers.Controller/packages.config -------------------------------------------------------------------------------- /Open Judge System/Workers/OJS.Workers.ExecutionStrategies/TestContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Workers/OJS.Workers.ExecutionStrategies/TestContext.cs -------------------------------------------------------------------------------- /Open Judge System/Workers/OJS.Workers.ExecutionStrategies/TestResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Workers/OJS.Workers.ExecutionStrategies/TestResult.cs -------------------------------------------------------------------------------- /Open Judge System/Workers/OJS.Workers.ExecutionStrategies/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Workers/OJS.Workers.ExecutionStrategies/app.config -------------------------------------------------------------------------------- /Open Judge System/Workers/OJS.Workers.Executors/JobObjects/InfoClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Workers/OJS.Workers.Executors/JobObjects/InfoClass.cs -------------------------------------------------------------------------------- /Open Judge System/Workers/OJS.Workers.Executors/JobObjects/IoCounters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Workers/OJS.Workers.Executors/JobObjects/IoCounters.cs -------------------------------------------------------------------------------- /Open Judge System/Workers/OJS.Workers.Executors/JobObjects/JobObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Workers/OJS.Workers.Executors/JobObjects/JobObject.cs -------------------------------------------------------------------------------- /Open Judge System/Workers/OJS.Workers.Executors/JobObjects/LimitFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Workers/OJS.Workers.Executors/JobObjects/LimitFlags.cs -------------------------------------------------------------------------------- /Open Judge System/Workers/OJS.Workers.Executors/Process/LogonProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Workers/OJS.Workers.Executors/Process/LogonProvider.cs -------------------------------------------------------------------------------- /Open Judge System/Workers/OJS.Workers.Executors/Process/LogonType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Workers/OJS.Workers.Executors/Process/LogonType.cs -------------------------------------------------------------------------------- /Open Judge System/Workers/OJS.Workers.Executors/Process/Luid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Workers/OJS.Workers.Executors/Process/Luid.cs -------------------------------------------------------------------------------- /Open Judge System/Workers/OJS.Workers.Executors/Process/NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Workers/OJS.Workers.Executors/Process/NativeMethods.cs -------------------------------------------------------------------------------- /Open Judge System/Workers/OJS.Workers.Executors/Process/PriorityClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Workers/OJS.Workers.Executors/Process/PriorityClass.cs -------------------------------------------------------------------------------- /Open Judge System/Workers/OJS.Workers.Executors/Process/StartupInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Workers/OJS.Workers.Executors/Process/StartupInfo.cs -------------------------------------------------------------------------------- /Open Judge System/Workers/OJS.Workers.Executors/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Workers/OJS.Workers.Executors/packages.config -------------------------------------------------------------------------------- /Open Judge System/Workers/OJS.Workers.LocalWorker/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Workers/OJS.Workers.LocalWorker/App.config -------------------------------------------------------------------------------- /Open Judge System/Workers/OJS.Workers.LocalWorker/Batch Files/StopService.bat: -------------------------------------------------------------------------------- 1 | NET STOP "OJS Local Worker Service" 2 | pause -------------------------------------------------------------------------------- /Open Judge System/Workers/OJS.Workers.LocalWorker/IJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Workers/OJS.Workers.LocalWorker/IJob.cs -------------------------------------------------------------------------------- /Open Judge System/Workers/OJS.Workers.LocalWorker/LocalWorkerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Workers/OJS.Workers.LocalWorker/LocalWorkerService.cs -------------------------------------------------------------------------------- /Open Judge System/Workers/OJS.Workers.LocalWorker/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Workers/OJS.Workers.LocalWorker/Program.cs -------------------------------------------------------------------------------- /Open Judge System/Workers/OJS.Workers.LocalWorker/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Workers/OJS.Workers.LocalWorker/Settings.cs -------------------------------------------------------------------------------- /Open Judge System/Workers/OJS.Workers.LocalWorker/SubmissionJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Workers/OJS.Workers.LocalWorker/SubmissionJob.cs -------------------------------------------------------------------------------- /Open Judge System/Workers/OJS.Workers.LocalWorker/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Workers/OJS.Workers.LocalWorker/packages.config -------------------------------------------------------------------------------- /Open Judge System/Workers/OJS.Workers.Tools/OJS.Workers.Tools.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Workers/OJS.Workers.Tools/OJS.Workers.Tools.csproj -------------------------------------------------------------------------------- /Open Judge System/Workers/OJS.Workers.Tools/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Workers/OJS.Workers.Tools/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Open Judge System/Workers/OJS.Workers.Tools/Similarity/DiffData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Workers/OJS.Workers.Tools/Similarity/DiffData.cs -------------------------------------------------------------------------------- /Open Judge System/Workers/OJS.Workers.Tools/Similarity/Difference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Workers/OJS.Workers.Tools/Similarity/Difference.cs -------------------------------------------------------------------------------- /Open Judge System/Workers/OJS.Workers.Tools/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/Workers/OJS.Workers.Tools/packages.config -------------------------------------------------------------------------------- /Open Judge System/visual-studio-analyzers.ruleset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Open Judge System/visual-studio-analyzers.ruleset -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/README.md -------------------------------------------------------------------------------- /Research/Other Judge Systems/PC2/Web page.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Research/Other Judge Systems/PC2/Web page.url -------------------------------------------------------------------------------- /Research/Other Judge Systems/PC2/api-doc-9.2.3-2565.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Research/Other Judge Systems/PC2/api-doc-9.2.3-2565.zip -------------------------------------------------------------------------------- /Research/Other Judge Systems/PC2/pc2-9.2.4-2837.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Research/Other Judge Systems/PC2/pc2-9.2.4-2837.zip -------------------------------------------------------------------------------- /Research/Other Judge Systems/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Research/Other Judge Systems/README.md -------------------------------------------------------------------------------- /Research/Sandbox/ChromiumSandbox.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Research/Sandbox/ChromiumSandbox.docx -------------------------------------------------------------------------------- /Research/Sandbox/Escaping_The_Sandbox-2010.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Research/Sandbox/Escaping_The_Sandbox-2010.pdf -------------------------------------------------------------------------------- /Research/Sandbox/Executor.Security.Tests/CSharp/04. Reboot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Research/Sandbox/Executor.Security.Tests/CSharp/04. Reboot.txt -------------------------------------------------------------------------------- /Research/Sandbox/Executor.Security.Tests/CSharp/05. Kill Network.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Research/Sandbox/Executor.Security.Tests/CSharp/05. Kill Network.txt -------------------------------------------------------------------------------- /Research/Sandbox/Executor.Security.Tests/CSharp/06. Registry Edit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Research/Sandbox/Executor.Security.Tests/CSharp/06. Registry Edit.txt -------------------------------------------------------------------------------- /Research/Sandbox/Executor.Security.Tests/CSharp/ToDo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Research/Sandbox/Executor.Security.Tests/CSharp/ToDo.txt -------------------------------------------------------------------------------- /Research/Sandbox/Java sandbox/SandboxTests/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Research/Sandbox/Java sandbox/SandboxTests/build.xml -------------------------------------------------------------------------------- /Research/Sandbox/Java sandbox/SandboxTests/build/classes/.netbeans_automatic_build: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Research/Sandbox/Java sandbox/SandboxTests/build/classes/.netbeans_update_resources: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Research/Sandbox/Java sandbox/SandboxTests/build/classes/UserClass.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Research/Sandbox/Java sandbox/SandboxTests/build/classes/UserClass.class -------------------------------------------------------------------------------- /Research/Sandbox/Java sandbox/SandboxTests/manifest.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Research/Sandbox/Java sandbox/SandboxTests/manifest.mf -------------------------------------------------------------------------------- /Research/Sandbox/Java sandbox/SandboxTests/nbproject/build-impl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Research/Sandbox/Java sandbox/SandboxTests/nbproject/build-impl.xml -------------------------------------------------------------------------------- /Research/Sandbox/Java sandbox/SandboxTests/nbproject/genfiles.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Research/Sandbox/Java sandbox/SandboxTests/nbproject/genfiles.properties -------------------------------------------------------------------------------- /Research/Sandbox/Java sandbox/SandboxTests/nbproject/private/private.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Research/Sandbox/Java sandbox/SandboxTests/nbproject/private/private.xml -------------------------------------------------------------------------------- /Research/Sandbox/Java sandbox/SandboxTests/nbproject/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Research/Sandbox/Java sandbox/SandboxTests/nbproject/project.properties -------------------------------------------------------------------------------- /Research/Sandbox/Java sandbox/SandboxTests/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Research/Sandbox/Java sandbox/SandboxTests/nbproject/project.xml -------------------------------------------------------------------------------- /Research/Sandbox/Java sandbox/TestApplication/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Research/Sandbox/Java sandbox/TestApplication/build.xml -------------------------------------------------------------------------------- /Research/Sandbox/Java sandbox/TestApplication/build/built-jar.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Research/Sandbox/Java sandbox/TestApplication/build/built-jar.properties -------------------------------------------------------------------------------- /Research/Sandbox/Java sandbox/TestApplication/dist/README.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Research/Sandbox/Java sandbox/TestApplication/dist/README.TXT -------------------------------------------------------------------------------- /Research/Sandbox/Java sandbox/TestApplication/dist/TestApplication.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Research/Sandbox/Java sandbox/TestApplication/dist/TestApplication.jar -------------------------------------------------------------------------------- /Research/Sandbox/Java sandbox/TestApplication/manifest.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Research/Sandbox/Java sandbox/TestApplication/manifest.mf -------------------------------------------------------------------------------- /Research/Sandbox/Java sandbox/TestApplication/nbproject/build-impl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Research/Sandbox/Java sandbox/TestApplication/nbproject/build-impl.xml -------------------------------------------------------------------------------- /Research/Sandbox/Java sandbox/TestApplication/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Research/Sandbox/Java sandbox/TestApplication/nbproject/project.xml -------------------------------------------------------------------------------- /Research/Sandbox/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Research/Sandbox/README.md -------------------------------------------------------------------------------- /Research/Sandbox/Software/AsproLock.v0504.src/AsproLock.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Research/Sandbox/Software/AsproLock.v0504.src/AsproLock.sln -------------------------------------------------------------------------------- /Research/Sandbox/Software/AsproLock.v0504.src/AsproLock/AsproLock.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Research/Sandbox/Software/AsproLock.v0504.src/AsproLock/AsproLock.csproj -------------------------------------------------------------------------------- /Research/Sandbox/Software/AsproLock.v0504.src/AsproLock/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Research/Sandbox/Software/AsproLock.v0504.src/AsproLock/AssemblyInfo.cs -------------------------------------------------------------------------------- /Research/Sandbox/bh-eu-13-thes-sandbox-wojtczuk-WP.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Research/Sandbox/bh-eu-13-thes-sandbox-wojtczuk-WP.pdf -------------------------------------------------------------------------------- /Research/Sandbox/bh-eu-13-thes-sandbox-wojtczuk-slides.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Research/Sandbox/bh-eu-13-thes-sandbox-wojtczuk-slides.pdf -------------------------------------------------------------------------------- /Research/Tools/API Monitor.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Research/Tools/API Monitor.url -------------------------------------------------------------------------------- /Research/Tools/ApiMonitorApiFilters.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Research/Tools/ApiMonitorApiFilters.xml -------------------------------------------------------------------------------- /Research/Tools/Whoami.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/OpenJudgeSystem/HEAD/Research/Tools/Whoami.exe --------------------------------------------------------------------------------