mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-10-15 19:54:57 +08:00
Changing all Codeplex issue links to GitHub links
This commit is contained in:
@@ -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);
|
||||
|
@@ -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;
|
||||
}
|
||||
|
@@ -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;
|
||||
|
@@ -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);
|
||||
}
|
||||
|
@@ -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);
|
||||
}
|
||||
|
@@ -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".
|
||||
|
Reference in New Issue
Block a user