├── .editorconfig ├── .github ├── dependabot.yml ├── pull_request_template.md └── workflows │ └── codeql-analysis.yml ├── .gitignore ├── .runsettings ├── GitVersion.yml ├── LICENSE ├── README-NUGET.md ├── README.md ├── UrlTracker.sln ├── azure-pipelines-deploy-iis.yml ├── azure-pipelines.yml ├── docs ├── CONTRIBUTING.md ├── assets │ ├── Infocaster_Corner.png │ ├── infocaster_nuget_pink.png │ ├── infocaster_nuget_pink.svg │ ├── infocaster_nuget_yellow.png │ └── infocaster_nuget_yellow.svg └── setup.md ├── infocaster_nuget_yellow.png ├── nuget.config ├── readme.txt ├── src ├── Directory.Build.props ├── Directory.Build.targets ├── UrlTracker.Backoffice.Notifications │ ├── Cleanup │ │ ├── CleanupProcessor.cs │ │ ├── CleanupQueue.cs │ │ ├── CleanupScheduler.cs │ │ └── CleanupWorker.cs │ ├── Content │ │ ├── ContentChangeNotificationHandler.cs │ │ ├── ContentValueReaderFactory.cs │ │ ├── ContentWithCultureValueReader.cs │ │ ├── IContentValueReader.cs │ │ └── IContentValueReaderFactory.cs │ ├── Defaults │ │ └── Defaults_Options.cs │ ├── EntryPoint.cs │ ├── Options │ │ └── UrlTrackerNotificationsOptions.cs │ └── UrlTracker.Backoffice.Notifications.csproj ├── UrlTracker.Backoffice.UI │ ├── .eslintignore │ ├── .eslintrc.cjs │ ├── .prettierignore │ ├── .prettierrc.mjs │ ├── .vscode │ │ └── settings.json │ ├── Controllers │ │ ├── LandingPageController.cs │ │ ├── Models │ │ │ ├── Base │ │ │ │ ├── CollectionResponseBase.cs │ │ │ │ ├── EntityWithIdRequest.cs │ │ │ │ ├── PagedCollectionResponseBase.cs │ │ │ │ ├── PaginationRequest.cs │ │ │ │ ├── RedirectViewModelBase.cs │ │ │ │ └── StrategyViewModel.cs │ │ │ ├── LandingPage │ │ │ │ └── NumericMetricResponse.cs │ │ │ ├── Notifications │ │ │ │ └── NotificationResponse.cs │ │ │ ├── Recommendations │ │ │ │ ├── Analysis │ │ │ │ │ ├── RecommendationHistory.cs │ │ │ │ │ └── RecommendationHistoryRequest.cs │ │ │ │ ├── DeleteRequest.cs │ │ │ │ ├── ListRecommendationRequest.cs │ │ │ │ ├── RecommendationCollectionResponse.cs │ │ │ │ ├── RecommendationResponse.cs │ │ │ │ └── UpdateRequest.cs │ │ │ ├── RedirectImport │ │ │ │ ├── CsvRedirect.cs │ │ │ │ └── ImportRedirectRequest.cs │ │ │ ├── RedirectTarget │ │ │ │ ├── ContentTargetResponse.cs │ │ │ │ └── GetContentTargetRequest.cs │ │ │ ├── Redirects │ │ │ │ ├── CreateRedirectRequest.cs │ │ │ │ ├── ListRedirectRequest.cs │ │ │ │ ├── RedirectCollectionResponse.cs │ │ │ │ ├── RedirectRequest.cs │ │ │ │ └── RedirectResponse.cs │ │ │ └── Scoring │ │ │ │ ├── RedactionScoreResponse.cs │ │ │ │ └── ScoreParametersResponse.cs │ │ ├── NotificationsController.cs │ │ ├── RecommendationAnalysisController.cs │ │ ├── RecommendationsController.cs │ │ ├── RedirectImportController.cs │ │ ├── RedirectTargetController.cs │ │ ├── RedirectsController.cs │ │ ├── RequestHandlers │ │ │ ├── NotificationsRequestHandler.cs │ │ │ ├── RecommendationAnalysisRequestHandler.cs │ │ │ ├── RecommendationRequestHandler.cs │ │ │ ├── RedirectImportRequestHandler.cs │ │ │ ├── RedirectRequestHandler.cs │ │ │ ├── RedirectTargetRequestHandler.cs │ │ │ └── ScoringRequestHandler.cs │ │ ├── ScoringController.cs │ │ └── UrlTrackerControllerFeatureProvider.cs │ ├── Defaults │ │ ├── Defaults_Extensions.cs │ │ ├── Defaults_Routing.cs │ │ ├── Defaults_Tree.cs │ │ └── Defaults_Validation.cs │ ├── EntryPoint.cs │ ├── Notifications │ │ ├── PreloadRedirectTargetNotificationHandler.cs │ │ ├── ServerVariablesNotificationHandler.cs │ │ ├── ServingRedirectsNotification.cs │ │ └── UrltrackerVersionProvider.cs │ ├── TrendCalculator.cs │ ├── UrlTracker.Backoffice.UI.csproj │ ├── UrlTrackerDashboard.cs │ ├── UrlTrackerManifestFilter.cs │ ├── UserNotifications │ │ ├── DashboardWelcomeUserNotificationConfiguration.cs │ │ └── UrlTrackerUserNotificationOptions.cs │ ├── build │ │ └── UrlTracker.Backoffice.UI.targets │ ├── frontend │ │ ├── js │ │ │ ├── context │ │ │ │ ├── changemanager.context.ts │ │ │ │ ├── editorservice.context.ts │ │ │ │ ├── iconhelper.context.ts │ │ │ │ ├── landingspageservice.context.ts │ │ │ │ ├── localizationservice.context.ts │ │ │ │ ├── maincontext.mixin.ts │ │ │ │ ├── notificationservice.context.ts │ │ │ │ ├── notificationsservice.context.ts │ │ │ │ ├── overlayservice.context.ts │ │ │ │ ├── recommendationitem.context.ts │ │ │ │ ├── recommendationsanalysis.context.ts │ │ │ │ ├── recommendationservice.context.ts │ │ │ │ ├── redirectimportservice.context.ts │ │ │ │ ├── redirectitem.context.ts │ │ │ │ ├── redirectservice.context.ts │ │ │ │ ├── redirecttargetservice.context.ts │ │ │ │ ├── scope.context.ts │ │ │ │ ├── simpleRedirect.context.ts │ │ │ │ ├── tabcontext.context.ts │ │ │ │ └── versionprovider.context.ts │ │ │ ├── dashboard │ │ │ │ ├── content.lit.ts │ │ │ │ ├── directive.ts │ │ │ │ ├── footer │ │ │ │ │ ├── footer.lit.ts │ │ │ │ │ └── footer.ts │ │ │ │ ├── index.ts │ │ │ │ ├── main.lit.ts │ │ │ │ ├── notifications │ │ │ │ │ ├── notification.lit.ts │ │ │ │ │ ├── notification.service.ts │ │ │ │ │ ├── notification.ts │ │ │ │ │ └── notifications.mixin.ts │ │ │ │ ├── sidebars │ │ │ │ │ ├── analyseRecommendation-main.lit.ts │ │ │ │ │ ├── analyseRecommendation │ │ │ │ │ │ ├── analyseRecommendation.lit.ts │ │ │ │ │ │ ├── analyserecommendation.ts │ │ │ │ │ │ ├── historyChart.lit.ts │ │ │ │ │ │ ├── referrersChart.lit.ts │ │ │ │ │ │ └── scope.ts │ │ │ │ │ ├── explainRecommendations-main.lit.ts │ │ │ │ │ ├── explainRecommendations │ │ │ │ │ │ ├── explainRecommendations.lit.ts │ │ │ │ │ │ ├── explainrecommendations.ts │ │ │ │ │ │ └── scope.ts │ │ │ │ │ ├── inspectRedirect-main.lit.ts │ │ │ │ │ ├── inspectRedirect │ │ │ │ │ │ ├── inspectRedirect.lit.ts │ │ │ │ │ │ ├── inspectredirect.ts │ │ │ │ │ │ └── scope.ts │ │ │ │ │ ├── simpleRedirect-main.lit.ts │ │ │ │ │ └── simpleRedirect │ │ │ │ │ │ ├── manageredirect.ts │ │ │ │ │ │ ├── scope.ts │ │ │ │ │ │ └── simpleRedirect.lit.ts │ │ │ │ ├── tab.ts │ │ │ │ └── tabs │ │ │ │ │ ├── landingpage.lit.ts │ │ │ │ │ ├── recommendations.lit.ts │ │ │ │ │ ├── recommendations │ │ │ │ │ ├── recommendationSearch.lit.ts │ │ │ │ │ ├── recommendationTag │ │ │ │ │ │ ├── recommendationTag.lit.ts │ │ │ │ │ │ └── recommendationTag.ts │ │ │ │ │ ├── recommendationType │ │ │ │ │ │ ├── fileRecommendation.ts │ │ │ │ │ │ ├── imageRecommendation.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── pageRecommendation.ts │ │ │ │ │ │ ├── recommendation.strategy.ts │ │ │ │ │ │ ├── recommendationType.constant.ts │ │ │ │ │ │ ├── recommendationTypeBase.mixin.ts │ │ │ │ │ │ └── technicalFileRecommendation.ts │ │ │ │ │ └── recommendationitem.lit.ts │ │ │ │ │ ├── redirects.lit.ts │ │ │ │ │ ├── redirects │ │ │ │ │ ├── redirectitem.lit.ts │ │ │ │ │ ├── redirectsSearch.lit.ts │ │ │ │ │ ├── redirectview.context.ts │ │ │ │ │ ├── source │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── regexsource.ts │ │ │ │ │ │ ├── source.constants.ts │ │ │ │ │ │ ├── source.strategy.ts │ │ │ │ │ │ ├── sourcebase.ts │ │ │ │ │ │ └── urlsource.ts │ │ │ │ │ └── target │ │ │ │ │ │ ├── implementations │ │ │ │ │ │ ├── contenttarget.lit.ts │ │ │ │ │ │ ├── contenttarget.ts │ │ │ │ │ │ ├── fallbacktarget.lit.ts │ │ │ │ │ │ ├── fallbacktarget.ts │ │ │ │ │ │ ├── urltarget.lit.ts │ │ │ │ │ │ └── urltarget.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── target.constants.ts │ │ │ │ │ │ ├── target.service.ts │ │ │ │ │ │ ├── target.strategy.ts │ │ │ │ │ │ └── targetbase.mixin.ts │ │ │ │ │ └── styles.ts │ │ │ ├── enums │ │ │ │ └── sortType.ts │ │ │ ├── extensions │ │ │ │ └── dashboardPageResponse.ts │ │ │ ├── index.ts │ │ │ ├── models │ │ │ │ └── scope.model.ts │ │ │ ├── overrides.d.ts │ │ │ ├── services │ │ │ │ ├── landingspage.service.ts │ │ │ │ ├── models │ │ │ │ │ ├── CollectionResponseBase.ts │ │ │ │ │ ├── PagedCollectionResponseBase.ts │ │ │ │ │ ├── datawithid.ts │ │ │ │ │ ├── entityresponseid.ts │ │ │ │ │ ├── paginationrequestbase.ts │ │ │ │ │ ├── queryrequestbase.ts │ │ │ │ │ ├── recommendationfilterrequestbase.ts │ │ │ │ │ └── redirectfilterrequestbase.ts │ │ │ │ ├── recommendation.service.ts │ │ │ │ ├── recommendationanalysis.service.ts │ │ │ │ ├── redirect.service.ts │ │ │ │ ├── redirectimport.service.ts │ │ │ │ └── scoring.service.ts │ │ │ ├── umbraco │ │ │ │ ├── editor.service.ts │ │ │ │ ├── icon.service.ts │ │ │ │ ├── localization.service.ts │ │ │ │ ├── notifications.service.ts │ │ │ │ └── overlay.service.ts │ │ │ └── util │ │ │ │ ├── bridge │ │ │ │ └── angularbridge.mixin.ts │ │ │ │ ├── elements │ │ │ │ ├── angulariconregistry.lit.ts │ │ │ │ ├── bulkActions.lit.ts │ │ │ │ ├── inputs │ │ │ │ │ ├── dropdown.lit.ts │ │ │ │ │ ├── pageselect.lit.ts │ │ │ │ │ ├── pagination.lit.ts │ │ │ │ │ └── redirectImport.lit.ts │ │ │ │ ├── redirectActions.lit.ts │ │ │ │ ├── redirects │ │ │ │ │ └── simpleRedirect │ │ │ │ │ │ ├── createSimpleRedirect.lit.ts │ │ │ │ │ │ ├── redirectForce.lit.ts │ │ │ │ │ │ ├── redirectIncomingUrl.lit.ts │ │ │ │ │ │ ├── redirectOutgoingUrl.lit.ts │ │ │ │ │ │ ├── redirectPermanent.lit.ts │ │ │ │ │ │ ├── redirectPreserveQuerystring.lit.ts │ │ │ │ │ │ └── simpleRedirectTypeProvider.ts │ │ │ │ ├── resultlist.lit.ts │ │ │ │ ├── resultlistitem.lit.ts │ │ │ │ └── selectableresultlistitem.lit.ts │ │ │ │ ├── functions │ │ │ │ ├── dateformatter.ts │ │ │ │ └── debounce.ts │ │ │ │ └── tools │ │ │ │ ├── axios.service.ts │ │ │ │ ├── builder │ │ │ │ └── tabBuilder.ts │ │ │ │ ├── changemanager.ts │ │ │ │ ├── existancecheck.ts │ │ │ │ ├── litelementconstructor.ts │ │ │ │ ├── strategy │ │ │ │ └── strategyresolver.ts │ │ │ │ ├── urlresource.service.ts │ │ │ │ ├── variableresource.service.ts │ │ │ │ ├── versionprovider.service.ts │ │ │ │ └── versionproviderservice.constants.ts │ │ ├── public │ │ │ ├── assets │ │ │ │ └── images │ │ │ │ │ └── background.svg │ │ │ ├── dashboard │ │ │ │ └── dashboard.html │ │ │ ├── lang │ │ │ │ ├── en-us.xml │ │ │ │ └── nl-nl.xml │ │ │ └── sidebar │ │ │ │ ├── recommendations │ │ │ │ ├── analyseRecommendation.html │ │ │ │ └── inspectRecommendations.html │ │ │ │ └── redirect │ │ │ │ ├── inspectRedirect.html │ │ │ │ └── simpleRedirect.html │ │ └── scss │ │ │ └── style.scss │ ├── package-lock.json │ ├── package.json │ ├── tsconfig.json │ └── vite.config.mjs ├── UrlTracker.Core.Caching.Memory │ ├── Active │ │ ├── ActiveCacheAccessor.cs │ │ ├── ActiveCacheBootloader.cs │ │ ├── ActiveCacheRedirectChangeHandler.cs │ │ ├── ActiveClientErrorCacheWriter.cs │ │ └── ActiveRedirectCacheWriter.cs │ ├── Database │ │ ├── DecoratorClientErrorRepositoryCaching.cs │ │ └── DecoratorRedirectRepositoryCaching.cs │ ├── Defaults │ │ ├── Defaults_Cache.cs │ │ └── Defaults_Options.cs │ ├── EntryPoint.cs │ ├── IInterceptCache.cs │ ├── ITypedMemoryCache.cs │ ├── InterceptCache.cs │ ├── Intercepting │ │ └── DecoratorIntermediateInterceptServiceCaching.cs │ ├── Notifications │ │ ├── ContentChangeNotificationHandler.cs │ │ ├── RedirectsCacheRefresher.cs │ │ ├── RedirectsChangedNotification.cs │ │ └── RedirectsChangedNotificationHandler.cs │ ├── Options │ │ └── UrlTrackerMemoryCacheOptions.cs │ ├── TypedMemoryCache.cs │ └── UrlTracker.Core.Caching.Memory.csproj ├── UrlTracker.Core │ ├── Abstractions │ │ ├── IUmbracoContextFactoryAbstraction.cs │ │ ├── IUmbracoContextReferenceAbstraction.cs │ │ └── UmbracoContextFactoryAbstraction.cs │ ├── Classification │ │ ├── FallbackUrlClassifier.cs │ │ ├── FileExtensionUrlClassifierStrategyBase.cs │ │ ├── FileUrlClassifierStrategy.cs │ │ ├── IUrlClassifierStrategy.cs │ │ ├── MediaUrlClassifierStrategy.cs │ │ ├── TechnicalFileUrlClassifierStrategy.cs │ │ ├── UrlClassifierStrategyBase.cs │ │ └── UrlClassifierStrategyCollectionBuilder.cs │ ├── ClientErrorService.cs │ ├── Compatibility │ │ └── CompatibilityNPocoSqlExtensions.cs │ ├── Configuration │ │ └── Models │ │ │ └── UrlTrackerSettings.cs │ ├── Database │ │ ├── ClientErrorRepository.cs │ │ ├── Dtos │ │ │ ├── ClientError2ReferrerDto.cs │ │ │ ├── ClientErrorDto.cs │ │ │ ├── ClientErrorMetaDataDto.cs │ │ │ ├── DailyClientErrorDto.cs │ │ │ ├── OccurrancesDto.cs │ │ │ ├── RecommendationDto.cs │ │ │ ├── RedactionScoreDto.cs │ │ │ ├── RedirectDto.cs │ │ │ └── ReferrerDto.cs │ │ ├── Entities │ │ │ ├── ClientErrorEntity.cs │ │ │ ├── ClientErrorEntityCollection.cs │ │ │ ├── ClientErrorMetaData.cs │ │ │ ├── EntityStrategy.cs │ │ │ ├── RecommendationEntity.cs │ │ │ ├── RecommendationEntityCollection.cs │ │ │ ├── RedactionScoreEntity.cs │ │ │ ├── RedirectEntity.cs │ │ │ ├── RedirectEntityCollection.cs │ │ │ └── ReferrerEntity.cs │ │ ├── Factories │ │ │ ├── ClientErrorFactory.cs │ │ │ ├── DailyClientErrorFactory.cs │ │ │ ├── RecommendationFactory.cs │ │ │ ├── RedirectFactory.cs │ │ │ └── ReferrerFactory.cs │ │ ├── IClientErrorRepository.cs │ │ ├── IRecommendationRepository.cs │ │ ├── IRedirectRepository.cs │ │ ├── IReferrerRepository.cs │ │ ├── Mappers │ │ │ ├── ClientErrorMapper.cs │ │ │ ├── RecommendationMapper.cs │ │ │ ├── RedactionScoreMapper.cs │ │ │ ├── RedirectMapper.cs │ │ │ └── ReferrerMapper.cs │ │ ├── Migrations │ │ │ ├── IMigrationPlanFactory.cs │ │ │ ├── M202111081155_UrlTracker.cs │ │ │ ├── M202111081155_UrlTrackerSchema.cs │ │ │ ├── M202204091707_AddIndexes.cs │ │ │ ├── M202206251507_Rework.cs │ │ │ ├── M202206251507_ReworkSchema.cs │ │ │ ├── M202208011724_MigrateOldData.cs │ │ │ ├── M202210291350_DeleteOldTables.cs │ │ │ ├── M202210291430_RecommendationModel.cs │ │ │ ├── M202210291430_RecommendationModelSchema.cs │ │ │ ├── M202212111209_PopulateRedactionScores.cs │ │ │ ├── M202310111424_CultureUpdate.cs │ │ │ ├── M202312101755_UrlColumnLength.cs │ │ │ ├── M202406061746_PatchSqlite.cs │ │ │ ├── M202407260819_PostMigrationCorrectValueLength.cs │ │ │ ├── M202407261301_AddAdvancedFlag.cs │ │ │ ├── M202407261301_AddAdvancedFlagSchema.cs │ │ │ ├── MigrationComponent.cs │ │ │ ├── MigrationExtensions.cs │ │ │ └── MigrationPlanFactory.cs │ │ ├── Models │ │ │ ├── OrderBy.cs │ │ │ ├── RecommendationOrderBy.cs │ │ │ ├── RecommendationScoreParameters.cs │ │ │ └── RedirectFilters.cs │ │ ├── RecommendationRepository.cs │ │ ├── RedactionScoreRepository.cs │ │ ├── RedirectRepository.cs │ │ ├── ReferrerRepository.cs │ │ └── Strategy │ │ │ ├── CultureUpdateSqlServerMigrationStrategy.cs │ │ │ ├── CultureUpdateSqliteMigrationStrategy.cs │ │ │ └── IMigrationStrategy.cs │ ├── Defaults │ │ ├── Defaults_DatabaseSchema.cs │ │ ├── Defaults_Options.cs │ │ ├── Defaults_Parameters.cs │ │ ├── Defaults_SettingsTree.cs │ │ ├── Defaults_Tracking.cs │ │ └── Defaults_Validation.cs │ ├── EntryPoint.cs │ ├── Exceptions │ │ └── ExceptionHelper.cs │ ├── IConfigurationExtensions.cs │ ├── InterceptService.cs │ ├── Intercepting │ │ ├── Conversion │ │ │ ├── IInterceptConverter.cs │ │ │ ├── IInterceptConverterCollection.cs │ │ │ ├── InterceptConverterCollectionBuilder.cs │ │ │ └── MapperInterceptConverter.cs │ │ ├── IInterceptor.cs │ │ ├── IInterceptorCollection.cs │ │ ├── IIntermediateInterceptService.cs │ │ ├── ILastChanceInterceptor.cs │ │ ├── IStaticUrlProvider.cs │ │ ├── IStaticUrlProviderCollection.cs │ │ ├── InterceptorCollectionBuilder.cs │ │ ├── IntermediateInterceptService.cs │ │ ├── Models │ │ │ ├── DefaultInterceptContext.cs │ │ │ ├── IIntercept.cs │ │ │ ├── IInterceptContext.cs │ │ │ └── InterceptBase.cs │ │ ├── NoLongerExistsInterceptor.cs │ │ ├── NullInterceptor.cs │ │ ├── Preprocessing │ │ │ ├── DefaultInterceptContextFactory.cs │ │ │ └── IDefaultInterceptContextFactory.cs │ │ ├── RegexRedirectInterceptor.cs │ │ ├── StaticUrlProvider.cs │ │ ├── StaticUrlProviderCollectionBuilder.cs │ │ └── StaticUrlRedirectInterceptor.cs │ ├── LoggerExtensions.cs │ ├── Logging │ │ └── Logger.cs │ ├── Map │ │ ├── ContentPageTargetStrategyMap.cs │ │ ├── IStrategyMap.cs │ │ ├── RegexSourceStrategyMap.cs │ │ ├── ServiceLayerMaps.cs │ │ ├── StrategyMapBase.cs │ │ ├── StrategyMapCollectionBuilder.cs │ │ ├── UrlSourceStrategyMap.cs │ │ └── UrlTargetStrategyMap.cs │ ├── Models │ │ ├── ClientError.cs │ │ ├── ClientErrorCollection.cs │ │ ├── DailyClientErrorResponse.cs │ │ ├── IRedirectStrategy.cs │ │ ├── Redirect.cs │ │ ├── RedirectCollection.cs │ │ ├── ReferrerResponse.cs │ │ ├── SourceStrategy.cs │ │ ├── TargetStrategy.cs │ │ ├── Url.cs │ │ └── UrlTrackerCollectionBase.cs │ ├── NPocoSqlExtensions.cs │ ├── Notifications │ │ ├── DecoratorRedirectRepositoryNotifications.cs │ │ ├── RedirectCreatedNotification.cs │ │ ├── RedirectDeletedNotification.cs │ │ ├── RedirectNotificationBase.cs │ │ └── RedirectUpdatedNotification.cs │ ├── ObjectExtensions.cs │ ├── RecommendationService.cs │ ├── RecommendationServiceExtensions.cs │ ├── RedactionScoreService.cs │ ├── RedactionScoreServiceExtensions.cs │ ├── RedirectService.cs │ ├── StringExtensions.cs │ ├── UrlTracker.Core.csproj │ ├── Validation │ │ ├── Attributes │ │ │ ├── ValidCultureFormat.cs │ │ │ └── ValidRegexPattern.cs │ │ ├── IValidationHelper.cs │ │ └── ValidationHelper.cs │ └── app.config ├── UrlTracker.GlobalBlocklist │ ├── Context │ │ ├── DenyListContext.cs │ │ └── DenyListPopulator.cs │ ├── Defaults │ │ └── Defaults_DenyList.cs │ ├── EntryPoint.cs │ ├── Filters │ │ └── GlobalDenyListFilter.cs │ ├── Services │ │ ├── DenyListResponse.cs │ │ └── RetrieveDenyListService.cs │ └── UrlTracker.GlobalBlocklist.csproj ├── UrlTracker.Middleware │ ├── Background │ │ └── ClientErrorProcessor.cs │ ├── Defaults │ │ └── Defaults_Options.cs │ ├── EntryPoint.cs │ ├── IApplicationBuilderExtensions.cs │ ├── LoggerExtensions.cs │ ├── Options │ │ └── UrlTrackerPipelineOptions.cs │ ├── Processing │ │ ├── PipelineConfigurationClientErrorFilter.cs │ │ └── PipelineConfigurationRequestInterceptFilter.cs │ ├── UrlTracker.Middleware.csproj │ ├── UrlTrackerClientErrorTrackingMiddleware.cs │ ├── UrlTrackerRedirectMiddleware.cs │ └── UrlTrackerStartupFilter.cs ├── UrlTracker.Modules │ ├── Options │ │ ├── ServiceCollectionExtensions.cs │ │ ├── UrlTrackerModuleOptions.cs │ │ └── UrlTrackerModuleRegistration.cs │ └── UrlTracker.Modules.csproj ├── UrlTracker.Web │ ├── Abstraction │ │ ├── IRequestAbstraction.cs │ │ ├── IResponseAbstraction.cs │ │ ├── RequestAbstraction.cs │ │ └── ResponseAbstraction.cs │ ├── Configuration │ │ ├── IReservedPathSettingsProvider.cs │ │ └── ReservedPathSettingsProvider.cs │ ├── EntryPoint.cs │ ├── HttpContextExtensions.cs │ ├── LoggerExtensions.cs │ ├── Processing │ │ ├── ClientErrorFilterCollectionBuilder.cs │ │ ├── Filtering │ │ │ ├── BlacklistedUrlsClientErrorFilter.cs │ │ │ ├── ConstantsClientErrorFilter.cs │ │ │ ├── CoreConfigurationClientErrorFilter.cs │ │ │ ├── CoreConfigurationRequestInterceptFilter.cs │ │ │ ├── NotFoundClientErrorFilter.cs │ │ │ ├── UrlReservedPathFilter.cs │ │ │ └── UserAgentClientErrorFilter.cs │ │ ├── Handling │ │ │ ├── ContentRedirectResponseInterceptHandler.cs │ │ │ ├── LastChanceResponseInterceptHandler.cs │ │ │ ├── NoLongerExistsResponseInterceptHandler.cs │ │ │ ├── NullInterceptHandler.cs │ │ │ ├── RedirectResponseInterceptHandler.cs │ │ │ ├── ResponseInterceptHandlerBase.cs │ │ │ └── UrlRedirectResponseInterceptHandler.cs │ │ ├── IClientErrorFilter.cs │ │ ├── IClientErrorFilterCollection.cs │ │ ├── IRequestInterceptFilter.cs │ │ ├── IRequestInterceptFilterCollection.cs │ │ ├── IResponseInterceptHandler.cs │ │ ├── IResponseInterceptHandlerCollection.cs │ │ ├── RequestInterceptFilterCollectionBuilder.cs │ │ └── ResponseInterceptHandlerCollectionBuilder.cs │ └── UrlTracker.Web.csproj └── UrlTracker │ ├── UrlTracker.csproj │ └── UrlTrackerComposer.cs ├── test ├── UrlTracker.Backoffice.UI.Tests │ ├── Controllers │ │ └── Models │ │ │ ├── AssemblyScanTestBase.cs │ │ │ └── ModelValidationTestBase.cs │ └── UrlTracker.Backoffice.UI.Tests.csproj ├── UrlTracker.Core.Caching.Memory.Tests │ ├── Intercepting │ │ └── DecoratorIntermediateInterceptServiceCachingTests.cs │ ├── TypedMemoryCacheTests.cs │ └── UrlTracker.Core.Caching.Memory.Tests.csproj ├── UrlTracker.Core.Tests │ ├── Classification │ │ ├── FileUrlClassifierStrategyTests.cs │ │ ├── MediaUrlClassifierStrategyTests.cs │ │ └── TechnicalFileUrlClassifierStrategyTests.cs │ ├── ClientErrorServiceTests.cs │ ├── ClientErrorServiceTests_AddAsync.cs │ ├── ClientErrorServiceTests_ReportAsync.cs │ ├── Domain │ │ └── Models │ │ │ └── UrlTests.cs │ ├── InterceptServiceTests.cs │ ├── Intercepting │ │ ├── Conversion │ │ │ ├── InterceptConverterCollectionTests.cs │ │ │ └── MapperInterceptConverterTests.cs │ │ ├── InterceptorCollectionTests.cs │ │ ├── NoLongerExistsInterceptorTests.cs │ │ ├── RegexRedirectInterceptorTests.cs │ │ └── StaticUrlRedirectMatcherTests.cs │ ├── Map │ │ ├── ContentPageTargetStrategyMapTests.cs │ │ ├── ServiceLayerMapsTests.cs │ │ ├── StrategyMapBaseTests.cs │ │ └── StrategyMapCollectionTests.cs │ ├── Models │ │ ├── RedirectCultureValidationTests.cs │ │ └── UrlTrackerCollectionBaseTests.cs │ ├── ObjectExtensionsTests.cs │ ├── RedirectServiceTests.cs │ ├── RedirectServiceTests_AddAsync.cs │ ├── RedirectServiceTests_UpdateAsync.cs │ ├── StringExtensionsTests.cs │ ├── UrlTracker.Core.Tests.csproj │ └── Validation │ │ └── ValidationHelperTests.cs ├── UrlTracker.IntegrationTests │ ├── Backoffice │ │ ├── BackofficeIntegrationTestBase.cs │ │ ├── Notification │ │ │ ├── GetNotificationsTests.cs │ │ │ └── NotificationTestBase.cs │ │ ├── Recommendation │ │ │ ├── ListRecommendationsTests.cs │ │ │ └── RecommendationTestBase.cs │ │ └── Redirect │ │ │ ├── CreateRedirectTests.cs │ │ │ ├── DeleteRedirectTests.cs │ │ │ ├── GetRedirectTests.cs │ │ │ ├── RedirectTestBase.cs │ │ │ └── UpdateRedirectTests.cs │ ├── Integration.settings.json │ ├── IntegrationTestBase.cs │ ├── RecommendationTracking │ │ └── RecommendationTrackingTests.cs │ ├── Redirecting │ │ ├── ForceTests.cs │ │ ├── RedirectFromTests.cs │ │ ├── RedirectTestBase.cs │ │ ├── RedirectToTests.cs │ │ └── RetainQueryStringTests.cs │ ├── UrlTracker.IntegrationTests.csproj │ ├── Usings.cs │ ├── Utils │ │ ├── QueuelessClientErrorHandler.cs │ │ ├── TestAuthorizationHandler.cs │ │ ├── TestRequirement.cs │ │ └── UrlTrackerWebApplicationFactory.cs │ ├── appsettings-schema.Umbraco.Cms.json │ ├── appsettings-schema.json │ └── wwwroot │ │ ├── css │ │ ├── index.css │ │ └── index.css.map │ │ └── favicon.ico ├── UrlTracker.Middleware.Tests │ ├── Processing │ │ ├── PipelineConfigurationClientErrorFilterTests.cs │ │ └── PipelineConfigurationRequestFilterTests.cs │ ├── UrlTracker.Middleware.Tests.csproj │ ├── UrlTrackerClientErrorTrackingMiddlewareTests.cs │ └── UrlTrackerRedirectMiddlewareTests.cs ├── UrlTracker.Resources.Testing │ ├── Logging │ │ └── VoidLogger.cs │ ├── Mocks │ │ ├── HttpContextMock.cs │ │ ├── ScopeProviderMock.cs │ │ └── UmbracoContextFactoryAbstractionMock.cs │ ├── Objects │ │ ├── TestLanguage.cs │ │ ├── TestMapDefinition.cs │ │ ├── TestPublishedContent.cs │ │ └── TestResponseInterceptHandler.cs │ └── UrlTracker.Resources.Testing.csproj ├── UrlTracker.Resources.Website │ ├── .gitignore │ ├── App_Plugins │ │ └── UrlTrackerTest │ │ │ ├── dashboard │ │ │ ├── dashboard.controller.js │ │ │ └── dashboard.html │ │ │ ├── lang │ │ │ ├── en-us.xml │ │ │ └── nl-nl.xml │ │ │ ├── package.manifest │ │ │ ├── redirectgenerator │ │ │ ├── dashboard.controller.js │ │ │ └── dashboard.html │ │ │ └── style.css │ ├── Composing │ │ └── DashboardComposer.cs │ ├── Controllers │ │ ├── FakerExtensions.cs │ │ ├── UrlTrackerRedirectGeneratorController.cs │ │ └── UrlTrackerTestController.cs │ ├── Models │ │ ├── GenerateRandomRequest.cs │ │ ├── RecommendationViewModel.cs │ │ ├── RedactionScoreViewModel.cs │ │ └── SetRecommendationRequest.cs │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Startup.cs │ ├── SystemFeatures │ │ ├── AutoLogin │ │ │ ├── AutologinAuthenticationHandler.cs │ │ │ ├── AutologinExtensions.cs │ │ │ └── AutologinProviderOptions.cs │ │ └── ProxyExtensions.cs │ ├── Umbraco │ │ └── models │ │ │ ├── Article.generated.cs │ │ │ ├── ArticleControls.generated.cs │ │ │ ├── ArticleList.generated.cs │ │ │ ├── Author.generated.cs │ │ │ ├── AuthorList.generated.cs │ │ │ ├── Category.generated.cs │ │ │ ├── CategoryList.generated.cs │ │ │ ├── CodeSnippetRow.generated.cs │ │ │ ├── CodeSnippetRowSettings.generated.cs │ │ │ ├── Contact.generated.cs │ │ │ ├── ContactFormControls.generated.cs │ │ │ ├── Content.generated.cs │ │ │ ├── ContentControls.generated.cs │ │ │ ├── Error.generated.cs │ │ │ ├── File.generated.cs │ │ │ ├── Folder.generated.cs │ │ │ ├── FooterControls.generated.cs │ │ │ ├── HeaderControls.generated.cs │ │ │ ├── HideProperty.generated.cs │ │ │ ├── Home.generated.cs │ │ │ ├── IconLinkRow.generated.cs │ │ │ ├── IconLinkRowSettings.generated.cs │ │ │ ├── Image.generated.cs │ │ │ ├── ImageCarouselRow.generated.cs │ │ │ ├── ImageCarouselRowSettings.generated.cs │ │ │ ├── ImageRow.generated.cs │ │ │ ├── ImageRowSettings.generated.cs │ │ │ ├── LatestArticlesRow.generated.cs │ │ │ ├── LatestArticlesRowSettings.generated.cs │ │ │ ├── ListPageSettings.generated.cs │ │ │ ├── MainImageControls.generated.cs │ │ │ ├── Member.generated.cs │ │ │ ├── RichTextRow.generated.cs │ │ │ ├── RichTextRowSettings.generated.cs │ │ │ ├── Root.generated.cs │ │ │ ├── SEocontrols.generated.cs │ │ │ ├── Search.generated.cs │ │ │ ├── SpacingProperties.generated.cs │ │ │ ├── TestPage.generated.cs │ │ │ ├── UmbracoMediaArticle.generated.cs │ │ │ ├── UmbracoMediaAudio.generated.cs │ │ │ ├── UmbracoMediaVectorGraphics.generated.cs │ │ │ ├── UmbracoMediaVideo.generated.cs │ │ │ ├── VideoRow.generated.cs │ │ │ ├── VideoRowSettings.generated.cs │ │ │ ├── VisibilityControls.generated.cs │ │ │ └── XMlsitemap.generated.cs │ ├── UrlTracker.Resources.Website.csproj │ ├── UrlTrackerNotifications │ │ └── UrlTrackerNotificationHandler.cs │ ├── Views │ │ ├── Author.cshtml │ │ ├── AuthorList.cshtml │ │ ├── Components │ │ │ ├── Contact │ │ │ │ └── Default.cshtml │ │ │ └── Pagination │ │ │ │ └── Default.cshtml │ │ ├── MultilingualRoot.cshtml │ │ ├── MultilingualTestPage.cshtml │ │ ├── Partials │ │ │ ├── BlockList │ │ │ │ ├── Components │ │ │ │ │ ├── codeSnippetRow.cshtml │ │ │ │ │ ├── iconLinkRow.cshtml │ │ │ │ │ ├── imageCarouselRow.cshtml │ │ │ │ │ ├── imageRow.cshtml │ │ │ │ │ ├── latestArticlesRow.cshtml │ │ │ │ │ ├── richTextRow.cshtml │ │ │ │ │ └── videoRow.cshtml │ │ │ │ └── Default.cshtml │ │ │ ├── Grid │ │ │ │ ├── Bootstrap3-Fluid.cshtml │ │ │ │ ├── Bootstrap3.cshtml │ │ │ │ └── Editors │ │ │ │ │ ├── Base.cshtml │ │ │ │ │ ├── Embed.cshtml │ │ │ │ │ ├── Macro.cshtml │ │ │ │ │ ├── Media.cshtml │ │ │ │ │ ├── Rte.cshtml │ │ │ │ │ └── Textstring.cshtml │ │ │ ├── authors.cshtml │ │ │ ├── blockgrid │ │ │ │ ├── area.cshtml │ │ │ │ ├── areas.cshtml │ │ │ │ ├── default.cshtml │ │ │ │ └── items.cshtml │ │ │ ├── footer.cshtml │ │ │ ├── mainNavigation.cshtml │ │ │ ├── metaData.cshtml │ │ │ ├── pageHeader.cshtml │ │ │ └── xmlSitemap.cshtml │ │ ├── Root.cshtml │ │ ├── TestPage.cshtml │ │ ├── _ViewImports.cshtml │ │ ├── article.cshtml │ │ ├── articleList.cshtml │ │ ├── contact.cshtml │ │ ├── content.cshtml │ │ ├── error.cshtml │ │ ├── home.cshtml │ │ ├── master.cshtml │ │ ├── search.cshtml │ │ └── xMLSitemap.cshtml │ ├── Web.Testing.config │ ├── Web.config │ ├── appsettings-schema.Umbraco.Cms.json │ ├── appsettings-schema.json │ ├── appsettings.Development.json │ ├── appsettings.Testing.json │ ├── appsettings.json │ ├── package-lock.json │ └── wwwroot │ │ ├── clean-assets │ │ ├── css │ │ │ ├── highlightjs-copy.min.css │ │ │ ├── styles.css │ │ │ ├── swiffy-slider.min.css │ │ │ └── vs2015.css │ │ └── js │ │ │ ├── highlight.default.min.css │ │ │ ├── highlight.min.js │ │ │ ├── highlightjs-copy.min.js │ │ │ ├── initHighlight.js │ │ │ ├── scripts.js │ │ │ └── swiffy-slider.min.js │ │ ├── css │ │ ├── dropdownStyles.css │ │ ├── index.css │ │ └── index.css.map │ │ ├── favicon.ico │ │ ├── media │ │ ├── 0s1i3qfx │ │ │ └── twitter.svg │ │ ├── 4esfh0cz │ │ │ └── square-twitter.svg │ │ ├── bgapfo4f │ │ │ └── phone-pen-binder.jpg │ │ ├── cpth2fx5 │ │ │ └── community-front-row.jpg │ │ ├── cyybnb0n │ │ │ └── discord.svg │ │ ├── ekpdgscq │ │ │ └── triangle-table-chairs.jpg │ │ ├── f01jqvmq │ │ │ └── bluetooth-white-keyboard.jpg │ │ ├── fkadbwt3 │ │ │ └── umbracoffee-codegarden.jpg │ │ ├── gsnjjwq4 │ │ │ └── authors.jpg │ │ ├── iuln540y │ │ │ └── paypal.svg │ │ ├── kfrm2wll │ │ │ └── diary.jpg │ │ ├── l0vicqwg │ │ │ └── 24-days-people-at-codegarden.jpg │ │ ├── lclf3ry1 │ │ │ └── tutorials.jpg │ │ ├── ljahypfa │ │ │ └── chairs-lamps.jpg │ │ ├── mbdjmcj4 │ │ │ └── github.svg │ │ ├── n43dfw3o │ │ │ └── first-timers-at-codegarden.jpg │ │ ├── oo4jm5ni │ │ │ └── candid-contributions.jpg │ │ ├── pcmdjq3h │ │ │ └── package-manifest.jpg │ │ ├── pgaplvty │ │ │ └── mastodon.svg │ │ ├── pwtlngdw │ │ │ └── cc-paypal.svg │ │ ├── q4xbztkq │ │ │ └── profile-pic-2023.png │ │ ├── qo0ccbnw │ │ │ └── codegarden-keynote.jpg │ │ ├── qwtcc0ic │ │ │ └── github-alt.svg │ │ ├── tgcltm3u │ │ │ └── square-github.svg │ │ ├── tj5lysa0 │ │ │ └── share-nodes.svg │ │ ├── tu4lsswi │ │ │ └── podcast-coffee.jpg │ │ ├── ug3ds3ve │ │ │ └── umbraco.svg │ │ ├── ulnla1qp │ │ │ └── mastodon.svg │ │ ├── uv2bljv1 │ │ │ └── meetup-organizers-at-codegarden.jpg │ │ ├── uxcbvbvf │ │ │ └── desktop-notebook-glasses.jpg │ │ ├── wvadrxjb │ │ │ └── front-row-audience-smiles.jpg │ │ ├── xldnfcwl │ │ │ └── friendly-chair.jpg │ │ ├── xu5ome2c │ │ │ └── say-cheese.jpg │ │ ├── yhvnqpay │ │ │ └── mastodon.png │ │ ├── z4ocpnjy │ │ │ └── skrift-at-codegarden.jpg │ │ └── zgin435m │ │ │ └── mastodon.png │ │ └── robots.txt └── UrlTracker.Web.Tests │ ├── Configuration │ └── ReservedPathSettingsProviderTests.cs │ ├── Processing │ ├── BlacklistedUrlsClientErrorFilterTests.cs │ ├── ConstantsClientErrorFilterTests.cs │ ├── CoreConfigurationClientErrorFilterTests.cs │ ├── CoreConfigurationRequestInterceptFilterTests.cs │ ├── NoLongerExistsResponseInterceptHandlerTests.cs │ ├── NotFoundClientErrorFilterTests.cs │ ├── RedirectResponseHandlerTestCase.cs │ ├── RedirectResponseInterceptHandlerTests.cs │ ├── RequestInterceptFilterCollectionTests.cs │ ├── ResponseInterceptHandlerCollectionTests.cs │ └── UrlReservedPathFilterTests.cs │ └── UrlTracker.Web.Tests.csproj └── umbraco-marketplace.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/.gitignore -------------------------------------------------------------------------------- /.runsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/.runsettings -------------------------------------------------------------------------------- /GitVersion.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/GitVersion.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/LICENSE -------------------------------------------------------------------------------- /README-NUGET.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/README-NUGET.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/README.md -------------------------------------------------------------------------------- /UrlTracker.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/UrlTracker.sln -------------------------------------------------------------------------------- /azure-pipelines-deploy-iis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/azure-pipelines-deploy-iis.yml -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /docs/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/docs/CONTRIBUTING.md -------------------------------------------------------------------------------- /docs/assets/Infocaster_Corner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/docs/assets/Infocaster_Corner.png -------------------------------------------------------------------------------- /docs/assets/infocaster_nuget_pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/docs/assets/infocaster_nuget_pink.png -------------------------------------------------------------------------------- /docs/assets/infocaster_nuget_pink.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/docs/assets/infocaster_nuget_pink.svg -------------------------------------------------------------------------------- /docs/assets/infocaster_nuget_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/docs/assets/infocaster_nuget_yellow.png -------------------------------------------------------------------------------- /docs/assets/infocaster_nuget_yellow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/docs/assets/infocaster_nuget_yellow.svg -------------------------------------------------------------------------------- /docs/setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/docs/setup.md -------------------------------------------------------------------------------- /infocaster_nuget_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/infocaster_nuget_yellow.png -------------------------------------------------------------------------------- /nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/nuget.config -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/readme.txt -------------------------------------------------------------------------------- /src/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/Directory.Build.props -------------------------------------------------------------------------------- /src/Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/Directory.Build.targets -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.Notifications/Cleanup/CleanupProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.Notifications/Cleanup/CleanupProcessor.cs -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.Notifications/Cleanup/CleanupQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.Notifications/Cleanup/CleanupQueue.cs -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.Notifications/Cleanup/CleanupScheduler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.Notifications/Cleanup/CleanupScheduler.cs -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.Notifications/Cleanup/CleanupWorker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.Notifications/Cleanup/CleanupWorker.cs -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.Notifications/Content/ContentChangeNotificationHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.Notifications/Content/ContentChangeNotificationHandler.cs -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.Notifications/Content/ContentValueReaderFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.Notifications/Content/ContentValueReaderFactory.cs -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.Notifications/Content/ContentWithCultureValueReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.Notifications/Content/ContentWithCultureValueReader.cs -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.Notifications/Content/IContentValueReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.Notifications/Content/IContentValueReader.cs -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.Notifications/Content/IContentValueReaderFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.Notifications/Content/IContentValueReaderFactory.cs -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.Notifications/Defaults/Defaults_Options.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.Notifications/Defaults/Defaults_Options.cs -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.Notifications/EntryPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.Notifications/EntryPoint.cs -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.Notifications/Options/UrlTrackerNotificationsOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.Notifications/Options/UrlTrackerNotificationsOptions.cs -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.Notifications/UrlTracker.Backoffice.Notifications.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.Notifications/UrlTracker.Backoffice.Notifications.csproj -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/.eslintignore -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/.eslintrc.cjs -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/.prettierignore -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/.prettierrc.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/.prettierrc.mjs -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/.vscode/settings.json -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/Controllers/LandingPageController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/Controllers/LandingPageController.cs -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/Controllers/Models/Base/CollectionResponseBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/Controllers/Models/Base/CollectionResponseBase.cs -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/Controllers/Models/Base/EntityWithIdRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/Controllers/Models/Base/EntityWithIdRequest.cs -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/Controllers/Models/Base/PagedCollectionResponseBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/Controllers/Models/Base/PagedCollectionResponseBase.cs -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/Controllers/Models/Base/PaginationRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/Controllers/Models/Base/PaginationRequest.cs -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/Controllers/Models/Base/RedirectViewModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/Controllers/Models/Base/RedirectViewModelBase.cs -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/Controllers/Models/Base/StrategyViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/Controllers/Models/Base/StrategyViewModel.cs -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/Controllers/Models/LandingPage/NumericMetricResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/Controllers/Models/LandingPage/NumericMetricResponse.cs -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/Controllers/Models/Notifications/NotificationResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/Controllers/Models/Notifications/NotificationResponse.cs -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/Controllers/Models/Recommendations/DeleteRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/Controllers/Models/Recommendations/DeleteRequest.cs -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/Controllers/Models/Recommendations/ListRecommendationRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/Controllers/Models/Recommendations/ListRecommendationRequest.cs -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/Controllers/Models/Recommendations/RecommendationResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/Controllers/Models/Recommendations/RecommendationResponse.cs -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/Controllers/Models/Recommendations/UpdateRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/Controllers/Models/Recommendations/UpdateRequest.cs -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/Controllers/Models/RedirectImport/CsvRedirect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/Controllers/Models/RedirectImport/CsvRedirect.cs -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/Controllers/Models/RedirectImport/ImportRedirectRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/Controllers/Models/RedirectImport/ImportRedirectRequest.cs -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/Controllers/Models/RedirectTarget/ContentTargetResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/Controllers/Models/RedirectTarget/ContentTargetResponse.cs -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/Controllers/Models/RedirectTarget/GetContentTargetRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/Controllers/Models/RedirectTarget/GetContentTargetRequest.cs -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/Controllers/Models/Redirects/CreateRedirectRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/Controllers/Models/Redirects/CreateRedirectRequest.cs -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/Controllers/Models/Redirects/ListRedirectRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/Controllers/Models/Redirects/ListRedirectRequest.cs -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/Controllers/Models/Redirects/RedirectCollectionResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/Controllers/Models/Redirects/RedirectCollectionResponse.cs -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/Controllers/Models/Redirects/RedirectRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/Controllers/Models/Redirects/RedirectRequest.cs -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/Controllers/Models/Redirects/RedirectResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/Controllers/Models/Redirects/RedirectResponse.cs -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/Controllers/Models/Scoring/RedactionScoreResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/Controllers/Models/Scoring/RedactionScoreResponse.cs -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/Controllers/Models/Scoring/ScoreParametersResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/Controllers/Models/Scoring/ScoreParametersResponse.cs -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/Controllers/NotificationsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/Controllers/NotificationsController.cs -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/Controllers/RecommendationAnalysisController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/Controllers/RecommendationAnalysisController.cs -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/Controllers/RecommendationsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/Controllers/RecommendationsController.cs -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/Controllers/RedirectImportController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/Controllers/RedirectImportController.cs -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/Controllers/RedirectTargetController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/Controllers/RedirectTargetController.cs -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/Controllers/RedirectsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/Controllers/RedirectsController.cs -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/Controllers/RequestHandlers/NotificationsRequestHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/Controllers/RequestHandlers/NotificationsRequestHandler.cs -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/Controllers/RequestHandlers/RecommendationRequestHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/Controllers/RequestHandlers/RecommendationRequestHandler.cs -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/Controllers/RequestHandlers/RedirectImportRequestHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/Controllers/RequestHandlers/RedirectImportRequestHandler.cs -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/Controllers/RequestHandlers/RedirectRequestHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/Controllers/RequestHandlers/RedirectRequestHandler.cs -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/Controllers/RequestHandlers/RedirectTargetRequestHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/Controllers/RequestHandlers/RedirectTargetRequestHandler.cs -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/Controllers/RequestHandlers/ScoringRequestHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/Controllers/RequestHandlers/ScoringRequestHandler.cs -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/Controllers/ScoringController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/Controllers/ScoringController.cs -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/Controllers/UrlTrackerControllerFeatureProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/Controllers/UrlTrackerControllerFeatureProvider.cs -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/Defaults/Defaults_Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/Defaults/Defaults_Extensions.cs -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/Defaults/Defaults_Routing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/Defaults/Defaults_Routing.cs -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/Defaults/Defaults_Tree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/Defaults/Defaults_Tree.cs -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/Defaults/Defaults_Validation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/Defaults/Defaults_Validation.cs -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/EntryPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/EntryPoint.cs -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/Notifications/PreloadRedirectTargetNotificationHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/Notifications/PreloadRedirectTargetNotificationHandler.cs -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/Notifications/ServerVariablesNotificationHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/Notifications/ServerVariablesNotificationHandler.cs -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/Notifications/ServingRedirectsNotification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/Notifications/ServingRedirectsNotification.cs -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/Notifications/UrltrackerVersionProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/Notifications/UrltrackerVersionProvider.cs -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/TrendCalculator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/TrendCalculator.cs -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/UrlTracker.Backoffice.UI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/UrlTracker.Backoffice.UI.csproj -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/UrlTrackerDashboard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/UrlTrackerDashboard.cs -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/UrlTrackerManifestFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/UrlTrackerManifestFilter.cs -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/UserNotifications/UrlTrackerUserNotificationOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/UserNotifications/UrlTrackerUserNotificationOptions.cs -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/build/UrlTracker.Backoffice.UI.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/build/UrlTracker.Backoffice.UI.targets -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/frontend/js/context/changemanager.context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/frontend/js/context/changemanager.context.ts -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/frontend/js/context/editorservice.context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/frontend/js/context/editorservice.context.ts -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/frontend/js/context/iconhelper.context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/frontend/js/context/iconhelper.context.ts -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/frontend/js/context/landingspageservice.context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/frontend/js/context/landingspageservice.context.ts -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/frontend/js/context/localizationservice.context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/frontend/js/context/localizationservice.context.ts -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/frontend/js/context/maincontext.mixin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/frontend/js/context/maincontext.mixin.ts -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/frontend/js/context/notificationservice.context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/frontend/js/context/notificationservice.context.ts -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/frontend/js/context/notificationsservice.context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/frontend/js/context/notificationsservice.context.ts -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/frontend/js/context/overlayservice.context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/frontend/js/context/overlayservice.context.ts -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/frontend/js/context/recommendationitem.context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/frontend/js/context/recommendationitem.context.ts -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/frontend/js/context/recommendationsanalysis.context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/frontend/js/context/recommendationsanalysis.context.ts -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/frontend/js/context/recommendationservice.context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/frontend/js/context/recommendationservice.context.ts -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/frontend/js/context/redirectimportservice.context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/frontend/js/context/redirectimportservice.context.ts -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/frontend/js/context/redirectitem.context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/frontend/js/context/redirectitem.context.ts -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/frontend/js/context/redirectservice.context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/frontend/js/context/redirectservice.context.ts -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/frontend/js/context/redirecttargetservice.context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/frontend/js/context/redirecttargetservice.context.ts -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/frontend/js/context/scope.context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/frontend/js/context/scope.context.ts -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/frontend/js/context/simpleRedirect.context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/frontend/js/context/simpleRedirect.context.ts -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/frontend/js/context/tabcontext.context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/frontend/js/context/tabcontext.context.ts -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/frontend/js/context/versionprovider.context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/frontend/js/context/versionprovider.context.ts -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/frontend/js/dashboard/content.lit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/frontend/js/dashboard/content.lit.ts -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/frontend/js/dashboard/directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/frontend/js/dashboard/directive.ts -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/frontend/js/dashboard/footer/footer.lit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/frontend/js/dashboard/footer/footer.lit.ts -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/frontend/js/dashboard/footer/footer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/frontend/js/dashboard/footer/footer.ts -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/frontend/js/dashboard/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/frontend/js/dashboard/index.ts -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/frontend/js/dashboard/main.lit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/frontend/js/dashboard/main.lit.ts -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/frontend/js/dashboard/notifications/notification.lit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/frontend/js/dashboard/notifications/notification.lit.ts -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/frontend/js/dashboard/notifications/notification.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/frontend/js/dashboard/notifications/notification.service.ts -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/frontend/js/dashboard/notifications/notification.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/frontend/js/dashboard/notifications/notification.ts -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/frontend/js/dashboard/notifications/notifications.mixin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/frontend/js/dashboard/notifications/notifications.mixin.ts -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/frontend/js/dashboard/sidebars/analyseRecommendation-main.lit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/frontend/js/dashboard/sidebars/analyseRecommendation-main.lit.ts -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/frontend/js/dashboard/sidebars/analyseRecommendation/scope.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/frontend/js/dashboard/sidebars/analyseRecommendation/scope.ts -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/frontend/js/dashboard/sidebars/inspectRedirect-main.lit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/frontend/js/dashboard/sidebars/inspectRedirect-main.lit.ts -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/frontend/js/dashboard/sidebars/inspectRedirect/scope.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/frontend/js/dashboard/sidebars/inspectRedirect/scope.ts -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/frontend/js/dashboard/sidebars/simpleRedirect-main.lit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/frontend/js/dashboard/sidebars/simpleRedirect-main.lit.ts -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/frontend/js/dashboard/sidebars/simpleRedirect/scope.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/frontend/js/dashboard/sidebars/simpleRedirect/scope.ts -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/frontend/js/dashboard/tab.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/frontend/js/dashboard/tab.ts -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/frontend/js/dashboard/tabs/landingpage.lit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/frontend/js/dashboard/tabs/landingpage.lit.ts -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/frontend/js/dashboard/tabs/recommendations.lit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/frontend/js/dashboard/tabs/recommendations.lit.ts -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/frontend/js/dashboard/tabs/redirects.lit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/frontend/js/dashboard/tabs/redirects.lit.ts -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/frontend/js/dashboard/tabs/redirects/redirectitem.lit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/frontend/js/dashboard/tabs/redirects/redirectitem.lit.ts -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/frontend/js/dashboard/tabs/redirects/redirectsSearch.lit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/frontend/js/dashboard/tabs/redirects/redirectsSearch.lit.ts -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/frontend/js/dashboard/tabs/redirects/redirectview.context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/frontend/js/dashboard/tabs/redirects/redirectview.context.ts -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/frontend/js/dashboard/tabs/redirects/source/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/frontend/js/dashboard/tabs/redirects/source/index.ts -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/frontend/js/dashboard/tabs/redirects/source/regexsource.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/frontend/js/dashboard/tabs/redirects/source/regexsource.ts -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/frontend/js/dashboard/tabs/redirects/source/sourcebase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/frontend/js/dashboard/tabs/redirects/source/sourcebase.ts -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/frontend/js/dashboard/tabs/redirects/source/urlsource.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/frontend/js/dashboard/tabs/redirects/source/urlsource.ts -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/frontend/js/dashboard/tabs/redirects/target/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/frontend/js/dashboard/tabs/redirects/target/index.ts -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/frontend/js/dashboard/tabs/redirects/target/target.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/frontend/js/dashboard/tabs/redirects/target/target.service.ts -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/frontend/js/dashboard/tabs/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/frontend/js/dashboard/tabs/styles.ts -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/frontend/js/enums/sortType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/frontend/js/enums/sortType.ts -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/frontend/js/extensions/dashboardPageResponse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/frontend/js/extensions/dashboardPageResponse.ts -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/frontend/js/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/frontend/js/index.ts -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/frontend/js/models/scope.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/frontend/js/models/scope.model.ts -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/frontend/js/overrides.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/frontend/js/overrides.d.ts -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/frontend/js/services/landingspage.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/frontend/js/services/landingspage.service.ts -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/frontend/js/services/models/CollectionResponseBase.ts: -------------------------------------------------------------------------------- 1 | export interface ICollectionResponseBase { 2 | results: Array; 3 | } 4 | -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/frontend/js/services/models/PagedCollectionResponseBase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/frontend/js/services/models/PagedCollectionResponseBase.ts -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/frontend/js/services/models/datawithid.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/frontend/js/services/models/datawithid.ts -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/frontend/js/services/models/entityresponseid.ts: -------------------------------------------------------------------------------- 1 | export interface IEntityResponseId { 2 | id: number; 3 | key: string; 4 | } 5 | -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/frontend/js/services/models/paginationrequestbase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/frontend/js/services/models/paginationrequestbase.ts -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/frontend/js/services/models/queryrequestbase.ts: -------------------------------------------------------------------------------- 1 | export interface IQueryRequestBase { 2 | query?: string; 3 | } 4 | -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/frontend/js/services/models/redirectfilterrequestbase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/frontend/js/services/models/redirectfilterrequestbase.ts -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/frontend/js/services/recommendation.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/frontend/js/services/recommendation.service.ts -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/frontend/js/services/recommendationanalysis.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/frontend/js/services/recommendationanalysis.service.ts -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/frontend/js/services/redirect.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/frontend/js/services/redirect.service.ts -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/frontend/js/services/redirectimport.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/frontend/js/services/redirectimport.service.ts -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/frontend/js/services/scoring.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/frontend/js/services/scoring.service.ts -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/frontend/js/umbraco/editor.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/frontend/js/umbraco/editor.service.ts -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/frontend/js/umbraco/icon.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/frontend/js/umbraco/icon.service.ts -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/frontend/js/umbraco/localization.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/frontend/js/umbraco/localization.service.ts -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/frontend/js/umbraco/notifications.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/frontend/js/umbraco/notifications.service.ts -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/frontend/js/umbraco/overlay.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/frontend/js/umbraco/overlay.service.ts -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/frontend/js/util/bridge/angularbridge.mixin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/frontend/js/util/bridge/angularbridge.mixin.ts -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/frontend/js/util/elements/angulariconregistry.lit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/frontend/js/util/elements/angulariconregistry.lit.ts -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/frontend/js/util/elements/bulkActions.lit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/frontend/js/util/elements/bulkActions.lit.ts -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/frontend/js/util/elements/inputs/dropdown.lit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/frontend/js/util/elements/inputs/dropdown.lit.ts -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/frontend/js/util/elements/inputs/pageselect.lit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/frontend/js/util/elements/inputs/pageselect.lit.ts -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/frontend/js/util/elements/inputs/pagination.lit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/frontend/js/util/elements/inputs/pagination.lit.ts -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/frontend/js/util/elements/inputs/redirectImport.lit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/frontend/js/util/elements/inputs/redirectImport.lit.ts -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/frontend/js/util/elements/redirectActions.lit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/frontend/js/util/elements/redirectActions.lit.ts -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/frontend/js/util/elements/resultlist.lit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/frontend/js/util/elements/resultlist.lit.ts -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/frontend/js/util/elements/resultlistitem.lit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/frontend/js/util/elements/resultlistitem.lit.ts -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/frontend/js/util/elements/selectableresultlistitem.lit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/frontend/js/util/elements/selectableresultlistitem.lit.ts -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/frontend/js/util/functions/dateformatter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/frontend/js/util/functions/dateformatter.ts -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/frontend/js/util/functions/debounce.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/frontend/js/util/functions/debounce.ts -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/frontend/js/util/tools/axios.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/frontend/js/util/tools/axios.service.ts -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/frontend/js/util/tools/builder/tabBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/frontend/js/util/tools/builder/tabBuilder.ts -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/frontend/js/util/tools/changemanager.ts: -------------------------------------------------------------------------------- 1 | export interface IChangeManager { 2 | element: EventTarget; 3 | } 4 | -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/frontend/js/util/tools/existancecheck.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/frontend/js/util/tools/existancecheck.ts -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/frontend/js/util/tools/litelementconstructor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/frontend/js/util/tools/litelementconstructor.ts -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/frontend/js/util/tools/strategy/strategyresolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/frontend/js/util/tools/strategy/strategyresolver.ts -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/frontend/js/util/tools/urlresource.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/frontend/js/util/tools/urlresource.service.ts -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/frontend/js/util/tools/variableresource.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/frontend/js/util/tools/variableresource.service.ts -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/frontend/js/util/tools/versionprovider.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/frontend/js/util/tools/versionprovider.service.ts -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/frontend/js/util/tools/versionproviderservice.constants.ts: -------------------------------------------------------------------------------- 1 | export interface IUrlTrackerVariables { 2 | version: string; 3 | } 4 | -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/frontend/public/assets/images/background.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/frontend/public/assets/images/background.svg -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/frontend/public/dashboard/dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/frontend/public/dashboard/dashboard.html -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/frontend/public/lang/en-us.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/frontend/public/lang/en-us.xml -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/frontend/public/lang/nl-nl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/frontend/public/lang/nl-nl.xml -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/frontend/public/sidebar/redirect/inspectRedirect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/frontend/public/sidebar/redirect/inspectRedirect.html -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/frontend/public/sidebar/redirect/simpleRedirect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/frontend/public/sidebar/redirect/simpleRedirect.html -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/frontend/scss/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/frontend/scss/style.scss -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/package-lock.json -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/package.json -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/tsconfig.json -------------------------------------------------------------------------------- /src/UrlTracker.Backoffice.UI/vite.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Backoffice.UI/vite.config.mjs -------------------------------------------------------------------------------- /src/UrlTracker.Core.Caching.Memory/Active/ActiveCacheAccessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core.Caching.Memory/Active/ActiveCacheAccessor.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core.Caching.Memory/Active/ActiveCacheBootloader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core.Caching.Memory/Active/ActiveCacheBootloader.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core.Caching.Memory/Active/ActiveCacheRedirectChangeHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core.Caching.Memory/Active/ActiveCacheRedirectChangeHandler.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core.Caching.Memory/Active/ActiveClientErrorCacheWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core.Caching.Memory/Active/ActiveClientErrorCacheWriter.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core.Caching.Memory/Active/ActiveRedirectCacheWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core.Caching.Memory/Active/ActiveRedirectCacheWriter.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core.Caching.Memory/Database/DecoratorClientErrorRepositoryCaching.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core.Caching.Memory/Database/DecoratorClientErrorRepositoryCaching.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core.Caching.Memory/Database/DecoratorRedirectRepositoryCaching.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core.Caching.Memory/Database/DecoratorRedirectRepositoryCaching.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core.Caching.Memory/Defaults/Defaults_Cache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core.Caching.Memory/Defaults/Defaults_Cache.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core.Caching.Memory/Defaults/Defaults_Options.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core.Caching.Memory/Defaults/Defaults_Options.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core.Caching.Memory/EntryPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core.Caching.Memory/EntryPoint.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core.Caching.Memory/IInterceptCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core.Caching.Memory/IInterceptCache.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core.Caching.Memory/ITypedMemoryCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core.Caching.Memory/ITypedMemoryCache.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core.Caching.Memory/InterceptCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core.Caching.Memory/InterceptCache.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core.Caching.Memory/Notifications/ContentChangeNotificationHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core.Caching.Memory/Notifications/ContentChangeNotificationHandler.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core.Caching.Memory/Notifications/RedirectsCacheRefresher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core.Caching.Memory/Notifications/RedirectsCacheRefresher.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core.Caching.Memory/Notifications/RedirectsChangedNotification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core.Caching.Memory/Notifications/RedirectsChangedNotification.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core.Caching.Memory/Notifications/RedirectsChangedNotificationHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core.Caching.Memory/Notifications/RedirectsChangedNotificationHandler.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core.Caching.Memory/Options/UrlTrackerMemoryCacheOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core.Caching.Memory/Options/UrlTrackerMemoryCacheOptions.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core.Caching.Memory/TypedMemoryCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core.Caching.Memory/TypedMemoryCache.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core.Caching.Memory/UrlTracker.Core.Caching.Memory.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core.Caching.Memory/UrlTracker.Core.Caching.Memory.csproj -------------------------------------------------------------------------------- /src/UrlTracker.Core/Abstractions/IUmbracoContextFactoryAbstraction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Abstractions/IUmbracoContextFactoryAbstraction.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/Abstractions/IUmbracoContextReferenceAbstraction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Abstractions/IUmbracoContextReferenceAbstraction.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/Abstractions/UmbracoContextFactoryAbstraction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Abstractions/UmbracoContextFactoryAbstraction.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/Classification/FallbackUrlClassifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Classification/FallbackUrlClassifier.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/Classification/FileExtensionUrlClassifierStrategyBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Classification/FileExtensionUrlClassifierStrategyBase.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/Classification/FileUrlClassifierStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Classification/FileUrlClassifierStrategy.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/Classification/IUrlClassifierStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Classification/IUrlClassifierStrategy.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/Classification/MediaUrlClassifierStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Classification/MediaUrlClassifierStrategy.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/Classification/TechnicalFileUrlClassifierStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Classification/TechnicalFileUrlClassifierStrategy.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/Classification/UrlClassifierStrategyBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Classification/UrlClassifierStrategyBase.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/Classification/UrlClassifierStrategyCollectionBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Classification/UrlClassifierStrategyCollectionBuilder.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/ClientErrorService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/ClientErrorService.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/Compatibility/CompatibilityNPocoSqlExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Compatibility/CompatibilityNPocoSqlExtensions.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/Configuration/Models/UrlTrackerSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Configuration/Models/UrlTrackerSettings.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/Database/ClientErrorRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Database/ClientErrorRepository.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/Database/Dtos/ClientError2ReferrerDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Database/Dtos/ClientError2ReferrerDto.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/Database/Dtos/ClientErrorDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Database/Dtos/ClientErrorDto.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/Database/Dtos/ClientErrorMetaDataDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Database/Dtos/ClientErrorMetaDataDto.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/Database/Dtos/DailyClientErrorDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Database/Dtos/DailyClientErrorDto.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/Database/Dtos/OccurrancesDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Database/Dtos/OccurrancesDto.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/Database/Dtos/RecommendationDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Database/Dtos/RecommendationDto.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/Database/Dtos/RedactionScoreDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Database/Dtos/RedactionScoreDto.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/Database/Dtos/RedirectDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Database/Dtos/RedirectDto.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/Database/Dtos/ReferrerDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Database/Dtos/ReferrerDto.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/Database/Entities/ClientErrorEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Database/Entities/ClientErrorEntity.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/Database/Entities/ClientErrorEntityCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Database/Entities/ClientErrorEntityCollection.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/Database/Entities/ClientErrorMetaData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Database/Entities/ClientErrorMetaData.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/Database/Entities/EntityStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Database/Entities/EntityStrategy.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/Database/Entities/RecommendationEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Database/Entities/RecommendationEntity.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/Database/Entities/RecommendationEntityCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Database/Entities/RecommendationEntityCollection.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/Database/Entities/RedactionScoreEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Database/Entities/RedactionScoreEntity.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/Database/Entities/RedirectEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Database/Entities/RedirectEntity.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/Database/Entities/RedirectEntityCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Database/Entities/RedirectEntityCollection.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/Database/Entities/ReferrerEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Database/Entities/ReferrerEntity.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/Database/Factories/ClientErrorFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Database/Factories/ClientErrorFactory.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/Database/Factories/DailyClientErrorFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Database/Factories/DailyClientErrorFactory.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/Database/Factories/RecommendationFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Database/Factories/RecommendationFactory.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/Database/Factories/RedirectFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Database/Factories/RedirectFactory.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/Database/Factories/ReferrerFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Database/Factories/ReferrerFactory.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/Database/IClientErrorRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Database/IClientErrorRepository.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/Database/IRecommendationRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Database/IRecommendationRepository.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/Database/IRedirectRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Database/IRedirectRepository.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/Database/IReferrerRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Database/IReferrerRepository.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/Database/Mappers/ClientErrorMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Database/Mappers/ClientErrorMapper.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/Database/Mappers/RecommendationMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Database/Mappers/RecommendationMapper.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/Database/Mappers/RedactionScoreMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Database/Mappers/RedactionScoreMapper.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/Database/Mappers/RedirectMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Database/Mappers/RedirectMapper.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/Database/Mappers/ReferrerMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Database/Mappers/ReferrerMapper.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/Database/Migrations/IMigrationPlanFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Database/Migrations/IMigrationPlanFactory.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/Database/Migrations/M202111081155_UrlTracker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Database/Migrations/M202111081155_UrlTracker.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/Database/Migrations/M202111081155_UrlTrackerSchema.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Database/Migrations/M202111081155_UrlTrackerSchema.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/Database/Migrations/M202204091707_AddIndexes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Database/Migrations/M202204091707_AddIndexes.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/Database/Migrations/M202206251507_Rework.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Database/Migrations/M202206251507_Rework.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/Database/Migrations/M202206251507_ReworkSchema.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Database/Migrations/M202206251507_ReworkSchema.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/Database/Migrations/M202208011724_MigrateOldData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Database/Migrations/M202208011724_MigrateOldData.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/Database/Migrations/M202210291350_DeleteOldTables.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Database/Migrations/M202210291350_DeleteOldTables.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/Database/Migrations/M202210291430_RecommendationModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Database/Migrations/M202210291430_RecommendationModel.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/Database/Migrations/M202210291430_RecommendationModelSchema.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Database/Migrations/M202210291430_RecommendationModelSchema.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/Database/Migrations/M202212111209_PopulateRedactionScores.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Database/Migrations/M202212111209_PopulateRedactionScores.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/Database/Migrations/M202310111424_CultureUpdate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Database/Migrations/M202310111424_CultureUpdate.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/Database/Migrations/M202312101755_UrlColumnLength.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Database/Migrations/M202312101755_UrlColumnLength.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/Database/Migrations/M202406061746_PatchSqlite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Database/Migrations/M202406061746_PatchSqlite.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/Database/Migrations/M202407260819_PostMigrationCorrectValueLength.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Database/Migrations/M202407260819_PostMigrationCorrectValueLength.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/Database/Migrations/M202407261301_AddAdvancedFlag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Database/Migrations/M202407261301_AddAdvancedFlag.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/Database/Migrations/M202407261301_AddAdvancedFlagSchema.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Database/Migrations/M202407261301_AddAdvancedFlagSchema.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/Database/Migrations/MigrationComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Database/Migrations/MigrationComponent.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/Database/Migrations/MigrationExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Database/Migrations/MigrationExtensions.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/Database/Migrations/MigrationPlanFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Database/Migrations/MigrationPlanFactory.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/Database/Models/OrderBy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Database/Models/OrderBy.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/Database/Models/RecommendationOrderBy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Database/Models/RecommendationOrderBy.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/Database/Models/RecommendationScoreParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Database/Models/RecommendationScoreParameters.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/Database/Models/RedirectFilters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Database/Models/RedirectFilters.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/Database/RecommendationRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Database/RecommendationRepository.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/Database/RedactionScoreRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Database/RedactionScoreRepository.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/Database/RedirectRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Database/RedirectRepository.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/Database/ReferrerRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Database/ReferrerRepository.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/Database/Strategy/CultureUpdateSqlServerMigrationStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Database/Strategy/CultureUpdateSqlServerMigrationStrategy.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/Database/Strategy/CultureUpdateSqliteMigrationStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Database/Strategy/CultureUpdateSqliteMigrationStrategy.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/Database/Strategy/IMigrationStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Database/Strategy/IMigrationStrategy.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/Defaults/Defaults_DatabaseSchema.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Defaults/Defaults_DatabaseSchema.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/Defaults/Defaults_Options.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Defaults/Defaults_Options.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/Defaults/Defaults_Parameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Defaults/Defaults_Parameters.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/Defaults/Defaults_SettingsTree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Defaults/Defaults_SettingsTree.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/Defaults/Defaults_Tracking.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Defaults/Defaults_Tracking.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/Defaults/Defaults_Validation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Defaults/Defaults_Validation.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/EntryPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/EntryPoint.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/Exceptions/ExceptionHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Exceptions/ExceptionHelper.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/IConfigurationExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/IConfigurationExtensions.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/InterceptService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/InterceptService.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/Intercepting/Conversion/IInterceptConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Intercepting/Conversion/IInterceptConverter.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/Intercepting/Conversion/IInterceptConverterCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Intercepting/Conversion/IInterceptConverterCollection.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/Intercepting/Conversion/InterceptConverterCollectionBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Intercepting/Conversion/InterceptConverterCollectionBuilder.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/Intercepting/Conversion/MapperInterceptConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Intercepting/Conversion/MapperInterceptConverter.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/Intercepting/IInterceptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Intercepting/IInterceptor.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/Intercepting/IInterceptorCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Intercepting/IInterceptorCollection.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/Intercepting/IIntermediateInterceptService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Intercepting/IIntermediateInterceptService.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/Intercepting/ILastChanceInterceptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Intercepting/ILastChanceInterceptor.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/Intercepting/IStaticUrlProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Intercepting/IStaticUrlProvider.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/Intercepting/IStaticUrlProviderCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Intercepting/IStaticUrlProviderCollection.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/Intercepting/InterceptorCollectionBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Intercepting/InterceptorCollectionBuilder.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/Intercepting/IntermediateInterceptService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Intercepting/IntermediateInterceptService.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/Intercepting/Models/DefaultInterceptContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Intercepting/Models/DefaultInterceptContext.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/Intercepting/Models/IIntercept.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Intercepting/Models/IIntercept.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/Intercepting/Models/IInterceptContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Intercepting/Models/IInterceptContext.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/Intercepting/Models/InterceptBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Intercepting/Models/InterceptBase.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/Intercepting/NoLongerExistsInterceptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Intercepting/NoLongerExistsInterceptor.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/Intercepting/NullInterceptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Intercepting/NullInterceptor.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/Intercepting/Preprocessing/DefaultInterceptContextFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Intercepting/Preprocessing/DefaultInterceptContextFactory.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/Intercepting/Preprocessing/IDefaultInterceptContextFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Intercepting/Preprocessing/IDefaultInterceptContextFactory.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/Intercepting/RegexRedirectInterceptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Intercepting/RegexRedirectInterceptor.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/Intercepting/StaticUrlProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Intercepting/StaticUrlProvider.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/Intercepting/StaticUrlProviderCollectionBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Intercepting/StaticUrlProviderCollectionBuilder.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/Intercepting/StaticUrlRedirectInterceptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Intercepting/StaticUrlRedirectInterceptor.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/LoggerExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/LoggerExtensions.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/Logging/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Logging/Logger.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/Map/ContentPageTargetStrategyMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Map/ContentPageTargetStrategyMap.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/Map/IStrategyMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Map/IStrategyMap.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/Map/RegexSourceStrategyMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Map/RegexSourceStrategyMap.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/Map/ServiceLayerMaps.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Map/ServiceLayerMaps.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/Map/StrategyMapBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Map/StrategyMapBase.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/Map/StrategyMapCollectionBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Map/StrategyMapCollectionBuilder.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/Map/UrlSourceStrategyMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Map/UrlSourceStrategyMap.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/Map/UrlTargetStrategyMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Map/UrlTargetStrategyMap.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/Models/ClientError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Models/ClientError.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/Models/ClientErrorCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Models/ClientErrorCollection.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/Models/DailyClientErrorResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Models/DailyClientErrorResponse.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/Models/IRedirectStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Models/IRedirectStrategy.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/Models/Redirect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Models/Redirect.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/Models/RedirectCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Models/RedirectCollection.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/Models/ReferrerResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Models/ReferrerResponse.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/Models/SourceStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Models/SourceStrategy.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/Models/TargetStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Models/TargetStrategy.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/Models/Url.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Models/Url.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/Models/UrlTrackerCollectionBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Models/UrlTrackerCollectionBase.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/NPocoSqlExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/NPocoSqlExtensions.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/Notifications/DecoratorRedirectRepositoryNotifications.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Notifications/DecoratorRedirectRepositoryNotifications.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/Notifications/RedirectCreatedNotification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Notifications/RedirectCreatedNotification.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/Notifications/RedirectDeletedNotification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Notifications/RedirectDeletedNotification.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/Notifications/RedirectNotificationBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Notifications/RedirectNotificationBase.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/Notifications/RedirectUpdatedNotification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Notifications/RedirectUpdatedNotification.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/ObjectExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/ObjectExtensions.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/RecommendationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/RecommendationService.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/RecommendationServiceExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/RecommendationServiceExtensions.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/RedactionScoreService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/RedactionScoreService.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/RedactionScoreServiceExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/RedactionScoreServiceExtensions.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/RedirectService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/RedirectService.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/StringExtensions.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/UrlTracker.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/UrlTracker.Core.csproj -------------------------------------------------------------------------------- /src/UrlTracker.Core/Validation/Attributes/ValidCultureFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Validation/Attributes/ValidCultureFormat.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/Validation/Attributes/ValidRegexPattern.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Validation/Attributes/ValidRegexPattern.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/Validation/IValidationHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Validation/IValidationHelper.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/Validation/ValidationHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/Validation/ValidationHelper.cs -------------------------------------------------------------------------------- /src/UrlTracker.Core/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Core/app.config -------------------------------------------------------------------------------- /src/UrlTracker.GlobalBlocklist/Context/DenyListContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.GlobalBlocklist/Context/DenyListContext.cs -------------------------------------------------------------------------------- /src/UrlTracker.GlobalBlocklist/Context/DenyListPopulator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.GlobalBlocklist/Context/DenyListPopulator.cs -------------------------------------------------------------------------------- /src/UrlTracker.GlobalBlocklist/Defaults/Defaults_DenyList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.GlobalBlocklist/Defaults/Defaults_DenyList.cs -------------------------------------------------------------------------------- /src/UrlTracker.GlobalBlocklist/EntryPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.GlobalBlocklist/EntryPoint.cs -------------------------------------------------------------------------------- /src/UrlTracker.GlobalBlocklist/Filters/GlobalDenyListFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.GlobalBlocklist/Filters/GlobalDenyListFilter.cs -------------------------------------------------------------------------------- /src/UrlTracker.GlobalBlocklist/Services/DenyListResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.GlobalBlocklist/Services/DenyListResponse.cs -------------------------------------------------------------------------------- /src/UrlTracker.GlobalBlocklist/Services/RetrieveDenyListService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.GlobalBlocklist/Services/RetrieveDenyListService.cs -------------------------------------------------------------------------------- /src/UrlTracker.GlobalBlocklist/UrlTracker.GlobalBlocklist.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.GlobalBlocklist/UrlTracker.GlobalBlocklist.csproj -------------------------------------------------------------------------------- /src/UrlTracker.Middleware/Background/ClientErrorProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Middleware/Background/ClientErrorProcessor.cs -------------------------------------------------------------------------------- /src/UrlTracker.Middleware/Defaults/Defaults_Options.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Middleware/Defaults/Defaults_Options.cs -------------------------------------------------------------------------------- /src/UrlTracker.Middleware/EntryPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Middleware/EntryPoint.cs -------------------------------------------------------------------------------- /src/UrlTracker.Middleware/IApplicationBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Middleware/IApplicationBuilderExtensions.cs -------------------------------------------------------------------------------- /src/UrlTracker.Middleware/LoggerExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Middleware/LoggerExtensions.cs -------------------------------------------------------------------------------- /src/UrlTracker.Middleware/Options/UrlTrackerPipelineOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Middleware/Options/UrlTrackerPipelineOptions.cs -------------------------------------------------------------------------------- /src/UrlTracker.Middleware/Processing/PipelineConfigurationClientErrorFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Middleware/Processing/PipelineConfigurationClientErrorFilter.cs -------------------------------------------------------------------------------- /src/UrlTracker.Middleware/Processing/PipelineConfigurationRequestInterceptFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Middleware/Processing/PipelineConfigurationRequestInterceptFilter.cs -------------------------------------------------------------------------------- /src/UrlTracker.Middleware/UrlTracker.Middleware.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Middleware/UrlTracker.Middleware.csproj -------------------------------------------------------------------------------- /src/UrlTracker.Middleware/UrlTrackerClientErrorTrackingMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Middleware/UrlTrackerClientErrorTrackingMiddleware.cs -------------------------------------------------------------------------------- /src/UrlTracker.Middleware/UrlTrackerRedirectMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Middleware/UrlTrackerRedirectMiddleware.cs -------------------------------------------------------------------------------- /src/UrlTracker.Middleware/UrlTrackerStartupFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Middleware/UrlTrackerStartupFilter.cs -------------------------------------------------------------------------------- /src/UrlTracker.Modules/Options/ServiceCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Modules/Options/ServiceCollectionExtensions.cs -------------------------------------------------------------------------------- /src/UrlTracker.Modules/Options/UrlTrackerModuleOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Modules/Options/UrlTrackerModuleOptions.cs -------------------------------------------------------------------------------- /src/UrlTracker.Modules/Options/UrlTrackerModuleRegistration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Modules/Options/UrlTrackerModuleRegistration.cs -------------------------------------------------------------------------------- /src/UrlTracker.Modules/UrlTracker.Modules.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Modules/UrlTracker.Modules.csproj -------------------------------------------------------------------------------- /src/UrlTracker.Web/Abstraction/IRequestAbstraction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Web/Abstraction/IRequestAbstraction.cs -------------------------------------------------------------------------------- /src/UrlTracker.Web/Abstraction/IResponseAbstraction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Web/Abstraction/IResponseAbstraction.cs -------------------------------------------------------------------------------- /src/UrlTracker.Web/Abstraction/RequestAbstraction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Web/Abstraction/RequestAbstraction.cs -------------------------------------------------------------------------------- /src/UrlTracker.Web/Abstraction/ResponseAbstraction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Web/Abstraction/ResponseAbstraction.cs -------------------------------------------------------------------------------- /src/UrlTracker.Web/Configuration/IReservedPathSettingsProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Web/Configuration/IReservedPathSettingsProvider.cs -------------------------------------------------------------------------------- /src/UrlTracker.Web/Configuration/ReservedPathSettingsProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Web/Configuration/ReservedPathSettingsProvider.cs -------------------------------------------------------------------------------- /src/UrlTracker.Web/EntryPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Web/EntryPoint.cs -------------------------------------------------------------------------------- /src/UrlTracker.Web/HttpContextExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Web/HttpContextExtensions.cs -------------------------------------------------------------------------------- /src/UrlTracker.Web/LoggerExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Web/LoggerExtensions.cs -------------------------------------------------------------------------------- /src/UrlTracker.Web/Processing/ClientErrorFilterCollectionBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Web/Processing/ClientErrorFilterCollectionBuilder.cs -------------------------------------------------------------------------------- /src/UrlTracker.Web/Processing/Filtering/BlacklistedUrlsClientErrorFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Web/Processing/Filtering/BlacklistedUrlsClientErrorFilter.cs -------------------------------------------------------------------------------- /src/UrlTracker.Web/Processing/Filtering/ConstantsClientErrorFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Web/Processing/Filtering/ConstantsClientErrorFilter.cs -------------------------------------------------------------------------------- /src/UrlTracker.Web/Processing/Filtering/CoreConfigurationClientErrorFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Web/Processing/Filtering/CoreConfigurationClientErrorFilter.cs -------------------------------------------------------------------------------- /src/UrlTracker.Web/Processing/Filtering/CoreConfigurationRequestInterceptFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Web/Processing/Filtering/CoreConfigurationRequestInterceptFilter.cs -------------------------------------------------------------------------------- /src/UrlTracker.Web/Processing/Filtering/NotFoundClientErrorFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Web/Processing/Filtering/NotFoundClientErrorFilter.cs -------------------------------------------------------------------------------- /src/UrlTracker.Web/Processing/Filtering/UrlReservedPathFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Web/Processing/Filtering/UrlReservedPathFilter.cs -------------------------------------------------------------------------------- /src/UrlTracker.Web/Processing/Filtering/UserAgentClientErrorFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Web/Processing/Filtering/UserAgentClientErrorFilter.cs -------------------------------------------------------------------------------- /src/UrlTracker.Web/Processing/Handling/ContentRedirectResponseInterceptHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Web/Processing/Handling/ContentRedirectResponseInterceptHandler.cs -------------------------------------------------------------------------------- /src/UrlTracker.Web/Processing/Handling/LastChanceResponseInterceptHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Web/Processing/Handling/LastChanceResponseInterceptHandler.cs -------------------------------------------------------------------------------- /src/UrlTracker.Web/Processing/Handling/NoLongerExistsResponseInterceptHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Web/Processing/Handling/NoLongerExistsResponseInterceptHandler.cs -------------------------------------------------------------------------------- /src/UrlTracker.Web/Processing/Handling/NullInterceptHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Web/Processing/Handling/NullInterceptHandler.cs -------------------------------------------------------------------------------- /src/UrlTracker.Web/Processing/Handling/RedirectResponseInterceptHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Web/Processing/Handling/RedirectResponseInterceptHandler.cs -------------------------------------------------------------------------------- /src/UrlTracker.Web/Processing/Handling/ResponseInterceptHandlerBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Web/Processing/Handling/ResponseInterceptHandlerBase.cs -------------------------------------------------------------------------------- /src/UrlTracker.Web/Processing/Handling/UrlRedirectResponseInterceptHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Web/Processing/Handling/UrlRedirectResponseInterceptHandler.cs -------------------------------------------------------------------------------- /src/UrlTracker.Web/Processing/IClientErrorFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Web/Processing/IClientErrorFilter.cs -------------------------------------------------------------------------------- /src/UrlTracker.Web/Processing/IClientErrorFilterCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Web/Processing/IClientErrorFilterCollection.cs -------------------------------------------------------------------------------- /src/UrlTracker.Web/Processing/IRequestInterceptFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Web/Processing/IRequestInterceptFilter.cs -------------------------------------------------------------------------------- /src/UrlTracker.Web/Processing/IRequestInterceptFilterCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Web/Processing/IRequestInterceptFilterCollection.cs -------------------------------------------------------------------------------- /src/UrlTracker.Web/Processing/IResponseInterceptHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Web/Processing/IResponseInterceptHandler.cs -------------------------------------------------------------------------------- /src/UrlTracker.Web/Processing/IResponseInterceptHandlerCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Web/Processing/IResponseInterceptHandlerCollection.cs -------------------------------------------------------------------------------- /src/UrlTracker.Web/Processing/RequestInterceptFilterCollectionBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Web/Processing/RequestInterceptFilterCollectionBuilder.cs -------------------------------------------------------------------------------- /src/UrlTracker.Web/Processing/ResponseInterceptHandlerCollectionBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Web/Processing/ResponseInterceptHandlerCollectionBuilder.cs -------------------------------------------------------------------------------- /src/UrlTracker.Web/UrlTracker.Web.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker.Web/UrlTracker.Web.csproj -------------------------------------------------------------------------------- /src/UrlTracker/UrlTracker.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker/UrlTracker.csproj -------------------------------------------------------------------------------- /src/UrlTracker/UrlTrackerComposer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/src/UrlTracker/UrlTrackerComposer.cs -------------------------------------------------------------------------------- /test/UrlTracker.Backoffice.UI.Tests/Controllers/Models/AssemblyScanTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Backoffice.UI.Tests/Controllers/Models/AssemblyScanTestBase.cs -------------------------------------------------------------------------------- /test/UrlTracker.Backoffice.UI.Tests/Controllers/Models/ModelValidationTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Backoffice.UI.Tests/Controllers/Models/ModelValidationTestBase.cs -------------------------------------------------------------------------------- /test/UrlTracker.Backoffice.UI.Tests/UrlTracker.Backoffice.UI.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Backoffice.UI.Tests/UrlTracker.Backoffice.UI.Tests.csproj -------------------------------------------------------------------------------- /test/UrlTracker.Core.Caching.Memory.Tests/TypedMemoryCacheTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Core.Caching.Memory.Tests/TypedMemoryCacheTests.cs -------------------------------------------------------------------------------- /test/UrlTracker.Core.Caching.Memory.Tests/UrlTracker.Core.Caching.Memory.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Core.Caching.Memory.Tests/UrlTracker.Core.Caching.Memory.Tests.csproj -------------------------------------------------------------------------------- /test/UrlTracker.Core.Tests/Classification/FileUrlClassifierStrategyTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Core.Tests/Classification/FileUrlClassifierStrategyTests.cs -------------------------------------------------------------------------------- /test/UrlTracker.Core.Tests/Classification/MediaUrlClassifierStrategyTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Core.Tests/Classification/MediaUrlClassifierStrategyTests.cs -------------------------------------------------------------------------------- /test/UrlTracker.Core.Tests/Classification/TechnicalFileUrlClassifierStrategyTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Core.Tests/Classification/TechnicalFileUrlClassifierStrategyTests.cs -------------------------------------------------------------------------------- /test/UrlTracker.Core.Tests/ClientErrorServiceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Core.Tests/ClientErrorServiceTests.cs -------------------------------------------------------------------------------- /test/UrlTracker.Core.Tests/ClientErrorServiceTests_AddAsync.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Core.Tests/ClientErrorServiceTests_AddAsync.cs -------------------------------------------------------------------------------- /test/UrlTracker.Core.Tests/ClientErrorServiceTests_ReportAsync.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Core.Tests/ClientErrorServiceTests_ReportAsync.cs -------------------------------------------------------------------------------- /test/UrlTracker.Core.Tests/Domain/Models/UrlTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Core.Tests/Domain/Models/UrlTests.cs -------------------------------------------------------------------------------- /test/UrlTracker.Core.Tests/InterceptServiceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Core.Tests/InterceptServiceTests.cs -------------------------------------------------------------------------------- /test/UrlTracker.Core.Tests/Intercepting/Conversion/InterceptConverterCollectionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Core.Tests/Intercepting/Conversion/InterceptConverterCollectionTests.cs -------------------------------------------------------------------------------- /test/UrlTracker.Core.Tests/Intercepting/Conversion/MapperInterceptConverterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Core.Tests/Intercepting/Conversion/MapperInterceptConverterTests.cs -------------------------------------------------------------------------------- /test/UrlTracker.Core.Tests/Intercepting/InterceptorCollectionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Core.Tests/Intercepting/InterceptorCollectionTests.cs -------------------------------------------------------------------------------- /test/UrlTracker.Core.Tests/Intercepting/NoLongerExistsInterceptorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Core.Tests/Intercepting/NoLongerExistsInterceptorTests.cs -------------------------------------------------------------------------------- /test/UrlTracker.Core.Tests/Intercepting/RegexRedirectInterceptorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Core.Tests/Intercepting/RegexRedirectInterceptorTests.cs -------------------------------------------------------------------------------- /test/UrlTracker.Core.Tests/Intercepting/StaticUrlRedirectMatcherTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Core.Tests/Intercepting/StaticUrlRedirectMatcherTests.cs -------------------------------------------------------------------------------- /test/UrlTracker.Core.Tests/Map/ContentPageTargetStrategyMapTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Core.Tests/Map/ContentPageTargetStrategyMapTests.cs -------------------------------------------------------------------------------- /test/UrlTracker.Core.Tests/Map/ServiceLayerMapsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Core.Tests/Map/ServiceLayerMapsTests.cs -------------------------------------------------------------------------------- /test/UrlTracker.Core.Tests/Map/StrategyMapBaseTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Core.Tests/Map/StrategyMapBaseTests.cs -------------------------------------------------------------------------------- /test/UrlTracker.Core.Tests/Map/StrategyMapCollectionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Core.Tests/Map/StrategyMapCollectionTests.cs -------------------------------------------------------------------------------- /test/UrlTracker.Core.Tests/Models/RedirectCultureValidationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Core.Tests/Models/RedirectCultureValidationTests.cs -------------------------------------------------------------------------------- /test/UrlTracker.Core.Tests/Models/UrlTrackerCollectionBaseTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Core.Tests/Models/UrlTrackerCollectionBaseTests.cs -------------------------------------------------------------------------------- /test/UrlTracker.Core.Tests/ObjectExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Core.Tests/ObjectExtensionsTests.cs -------------------------------------------------------------------------------- /test/UrlTracker.Core.Tests/RedirectServiceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Core.Tests/RedirectServiceTests.cs -------------------------------------------------------------------------------- /test/UrlTracker.Core.Tests/RedirectServiceTests_AddAsync.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Core.Tests/RedirectServiceTests_AddAsync.cs -------------------------------------------------------------------------------- /test/UrlTracker.Core.Tests/RedirectServiceTests_UpdateAsync.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Core.Tests/RedirectServiceTests_UpdateAsync.cs -------------------------------------------------------------------------------- /test/UrlTracker.Core.Tests/StringExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Core.Tests/StringExtensionsTests.cs -------------------------------------------------------------------------------- /test/UrlTracker.Core.Tests/UrlTracker.Core.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Core.Tests/UrlTracker.Core.Tests.csproj -------------------------------------------------------------------------------- /test/UrlTracker.Core.Tests/Validation/ValidationHelperTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Core.Tests/Validation/ValidationHelperTests.cs -------------------------------------------------------------------------------- /test/UrlTracker.IntegrationTests/Backoffice/BackofficeIntegrationTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.IntegrationTests/Backoffice/BackofficeIntegrationTestBase.cs -------------------------------------------------------------------------------- /test/UrlTracker.IntegrationTests/Backoffice/Notification/GetNotificationsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.IntegrationTests/Backoffice/Notification/GetNotificationsTests.cs -------------------------------------------------------------------------------- /test/UrlTracker.IntegrationTests/Backoffice/Notification/NotificationTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.IntegrationTests/Backoffice/Notification/NotificationTestBase.cs -------------------------------------------------------------------------------- /test/UrlTracker.IntegrationTests/Backoffice/Recommendation/ListRecommendationsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.IntegrationTests/Backoffice/Recommendation/ListRecommendationsTests.cs -------------------------------------------------------------------------------- /test/UrlTracker.IntegrationTests/Backoffice/Recommendation/RecommendationTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.IntegrationTests/Backoffice/Recommendation/RecommendationTestBase.cs -------------------------------------------------------------------------------- /test/UrlTracker.IntegrationTests/Backoffice/Redirect/CreateRedirectTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.IntegrationTests/Backoffice/Redirect/CreateRedirectTests.cs -------------------------------------------------------------------------------- /test/UrlTracker.IntegrationTests/Backoffice/Redirect/DeleteRedirectTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.IntegrationTests/Backoffice/Redirect/DeleteRedirectTests.cs -------------------------------------------------------------------------------- /test/UrlTracker.IntegrationTests/Backoffice/Redirect/GetRedirectTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.IntegrationTests/Backoffice/Redirect/GetRedirectTests.cs -------------------------------------------------------------------------------- /test/UrlTracker.IntegrationTests/Backoffice/Redirect/RedirectTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.IntegrationTests/Backoffice/Redirect/RedirectTestBase.cs -------------------------------------------------------------------------------- /test/UrlTracker.IntegrationTests/Backoffice/Redirect/UpdateRedirectTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.IntegrationTests/Backoffice/Redirect/UpdateRedirectTests.cs -------------------------------------------------------------------------------- /test/UrlTracker.IntegrationTests/Integration.settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.IntegrationTests/Integration.settings.json -------------------------------------------------------------------------------- /test/UrlTracker.IntegrationTests/IntegrationTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.IntegrationTests/IntegrationTestBase.cs -------------------------------------------------------------------------------- /test/UrlTracker.IntegrationTests/RecommendationTracking/RecommendationTrackingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.IntegrationTests/RecommendationTracking/RecommendationTrackingTests.cs -------------------------------------------------------------------------------- /test/UrlTracker.IntegrationTests/Redirecting/ForceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.IntegrationTests/Redirecting/ForceTests.cs -------------------------------------------------------------------------------- /test/UrlTracker.IntegrationTests/Redirecting/RedirectFromTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.IntegrationTests/Redirecting/RedirectFromTests.cs -------------------------------------------------------------------------------- /test/UrlTracker.IntegrationTests/Redirecting/RedirectTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.IntegrationTests/Redirecting/RedirectTestBase.cs -------------------------------------------------------------------------------- /test/UrlTracker.IntegrationTests/Redirecting/RedirectToTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.IntegrationTests/Redirecting/RedirectToTests.cs -------------------------------------------------------------------------------- /test/UrlTracker.IntegrationTests/Redirecting/RetainQueryStringTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.IntegrationTests/Redirecting/RetainQueryStringTests.cs -------------------------------------------------------------------------------- /test/UrlTracker.IntegrationTests/UrlTracker.IntegrationTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.IntegrationTests/UrlTracker.IntegrationTests.csproj -------------------------------------------------------------------------------- /test/UrlTracker.IntegrationTests/Usings.cs: -------------------------------------------------------------------------------- 1 | global using NUnit.Framework; -------------------------------------------------------------------------------- /test/UrlTracker.IntegrationTests/Utils/QueuelessClientErrorHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.IntegrationTests/Utils/QueuelessClientErrorHandler.cs -------------------------------------------------------------------------------- /test/UrlTracker.IntegrationTests/Utils/TestAuthorizationHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.IntegrationTests/Utils/TestAuthorizationHandler.cs -------------------------------------------------------------------------------- /test/UrlTracker.IntegrationTests/Utils/TestRequirement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.IntegrationTests/Utils/TestRequirement.cs -------------------------------------------------------------------------------- /test/UrlTracker.IntegrationTests/Utils/UrlTrackerWebApplicationFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.IntegrationTests/Utils/UrlTrackerWebApplicationFactory.cs -------------------------------------------------------------------------------- /test/UrlTracker.IntegrationTests/appsettings-schema.Umbraco.Cms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.IntegrationTests/appsettings-schema.Umbraco.Cms.json -------------------------------------------------------------------------------- /test/UrlTracker.IntegrationTests/appsettings-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.IntegrationTests/appsettings-schema.json -------------------------------------------------------------------------------- /test/UrlTracker.IntegrationTests/wwwroot/css/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.IntegrationTests/wwwroot/css/index.css -------------------------------------------------------------------------------- /test/UrlTracker.IntegrationTests/wwwroot/css/index.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.IntegrationTests/wwwroot/css/index.css.map -------------------------------------------------------------------------------- /test/UrlTracker.IntegrationTests/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.IntegrationTests/wwwroot/favicon.ico -------------------------------------------------------------------------------- /test/UrlTracker.Middleware.Tests/Processing/PipelineConfigurationClientErrorFilterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Middleware.Tests/Processing/PipelineConfigurationClientErrorFilterTests.cs -------------------------------------------------------------------------------- /test/UrlTracker.Middleware.Tests/Processing/PipelineConfigurationRequestFilterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Middleware.Tests/Processing/PipelineConfigurationRequestFilterTests.cs -------------------------------------------------------------------------------- /test/UrlTracker.Middleware.Tests/UrlTracker.Middleware.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Middleware.Tests/UrlTracker.Middleware.Tests.csproj -------------------------------------------------------------------------------- /test/UrlTracker.Middleware.Tests/UrlTrackerClientErrorTrackingMiddlewareTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Middleware.Tests/UrlTrackerClientErrorTrackingMiddlewareTests.cs -------------------------------------------------------------------------------- /test/UrlTracker.Middleware.Tests/UrlTrackerRedirectMiddlewareTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Middleware.Tests/UrlTrackerRedirectMiddlewareTests.cs -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Testing/Logging/VoidLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Testing/Logging/VoidLogger.cs -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Testing/Mocks/HttpContextMock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Testing/Mocks/HttpContextMock.cs -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Testing/Mocks/ScopeProviderMock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Testing/Mocks/ScopeProviderMock.cs -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Testing/Mocks/UmbracoContextFactoryAbstractionMock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Testing/Mocks/UmbracoContextFactoryAbstractionMock.cs -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Testing/Objects/TestLanguage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Testing/Objects/TestLanguage.cs -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Testing/Objects/TestMapDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Testing/Objects/TestMapDefinition.cs -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Testing/Objects/TestPublishedContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Testing/Objects/TestPublishedContent.cs -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Testing/Objects/TestResponseInterceptHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Testing/Objects/TestResponseInterceptHandler.cs -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Testing/UrlTracker.Resources.Testing.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Testing/UrlTracker.Resources.Testing.csproj -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/.gitignore -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/App_Plugins/UrlTrackerTest/dashboard/dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/App_Plugins/UrlTrackerTest/dashboard/dashboard.html -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/App_Plugins/UrlTrackerTest/lang/en-us.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/App_Plugins/UrlTrackerTest/lang/en-us.xml -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/App_Plugins/UrlTrackerTest/lang/nl-nl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/App_Plugins/UrlTrackerTest/lang/nl-nl.xml -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/App_Plugins/UrlTrackerTest/package.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/App_Plugins/UrlTrackerTest/package.manifest -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/App_Plugins/UrlTrackerTest/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/App_Plugins/UrlTrackerTest/style.css -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/Composing/DashboardComposer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/Composing/DashboardComposer.cs -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/Controllers/FakerExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/Controllers/FakerExtensions.cs -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/Controllers/UrlTrackerRedirectGeneratorController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/Controllers/UrlTrackerRedirectGeneratorController.cs -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/Controllers/UrlTrackerTestController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/Controllers/UrlTrackerTestController.cs -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/Models/GenerateRandomRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/Models/GenerateRandomRequest.cs -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/Models/RecommendationViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/Models/RecommendationViewModel.cs -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/Models/RedactionScoreViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/Models/RedactionScoreViewModel.cs -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/Models/SetRecommendationRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/Models/SetRecommendationRequest.cs -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/Program.cs -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/Properties/launchSettings.json -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/Startup.cs -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/SystemFeatures/AutoLogin/AutologinExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/SystemFeatures/AutoLogin/AutologinExtensions.cs -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/SystemFeatures/AutoLogin/AutologinProviderOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/SystemFeatures/AutoLogin/AutologinProviderOptions.cs -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/SystemFeatures/ProxyExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/SystemFeatures/ProxyExtensions.cs -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/Umbraco/models/Article.generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/Umbraco/models/Article.generated.cs -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/Umbraco/models/ArticleControls.generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/Umbraco/models/ArticleControls.generated.cs -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/Umbraco/models/ArticleList.generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/Umbraco/models/ArticleList.generated.cs -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/Umbraco/models/Author.generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/Umbraco/models/Author.generated.cs -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/Umbraco/models/AuthorList.generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/Umbraco/models/AuthorList.generated.cs -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/Umbraco/models/Category.generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/Umbraco/models/Category.generated.cs -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/Umbraco/models/CategoryList.generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/Umbraco/models/CategoryList.generated.cs -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/Umbraco/models/CodeSnippetRow.generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/Umbraco/models/CodeSnippetRow.generated.cs -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/Umbraco/models/CodeSnippetRowSettings.generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/Umbraco/models/CodeSnippetRowSettings.generated.cs -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/Umbraco/models/Contact.generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/Umbraco/models/Contact.generated.cs -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/Umbraco/models/ContactFormControls.generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/Umbraco/models/ContactFormControls.generated.cs -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/Umbraco/models/Content.generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/Umbraco/models/Content.generated.cs -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/Umbraco/models/ContentControls.generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/Umbraco/models/ContentControls.generated.cs -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/Umbraco/models/Error.generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/Umbraco/models/Error.generated.cs -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/Umbraco/models/File.generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/Umbraco/models/File.generated.cs -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/Umbraco/models/Folder.generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/Umbraco/models/Folder.generated.cs -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/Umbraco/models/FooterControls.generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/Umbraco/models/FooterControls.generated.cs -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/Umbraco/models/HeaderControls.generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/Umbraco/models/HeaderControls.generated.cs -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/Umbraco/models/HideProperty.generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/Umbraco/models/HideProperty.generated.cs -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/Umbraco/models/Home.generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/Umbraco/models/Home.generated.cs -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/Umbraco/models/IconLinkRow.generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/Umbraco/models/IconLinkRow.generated.cs -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/Umbraco/models/IconLinkRowSettings.generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/Umbraco/models/IconLinkRowSettings.generated.cs -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/Umbraco/models/Image.generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/Umbraco/models/Image.generated.cs -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/Umbraco/models/ImageCarouselRow.generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/Umbraco/models/ImageCarouselRow.generated.cs -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/Umbraco/models/ImageCarouselRowSettings.generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/Umbraco/models/ImageCarouselRowSettings.generated.cs -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/Umbraco/models/ImageRow.generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/Umbraco/models/ImageRow.generated.cs -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/Umbraco/models/ImageRowSettings.generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/Umbraco/models/ImageRowSettings.generated.cs -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/Umbraco/models/LatestArticlesRow.generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/Umbraco/models/LatestArticlesRow.generated.cs -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/Umbraco/models/LatestArticlesRowSettings.generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/Umbraco/models/LatestArticlesRowSettings.generated.cs -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/Umbraco/models/ListPageSettings.generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/Umbraco/models/ListPageSettings.generated.cs -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/Umbraco/models/MainImageControls.generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/Umbraco/models/MainImageControls.generated.cs -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/Umbraco/models/Member.generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/Umbraco/models/Member.generated.cs -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/Umbraco/models/RichTextRow.generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/Umbraco/models/RichTextRow.generated.cs -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/Umbraco/models/RichTextRowSettings.generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/Umbraco/models/RichTextRowSettings.generated.cs -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/Umbraco/models/Root.generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/Umbraco/models/Root.generated.cs -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/Umbraco/models/SEocontrols.generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/Umbraco/models/SEocontrols.generated.cs -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/Umbraco/models/Search.generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/Umbraco/models/Search.generated.cs -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/Umbraco/models/SpacingProperties.generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/Umbraco/models/SpacingProperties.generated.cs -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/Umbraco/models/TestPage.generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/Umbraco/models/TestPage.generated.cs -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/Umbraco/models/UmbracoMediaArticle.generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/Umbraco/models/UmbracoMediaArticle.generated.cs -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/Umbraco/models/UmbracoMediaAudio.generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/Umbraco/models/UmbracoMediaAudio.generated.cs -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/Umbraco/models/UmbracoMediaVectorGraphics.generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/Umbraco/models/UmbracoMediaVectorGraphics.generated.cs -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/Umbraco/models/UmbracoMediaVideo.generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/Umbraco/models/UmbracoMediaVideo.generated.cs -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/Umbraco/models/VideoRow.generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/Umbraco/models/VideoRow.generated.cs -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/Umbraco/models/VideoRowSettings.generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/Umbraco/models/VideoRowSettings.generated.cs -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/Umbraco/models/VisibilityControls.generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/Umbraco/models/VisibilityControls.generated.cs -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/Umbraco/models/XMlsitemap.generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/Umbraco/models/XMlsitemap.generated.cs -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/UrlTracker.Resources.Website.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/UrlTracker.Resources.Website.csproj -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/UrlTrackerNotifications/UrlTrackerNotificationHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/UrlTrackerNotifications/UrlTrackerNotificationHandler.cs -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/Views/Author.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/Views/Author.cshtml -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/Views/AuthorList.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/Views/AuthorList.cshtml -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/Views/Components/Contact/Default.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/Views/Components/Contact/Default.cshtml -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/Views/Components/Pagination/Default.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/Views/Components/Pagination/Default.cshtml -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/Views/MultilingualRoot.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/Views/MultilingualRoot.cshtml -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/Views/MultilingualTestPage.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/Views/MultilingualTestPage.cshtml -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/Views/Partials/BlockList/Components/iconLinkRow.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/Views/Partials/BlockList/Components/iconLinkRow.cshtml -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/Views/Partials/BlockList/Components/imageRow.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/Views/Partials/BlockList/Components/imageRow.cshtml -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/Views/Partials/BlockList/Components/richTextRow.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/Views/Partials/BlockList/Components/richTextRow.cshtml -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/Views/Partials/BlockList/Components/videoRow.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/Views/Partials/BlockList/Components/videoRow.cshtml -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/Views/Partials/BlockList/Default.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/Views/Partials/BlockList/Default.cshtml -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/Views/Partials/Grid/Bootstrap3-Fluid.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/Views/Partials/Grid/Bootstrap3-Fluid.cshtml -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/Views/Partials/Grid/Bootstrap3.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/Views/Partials/Grid/Bootstrap3.cshtml -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/Views/Partials/Grid/Editors/Base.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/Views/Partials/Grid/Editors/Base.cshtml -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/Views/Partials/Grid/Editors/Embed.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/Views/Partials/Grid/Editors/Embed.cshtml -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/Views/Partials/Grid/Editors/Macro.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/Views/Partials/Grid/Editors/Macro.cshtml -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/Views/Partials/Grid/Editors/Media.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/Views/Partials/Grid/Editors/Media.cshtml -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/Views/Partials/Grid/Editors/Rte.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/Views/Partials/Grid/Editors/Rte.cshtml -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/Views/Partials/Grid/Editors/Textstring.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/Views/Partials/Grid/Editors/Textstring.cshtml -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/Views/Partials/authors.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/Views/Partials/authors.cshtml -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/Views/Partials/blockgrid/area.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/Views/Partials/blockgrid/area.cshtml -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/Views/Partials/blockgrid/areas.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/Views/Partials/blockgrid/areas.cshtml -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/Views/Partials/blockgrid/default.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/Views/Partials/blockgrid/default.cshtml -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/Views/Partials/blockgrid/items.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/Views/Partials/blockgrid/items.cshtml -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/Views/Partials/footer.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/Views/Partials/footer.cshtml -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/Views/Partials/mainNavigation.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/Views/Partials/mainNavigation.cshtml -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/Views/Partials/metaData.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/Views/Partials/metaData.cshtml -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/Views/Partials/pageHeader.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/Views/Partials/pageHeader.cshtml -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/Views/Partials/xmlSitemap.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/Views/Partials/xmlSitemap.cshtml -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/Views/Root.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/Views/Root.cshtml -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/Views/TestPage.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/Views/TestPage.cshtml -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/Views/article.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/Views/article.cshtml -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/Views/articleList.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/Views/articleList.cshtml -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/Views/contact.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/Views/contact.cshtml -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/Views/content.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/Views/content.cshtml -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/Views/error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/Views/error.cshtml -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/Views/home.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/Views/home.cshtml -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/Views/master.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/Views/master.cshtml -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/Views/search.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/Views/search.cshtml -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/Views/xMLSitemap.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/Views/xMLSitemap.cshtml -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/Web.Testing.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/Web.Testing.config -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/Web.config -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/appsettings-schema.Umbraco.Cms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/appsettings-schema.Umbraco.Cms.json -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/appsettings-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/appsettings-schema.json -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/appsettings.Development.json -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/appsettings.Testing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/appsettings.Testing.json -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/appsettings.json -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/package-lock.json -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/wwwroot/clean-assets/css/highlightjs-copy.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/wwwroot/clean-assets/css/highlightjs-copy.min.css -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/wwwroot/clean-assets/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/wwwroot/clean-assets/css/styles.css -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/wwwroot/clean-assets/css/swiffy-slider.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/wwwroot/clean-assets/css/swiffy-slider.min.css -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/wwwroot/clean-assets/css/vs2015.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/wwwroot/clean-assets/css/vs2015.css -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/wwwroot/clean-assets/js/highlight.default.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/wwwroot/clean-assets/js/highlight.default.min.css -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/wwwroot/clean-assets/js/highlight.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/wwwroot/clean-assets/js/highlight.min.js -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/wwwroot/clean-assets/js/highlightjs-copy.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/wwwroot/clean-assets/js/highlightjs-copy.min.js -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/wwwroot/clean-assets/js/initHighlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/wwwroot/clean-assets/js/initHighlight.js -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/wwwroot/clean-assets/js/scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/wwwroot/clean-assets/js/scripts.js -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/wwwroot/clean-assets/js/swiffy-slider.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/wwwroot/clean-assets/js/swiffy-slider.min.js -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/wwwroot/css/dropdownStyles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/wwwroot/css/dropdownStyles.css -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/wwwroot/css/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/wwwroot/css/index.css -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/wwwroot/css/index.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/wwwroot/css/index.css.map -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/wwwroot/favicon.ico -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/wwwroot/media/0s1i3qfx/twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/wwwroot/media/0s1i3qfx/twitter.svg -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/wwwroot/media/4esfh0cz/square-twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/wwwroot/media/4esfh0cz/square-twitter.svg -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/wwwroot/media/bgapfo4f/phone-pen-binder.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/wwwroot/media/bgapfo4f/phone-pen-binder.jpg -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/wwwroot/media/cpth2fx5/community-front-row.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/wwwroot/media/cpth2fx5/community-front-row.jpg -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/wwwroot/media/cyybnb0n/discord.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/wwwroot/media/cyybnb0n/discord.svg -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/wwwroot/media/ekpdgscq/triangle-table-chairs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/wwwroot/media/ekpdgscq/triangle-table-chairs.jpg -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/wwwroot/media/f01jqvmq/bluetooth-white-keyboard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/wwwroot/media/f01jqvmq/bluetooth-white-keyboard.jpg -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/wwwroot/media/fkadbwt3/umbracoffee-codegarden.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/wwwroot/media/fkadbwt3/umbracoffee-codegarden.jpg -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/wwwroot/media/gsnjjwq4/authors.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/wwwroot/media/gsnjjwq4/authors.jpg -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/wwwroot/media/iuln540y/paypal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/wwwroot/media/iuln540y/paypal.svg -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/wwwroot/media/kfrm2wll/diary.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/wwwroot/media/kfrm2wll/diary.jpg -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/wwwroot/media/l0vicqwg/24-days-people-at-codegarden.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/wwwroot/media/l0vicqwg/24-days-people-at-codegarden.jpg -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/wwwroot/media/lclf3ry1/tutorials.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/wwwroot/media/lclf3ry1/tutorials.jpg -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/wwwroot/media/ljahypfa/chairs-lamps.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/wwwroot/media/ljahypfa/chairs-lamps.jpg -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/wwwroot/media/mbdjmcj4/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/wwwroot/media/mbdjmcj4/github.svg -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/wwwroot/media/n43dfw3o/first-timers-at-codegarden.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/wwwroot/media/n43dfw3o/first-timers-at-codegarden.jpg -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/wwwroot/media/oo4jm5ni/candid-contributions.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/wwwroot/media/oo4jm5ni/candid-contributions.jpg -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/wwwroot/media/pcmdjq3h/package-manifest.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/wwwroot/media/pcmdjq3h/package-manifest.jpg -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/wwwroot/media/pgaplvty/mastodon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/wwwroot/media/pgaplvty/mastodon.svg -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/wwwroot/media/pwtlngdw/cc-paypal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/wwwroot/media/pwtlngdw/cc-paypal.svg -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/wwwroot/media/q4xbztkq/profile-pic-2023.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/wwwroot/media/q4xbztkq/profile-pic-2023.png -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/wwwroot/media/qo0ccbnw/codegarden-keynote.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/wwwroot/media/qo0ccbnw/codegarden-keynote.jpg -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/wwwroot/media/qwtcc0ic/github-alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/wwwroot/media/qwtcc0ic/github-alt.svg -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/wwwroot/media/tgcltm3u/square-github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/wwwroot/media/tgcltm3u/square-github.svg -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/wwwroot/media/tj5lysa0/share-nodes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/wwwroot/media/tj5lysa0/share-nodes.svg -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/wwwroot/media/tu4lsswi/podcast-coffee.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/wwwroot/media/tu4lsswi/podcast-coffee.jpg -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/wwwroot/media/ug3ds3ve/umbraco.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/wwwroot/media/ug3ds3ve/umbraco.svg -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/wwwroot/media/ulnla1qp/mastodon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/wwwroot/media/ulnla1qp/mastodon.svg -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/wwwroot/media/uxcbvbvf/desktop-notebook-glasses.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/wwwroot/media/uxcbvbvf/desktop-notebook-glasses.jpg -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/wwwroot/media/wvadrxjb/front-row-audience-smiles.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/wwwroot/media/wvadrxjb/front-row-audience-smiles.jpg -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/wwwroot/media/xldnfcwl/friendly-chair.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/wwwroot/media/xldnfcwl/friendly-chair.jpg -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/wwwroot/media/xu5ome2c/say-cheese.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/wwwroot/media/xu5ome2c/say-cheese.jpg -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/wwwroot/media/yhvnqpay/mastodon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/wwwroot/media/yhvnqpay/mastodon.png -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/wwwroot/media/z4ocpnjy/skrift-at-codegarden.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/wwwroot/media/z4ocpnjy/skrift-at-codegarden.jpg -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/wwwroot/media/zgin435m/mastodon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Resources.Website/wwwroot/media/zgin435m/mastodon.png -------------------------------------------------------------------------------- /test/UrlTracker.Resources.Website/wwwroot/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: / -------------------------------------------------------------------------------- /test/UrlTracker.Web.Tests/Configuration/ReservedPathSettingsProviderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Web.Tests/Configuration/ReservedPathSettingsProviderTests.cs -------------------------------------------------------------------------------- /test/UrlTracker.Web.Tests/Processing/BlacklistedUrlsClientErrorFilterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Web.Tests/Processing/BlacklistedUrlsClientErrorFilterTests.cs -------------------------------------------------------------------------------- /test/UrlTracker.Web.Tests/Processing/ConstantsClientErrorFilterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Web.Tests/Processing/ConstantsClientErrorFilterTests.cs -------------------------------------------------------------------------------- /test/UrlTracker.Web.Tests/Processing/CoreConfigurationClientErrorFilterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Web.Tests/Processing/CoreConfigurationClientErrorFilterTests.cs -------------------------------------------------------------------------------- /test/UrlTracker.Web.Tests/Processing/CoreConfigurationRequestInterceptFilterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Web.Tests/Processing/CoreConfigurationRequestInterceptFilterTests.cs -------------------------------------------------------------------------------- /test/UrlTracker.Web.Tests/Processing/NoLongerExistsResponseInterceptHandlerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Web.Tests/Processing/NoLongerExistsResponseInterceptHandlerTests.cs -------------------------------------------------------------------------------- /test/UrlTracker.Web.Tests/Processing/NotFoundClientErrorFilterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Web.Tests/Processing/NotFoundClientErrorFilterTests.cs -------------------------------------------------------------------------------- /test/UrlTracker.Web.Tests/Processing/RedirectResponseHandlerTestCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Web.Tests/Processing/RedirectResponseHandlerTestCase.cs -------------------------------------------------------------------------------- /test/UrlTracker.Web.Tests/Processing/RedirectResponseInterceptHandlerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Web.Tests/Processing/RedirectResponseInterceptHandlerTests.cs -------------------------------------------------------------------------------- /test/UrlTracker.Web.Tests/Processing/RequestInterceptFilterCollectionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Web.Tests/Processing/RequestInterceptFilterCollectionTests.cs -------------------------------------------------------------------------------- /test/UrlTracker.Web.Tests/Processing/ResponseInterceptHandlerCollectionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Web.Tests/Processing/ResponseInterceptHandlerCollectionTests.cs -------------------------------------------------------------------------------- /test/UrlTracker.Web.Tests/Processing/UrlReservedPathFilterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Web.Tests/Processing/UrlReservedPathFilterTests.cs -------------------------------------------------------------------------------- /test/UrlTracker.Web.Tests/UrlTracker.Web.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/test/UrlTracker.Web.Tests/UrlTracker.Web.Tests.csproj -------------------------------------------------------------------------------- /umbraco-marketplace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocaster/UrlTracker/HEAD/umbraco-marketplace.json --------------------------------------------------------------------------------