mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-11-28 09:22:55 +08:00
Merge
--HG-- branch : 1.x
This commit is contained in:
@@ -1,6 +1,7 @@
|
|||||||
using System.Reflection;
|
using System.Reflection;
|
||||||
using System.Runtime.CompilerServices;
|
using System.Runtime.CompilerServices;
|
||||||
using System.Runtime.InteropServices;
|
using System.Runtime.InteropServices;
|
||||||
|
using System.Security;
|
||||||
|
|
||||||
// General Information about an assembly is controlled through the following
|
// General Information about an assembly is controlled through the following
|
||||||
// set of attributes. Change these attribute values to modify the information
|
// set of attributes. Change these attribute values to modify the information
|
||||||
@@ -33,3 +34,6 @@ using System.Runtime.InteropServices;
|
|||||||
// [assembly: AssemblyVersion("1.0.*")]
|
// [assembly: AssemblyVersion("1.0.*")]
|
||||||
[assembly: AssemblyVersion("1.0.20")]
|
[assembly: AssemblyVersion("1.0.20")]
|
||||||
[assembly: AssemblyFileVersion("1.0.20")]
|
[assembly: AssemblyFileVersion("1.0.20")]
|
||||||
|
|
||||||
|
// Enable web application to call this assembly in Full Trust
|
||||||
|
[assembly: AllowPartiallyTrustedCallers]
|
||||||
@@ -1,5 +1,4 @@
|
|||||||
(function ($) {
|
jQuery(function($) {
|
||||||
$(document).ready(function () {
|
|
||||||
// default shape window height when first opened
|
// default shape window height when first opened
|
||||||
var defaultHeight = 200;
|
var defaultHeight = 200;
|
||||||
|
|
||||||
@@ -435,8 +434,6 @@
|
|||||||
event.stopPropagation();
|
event.stopPropagation();
|
||||||
});
|
});
|
||||||
|
|
||||||
});
|
|
||||||
|
|
||||||
// recursively create a node for the shapes tree
|
// recursively create a node for the shapes tree
|
||||||
function createTreeNode(shapeNode) {
|
function createTreeNode(shapeNode) {
|
||||||
var node = $('<li></li>');
|
var node = $('<li></li>');
|
||||||
@@ -461,4 +458,4 @@
|
|||||||
return node;
|
return node;
|
||||||
}
|
}
|
||||||
|
|
||||||
})(jQuery);
|
});
|
||||||
|
|||||||
@@ -8,7 +8,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
@Html.EditorFor(m => m.EnableLostPassword)
|
@Html.EditorFor(m => m.EnableLostPassword)
|
||||||
<label class="forcheckbox" for="@Html.FieldIdFor( m => m.EnableLostPassword)">@T("Display a link to enable users to reset their email")</label>
|
<label class="forcheckbox" for="@Html.FieldIdFor( m => m.EnableLostPassword)">@T("Display a link to enable users to reset their password")</label>
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
@Html.EditorFor(m => m.UsersMustValidateEmail)
|
@Html.EditorFor(m => m.UsersMustValidateEmail)
|
||||||
|
|||||||
@@ -69,18 +69,24 @@ namespace Orchard.UI.Notify {
|
|||||||
var delimiterIndex = line.IndexOf(':');
|
var delimiterIndex = line.IndexOf(':');
|
||||||
if (delimiterIndex != -1) {
|
if (delimiterIndex != -1) {
|
||||||
var type = (NotifyType)Enum.Parse(typeof(NotifyType), line.Substring(0, delimiterIndex));
|
var type = (NotifyType)Enum.Parse(typeof(NotifyType), line.Substring(0, delimiterIndex));
|
||||||
|
var message = new LocalizedString(line.Substring(delimiterIndex + 1));
|
||||||
|
if (!messageEntries.Any(ne => ne.Message.TextHint == message.TextHint)) {
|
||||||
messageEntries.Add(new NotifyEntry {
|
messageEntries.Add(new NotifyEntry {
|
||||||
Type = type,
|
Type = type,
|
||||||
Message = new LocalizedString(line.Substring(delimiterIndex + 1))
|
Message = message
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
}
|
||||||
else {
|
else {
|
||||||
|
var message = new LocalizedString(line.Substring(delimiterIndex + 1));
|
||||||
|
if (!messageEntries.Any(ne => ne.Message.TextHint == message.TextHint)) {
|
||||||
messageEntries.Add(new NotifyEntry {
|
messageEntries.Add(new NotifyEntry {
|
||||||
Type = NotifyType.Information,
|
Type = NotifyType.Information,
|
||||||
Message = new LocalizedString(line.Substring(delimiterIndex + 1))
|
Message = message
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if (!messageEntries.Any())
|
if (!messageEntries.Any())
|
||||||
return;
|
return;
|
||||||
|
|||||||
Reference in New Issue
Block a user