Changing all Codeplex issue links to GitHub links

This commit is contained in:
Lombiq
2015-04-15 21:00:20 +02:00
committed by Zoltán Lehóczky
parent 06070fbb03
commit db0c8c3d1f
6 changed files with 6 additions and 6 deletions

View File

@@ -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);

View File

@@ -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;
}

View File

@@ -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;

View File

@@ -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);
}

View File

@@ -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);
}

View File

@@ -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".