From db0c8c3d1f8f82d6f0b63813d3994ccf315b166f Mon Sep 17 00:00:00 2001 From: Lombiq Date: Wed, 15 Apr 2015 21:00:20 +0200 Subject: [PATCH] Changing all Codeplex issue links to GitHub links --- src/Orchard.Web/Core/Navigation/Controllers/AdminController.cs | 2 +- .../Orchard.DesignerTools/Services/UrlAlternatesFactory.cs | 2 +- .../Modules/Orchard.MediaLibrary/Factories/ImageFactory.cs | 2 +- .../Modules/Orchard.Recipes/Services/RecipeScheduler.cs | 2 +- src/Orchard/Environment/State/DefaultProcessingEngine.cs | 2 +- src/Tools/Orchard/HostContext/CommandHostContextProvider.cs | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/Orchard.Web/Core/Navigation/Controllers/AdminController.cs b/src/Orchard.Web/Core/Navigation/Controllers/AdminController.cs index 659a998db..9375c77b0 100644 --- a/src/Orchard.Web/Core/Navigation/Controllers/AdminController.cs +++ b/src/Orchard.Web/Core/Navigation/Controllers/AdminController.cs @@ -90,7 +90,7 @@ namespace Orchard.Core.Navigation.Controllers { if (!Services.Authorizer.Authorize(Permissions.ManageMenus, T("Couldn't manage the main menu"))) return new HttpUnauthorizedResult(); - // See http://orchard.codeplex.com/workitem/17116 + // See https://github.com/OrchardCMS/Orchard/issues/948 if (menuItemEntries != null) { foreach (var menuItemEntry in menuItemEntries) { MenuPart menuPart = _menuService.Get(menuItemEntry.MenuItemId); diff --git a/src/Orchard.Web/Modules/Orchard.DesignerTools/Services/UrlAlternatesFactory.cs b/src/Orchard.Web/Modules/Orchard.DesignerTools/Services/UrlAlternatesFactory.cs index f7704d814..4df9c58e3 100644 --- a/src/Orchard.Web/Modules/Orchard.DesignerTools/Services/UrlAlternatesFactory.cs +++ b/src/Orchard.Web/Modules/Orchard.DesignerTools/Services/UrlAlternatesFactory.cs @@ -51,7 +51,7 @@ namespace Orchard.DesignerTools.Services { return; } - // prevent applying alternate again, c.f. http://orchard.codeplex.com/workitem/18298 + // prevent applying alternate again, c.f. https://github.com/OrchardCMS/Orchard/issues/2125 if(displayedContext.ShapeMetadata.Alternates.Any(x => x.Contains("__url__"))) { return; } diff --git a/src/Orchard.Web/Modules/Orchard.MediaLibrary/Factories/ImageFactory.cs b/src/Orchard.Web/Modules/Orchard.MediaLibrary/Factories/ImageFactory.cs index e0aafe39f..c069b097f 100644 --- a/src/Orchard.Web/Modules/Orchard.MediaLibrary/Factories/ImageFactory.cs +++ b/src/Orchard.Web/Modules/Orchard.MediaLibrary/Factories/ImageFactory.cs @@ -72,7 +72,7 @@ namespace Orchard.MediaLibrary.Factories { } } catch (ArgumentException) { - // Still trying to get .ico dimensions when it's blocked in System.Drawing, see: https://orchard.codeplex.com/workitem/20644 + // Still trying to get .ico dimensions when it's blocked in System.Drawing, see: https://github.com/OrchardCMS/Orchard/issues/4473 if (mimeType != "image/x-icon" && mimeType != "image/vnd.microsoft.icon") { throw; diff --git a/src/Orchard.Web/Modules/Orchard.Recipes/Services/RecipeScheduler.cs b/src/Orchard.Web/Modules/Orchard.Recipes/Services/RecipeScheduler.cs index 1ce0bf353..8f12fe6df 100644 --- a/src/Orchard.Web/Modules/Orchard.Recipes/Services/RecipeScheduler.cs +++ b/src/Orchard.Web/Modules/Orchard.Recipes/Services/RecipeScheduler.cs @@ -41,7 +41,7 @@ namespace Orchard.Recipes.Services { if (scheduleMore) ScheduleWork(executionId); else - // https://orchard.codeplex.com/workitem/19844 + // https://github.com/OrchardCMS/Orchard/issues/3672 // Because recipes execute in their own workcontext, we need to restart the shell, as signaling a cache won't work across workcontexts. _events.Changed(_shellDescriptorManager.GetShellDescriptor(), _shellSettings.Name); } diff --git a/src/Orchard/Environment/State/DefaultProcessingEngine.cs b/src/Orchard/Environment/State/DefaultProcessingEngine.cs index 92d83e58c..b560c8f92 100644 --- a/src/Orchard/Environment/State/DefaultProcessingEngine.cs +++ b/src/Orchard/Environment/State/DefaultProcessingEngine.cs @@ -68,7 +68,7 @@ namespace Orchard.Environment.State { private void Execute(Entry entry) { // Force reloading extensions if there were extensions installed - // See http://orchard.codeplex.com/workitem/17465 + // See https://github.com/OrchardCMS/Orchard/issues/1294 if (entry.MessageName == "IRecipeSchedulerEventHandler.ExecuteWork") { var ctx = _orchardHost().GetShellContext(entry.ShellSettings); } diff --git a/src/Tools/Orchard/HostContext/CommandHostContextProvider.cs b/src/Tools/Orchard/HostContext/CommandHostContextProvider.cs index 12f900409..f53fd2af1 100644 --- a/src/Tools/Orchard/HostContext/CommandHostContextProvider.cs +++ b/src/Tools/Orchard/HostContext/CommandHostContextProvider.cs @@ -115,7 +115,7 @@ namespace Orchard.HostContext { private static CommandHost CreateWorkerAppDomainWithHost(string virtualPath, string physicalPath, Type hostType) { var clientBuildManager = new ClientBuildManager(virtualPath, physicalPath); - // Fix for http://orchard.codeplex.com/workitem/17920 + // Fix for https://github.com/OrchardCMS/Orchard/issues/1749 // By forcing the CBM to build App_Code, etc, we ensure that the ASP.NET BuildManager // is in a state where it can safely (i.e. in a multi-threaded safe way) process // multiple concurrent calls to "GetCompiledAssembly".