- @* Tabs for levels *@ @for (var i = 1; i <= termEntry.GetLevels(); i++) { }
+ @* Tabs for levels *@ @for (var i = 1; i <= termEntry.GetLevels(); i++) { }
- @Html.ItemDisplayLink(termEntry.Name, termEntry.ContentItem)
- @if (termEntry.HasDraft) {
- @T(" (Draft)")
+ @if (Authorizer.Authorize(Permissions.EditTerm)) {
+ @Html.ItemEditLink(termEntry.Name, termEntry.ContentItem, new { returnUrl = Url.Action("Index", "TermAdmin", new { taxonomyId = Model.Taxonomy.Id }) })
+ }
+ else {
+ @Html.ItemDisplayText(termEntry.ContentItem)
+ @if (termEntry.HasDraft) {
+ @T(" (Draft)")
+ }
}
|
+ @Html.ItemDisplayLink(T("View").Text, termEntry.ContentItem) |
@if (Authorizer.Authorize(Permissions.EditTerm)) {
@Html.ItemEditLink(T("Edit").Text, termEntry.ContentItem, new { returnUrl = Url.Action("Index", "TermAdmin", new { taxonomyId = Model.Taxonomy.Id }) }) |
@Html.ActionLink(T("Move").ToString(), "MoveTerm", new { taxonomyId = Model.Taxonomy.Id, termIds = termEntry.Id })
diff --git a/src/Orchard.sln b/src/Orchard.sln
index cc2b05fa7..610e3fae9 100644
--- a/src/Orchard.sln
+++ b/src/Orchard.sln
@@ -269,6 +269,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
..\.deployment = ..\.deployment
.editorconfig = .editorconfig
..\deploy.ps1 = ..\deploy.ps1
+ NuGet.config = NuGet.config
..\DeploymentUtility.psm1 = ..\DeploymentUtility.psm1
Rebracer.xml = Rebracer.xml
WebEssentials-Settings.json = WebEssentials-Settings.json
diff --git a/src/Orchard/Localization/Services/SiteCultureSelector.cs b/src/Orchard/Localization/Services/SiteCultureSelector.cs
index 66be0e6ec..dcfcbc751 100644
--- a/src/Orchard/Localization/Services/SiteCultureSelector.cs
+++ b/src/Orchard/Localization/Services/SiteCultureSelector.cs
@@ -1,22 +1,36 @@
using System;
using System.Web;
+using Orchard.Caching;
namespace Orchard.Localization.Services {
public class SiteCultureSelector : ICultureSelector {
private readonly IWorkContextAccessor _workContextAccessor;
+ private readonly ICacheManager _cacheManager;
+ private readonly ISignals _signals;
+
+ public SiteCultureSelector(
+ IWorkContextAccessor workContextAccessor,
+ ICacheManager cacheManager,
+ ISignals signals) {
- public SiteCultureSelector(IWorkContextAccessor workContextAccessor) {
_workContextAccessor = workContextAccessor;
+ _cacheManager = cacheManager;
+ _signals = signals;
}
public CultureSelectorResult GetCulture(HttpContextBase context) {
- string currentCultureName = _workContextAccessor.GetContext().CurrentSite.SiteCulture;
+ var cacheKey = "Orchard.Localization.Services.SiteCultureSelector.GetCulture";
+ return _cacheManager.Get(cacheKey, true, ctx => {
+ // this is the same signal used in Orchard.Framework.DefaultCultureManager
+ ctx.Monitor(_signals.When("culturesChanged"));
- if (String.IsNullOrEmpty(currentCultureName)) {
- return null;
- }
-
- return new CultureSelectorResult { Priority = -5, CultureName = currentCultureName };
+ string currentCultureName = _workContextAccessor.GetContext().CurrentSite.SiteCulture;
+ if (String.IsNullOrEmpty(currentCultureName)) {
+ return null;
+ }
+ return new CultureSelectorResult { Priority = -5, CultureName = currentCultureName };
+ });
+
}
}
}
diff --git a/src/Orchard/Mvc/Html/ContentItemExtensions.cs b/src/Orchard/Mvc/Html/ContentItemExtensions.cs
index 59fd7de07..eca400f8c 100644
--- a/src/Orchard/Mvc/Html/ContentItemExtensions.cs
+++ b/src/Orchard/Mvc/Html/ContentItemExtensions.cs
@@ -44,7 +44,7 @@ namespace Orchard.Mvc.Html {
NonNullOrEmpty(linkText, metadata.DisplayText, "view"),
Convert.ToString(metadata.DisplayRouteValues["action"]),
metadata.DisplayRouteValues,
- new RouteValueDictionary(htmlAttributes));
+ HtmlHelper.AnonymousObjectToHtmlAttributes(htmlAttributes));
}
public static string ItemDisplayUrl(this UrlHelper urlHelper, IContent content) {
@@ -111,7 +111,7 @@ namespace Orchard.Mvc.Html {
NonNullOrEmpty(linkText, metadata.DisplayText, content.ContentItem.TypeDefinition.DisplayName),
Convert.ToString(metadata.EditorRouteValues["action"]),
metadata.EditorRouteValues.Merge(additionalRouteValues),
- new RouteValueDictionary(htmlAttributes));
+ HtmlHelper.AnonymousObjectToHtmlAttributes(htmlAttributes));
}
public static MvcHtmlString ItemAdminLink(this HtmlHelper html, IContent content) {
diff --git a/src/Orchard/Mvc/Html/HtmlHelperExtensions.cs b/src/Orchard/Mvc/Html/HtmlHelperExtensions.cs
index f6b7e3f08..c8644baf9 100644
--- a/src/Orchard/Mvc/Html/HtmlHelperExtensions.cs
+++ b/src/Orchard/Mvc/Html/HtmlHelperExtensions.cs
@@ -52,7 +52,7 @@ namespace Orchard.Mvc.Html {
}
public static MvcHtmlString SelectOption(this HtmlHelper html, T currentValue, T optionValue, string text, object htmlAttributes) {
- return SelectOption(html, optionValue, object.Equals(optionValue, currentValue), text, new RouteValueDictionary(htmlAttributes));
+ return SelectOption(html, optionValue, object.Equals(optionValue, currentValue), text, HtmlHelper.AnonymousObjectToHtmlAttributes(htmlAttributes));
}
public static MvcHtmlString SelectOption(this HtmlHelper html, T currentValue, T optionValue, string text, RouteValueDictionary htmlAttributes) {
@@ -64,7 +64,7 @@ namespace Orchard.Mvc.Html {
}
public static MvcHtmlString SelectOption(this HtmlHelper html, object optionValue, bool selected, string text, object htmlAttributes) {
- return SelectOption(html, optionValue, selected, text, new RouteValueDictionary(htmlAttributes));
+ return SelectOption(html, optionValue, selected, text, HtmlHelper.AnonymousObjectToHtmlAttributes(htmlAttributes));
}
public static MvcHtmlString SelectOption(this HtmlHelper html, object optionValue, bool selected, string text, RouteValueDictionary htmlAttributes) {
@@ -203,7 +203,7 @@ namespace Orchard.Mvc.Html {
#region Image
public static MvcHtmlString Image(this HtmlHelper htmlHelper, string src, string alt, object htmlAttributes) {
- return htmlHelper.Image(src, alt, new RouteValueDictionary(htmlAttributes));
+ return htmlHelper.Image(src, alt, HtmlHelper.AnonymousObjectToHtmlAttributes(htmlAttributes));
}
public static MvcHtmlString Image(this HtmlHelper htmlHelper, string src, string alt, IDictionary htmlAttributes) {
@@ -238,7 +238,7 @@ namespace Orchard.Mvc.Html {
}
public static IHtmlString Link(this HtmlHelper htmlHelper, string linkContents, string href, object htmlAttributes) {
- return htmlHelper.Link(linkContents, href, new RouteValueDictionary(htmlAttributes));
+ return htmlHelper.Link(linkContents, href, HtmlHelper.AnonymousObjectToHtmlAttributes(htmlAttributes));
}
public static IHtmlString Link(this HtmlHelper htmlHelper, string linkContents, string href, IDictionary htmlAttributes) {
@@ -264,7 +264,7 @@ namespace Orchard.Mvc.Html {
}
public static IHtmlString LinkOrDefault(this HtmlHelper htmlHelper, string linkContents, string href, object htmlAttributes) {
- return htmlHelper.LinkOrDefault(linkContents, href, new RouteValueDictionary(htmlAttributes));
+ return htmlHelper.LinkOrDefault(linkContents, href, HtmlHelper.AnonymousObjectToHtmlAttributes(htmlAttributes));
}
public static IHtmlString LinkOrDefault(this HtmlHelper htmlHelper, string linkContents, string href, IDictionary htmlAttributes) {
@@ -290,7 +290,7 @@ namespace Orchard.Mvc.Html {
}
public static IHtmlString Hint(this HtmlHelper htmlHelper, LocalizedString text, object htmlAttributes) {
- return Hint(htmlHelper, text, htmlAttributes != null ? new RouteValueDictionary(htmlAttributes) : null);
+ return Hint(htmlHelper, text, htmlAttributes != null ? HtmlHelper.AnonymousObjectToHtmlAttributes(htmlAttributes) : null);
}
public static IHtmlString Hint(this HtmlHelper htmlHelper, LocalizedString text, IDictionary htmlAttributes) {
@@ -392,7 +392,7 @@ namespace Orchard.Mvc.Html {
}
public static IHtmlString AntiForgeryTokenValueOrchardLink(this HtmlHelper htmlHelper, string linkContents, string href, object htmlAttributes) {
- return htmlHelper.AntiForgeryTokenValueOrchardLink(linkContents, href, new RouteValueDictionary(htmlAttributes));
+ return htmlHelper.AntiForgeryTokenValueOrchardLink(linkContents, href, HtmlHelper.AnonymousObjectToHtmlAttributes(htmlAttributes));
}
public static IHtmlString AntiForgeryTokenValueOrchardLink(this HtmlHelper htmlHelper, string linkContents, string href, IDictionary htmlAttributes) {
|