Compare commits

..

5 Commits

Author SHA1 Message Date
Benedek Farkas
14133b8f1f Fixing Recycle Bin validation when no items are selected to be restored 2026-01-21 21:16:16 +01:00
Benedek Farkas
749c51a1d5 Code cleanup, typo fix, and whitespaces in Recycle Bin code 2026-01-21 21:15:41 +01:00
Benedek Farkas
8687ca0a98 Updating version numbers to 1.11 (#8889)
Some checks failed
Build Crowdin Translation Packages / build-crowdin-translation-packages (push) Has been cancelled
Compile / Compile .NET solution (push) Has been cancelled
Compile / Compile Client-side Assets (push) Has been cancelled
SpecFlow Tests / SpecFlow Tests (push) Has been cancelled
2026-01-13 17:16:17 +01:00
Benedek Farkas
2a1c898ff2 #8878: Fixing that Projection Manager should apply the Version Scope even if there are multiple filter groups (#8880) 2026-01-12 17:04:21 +01:00
Benedek Farkas
bbde34d9c5 Fixing that displaying the publish button in the user editor should depend on ManageUsers permissions instead of PublishContent (#8886) 2026-01-12 13:16:07 +01:00
174 changed files with 393 additions and 379 deletions

View File

@@ -10,17 +10,15 @@ Join the community discussion on [Discord](https://orchardcore.net/discord), whe
#### Please visit our website at https://orchardcore.net for the most current information about this project.
Orchard is a free, open source, community-focused **Content Management System** built on the ASP.NET MVC platform.
Orchard is built on a modern architecture that puts extensibility up-front as its number one concern. All components in Orchard can be replaced or extended and content is built from easily composable building blocks. Modules extend the system in a decoupled fashion, where a commenting module for example can easily apply to pages, blog posts, photos, and products too. A rich UI composition system completes the picture and ensures that you can get the exact presentation that you need for your content.
Orchard is built on a modern architecture that puts extensibility up-front, as its number one concern. All components in Orchard can be replaced or extended. Content is built from easily composable building blocks. Modules extend the system in a very decoupled fashion, where a commenting module for example can as easily apply to pages, blog posts, photos or products. A rich UI composition system completes the picture and ensures that you can get the exact presentation that you need for your content.
Orchard is delivered under the [.NET Foundation](https://www.dotnetfoundation.org/projects?searchquery=Orchard&type=project). It is licensed under a [New BSD license](https://www.opensource.org/licenses/bsd-license.php), which is approved by the OSI.
Orchard is delivered under the [.NET Foundation](https://dotnetfoundation.org/projects/project-detail/orchard-core). It is licensed under a [New BSD license](https://www.opensource.org/licenses/bsd-license.php), which is approved by the OSI.
Our mission is to empower our users and foster a dedicated and diverse community that builds the CMS that we all want to use.
## Project Status
Orchard is currently in version **[1.10.4](https://github.com/OrchardCMS/Orchard/releases/tag/1.10.4)**: It contains bugfixes and the more impactful changes and new features added in the latest major version (*1.10*).
Orchard is currently in **[version 1.11](https://github.com/OrchardCMS/Orchard/releases/tag/1.11)**.
We invite participation by the developer community in shaping the project's direction, so that we can publicly validate our designs and development approach.
All our releases are available on our [Releases](https://github.com/OrchardCMS/Orchard/releases) page, and we encourage interested developers to check out the source code on the Orchard GitHub site and get involved with the project.

View File

@@ -30,5 +30,5 @@ using System.Runtime.InteropServices;
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
[assembly: AssemblyVersion("1.10.4")]
[assembly: AssemblyFileVersion("1.10.4")]
[assembly: AssemblyVersion("1.11")]
[assembly: AssemblyFileVersion("1.11")]

View File

@@ -30,5 +30,5 @@ using System.Runtime.InteropServices;
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
[assembly: AssemblyVersion("1.10.4")]
[assembly: AssemblyFileVersion("1.10.4")]
[assembly: AssemblyVersion("1.11")]
[assembly: AssemblyFileVersion("1.11")]

View File

@@ -30,5 +30,5 @@ using System.Runtime.InteropServices;
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
[assembly: AssemblyVersion("1.10.4")]
[assembly: AssemblyFileVersion("1.10.4")]
[assembly: AssemblyVersion("1.11")]
[assembly: AssemblyFileVersion("1.11")]

View File

@@ -30,5 +30,5 @@ using System.Runtime.InteropServices;
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
[assembly: AssemblyVersion("1.10.4")]
[assembly: AssemblyFileVersion("1.10.4")]
[assembly: AssemblyVersion("1.11")]
[assembly: AssemblyFileVersion("1.11")]

View File

@@ -33,5 +33,5 @@ using System.Runtime.InteropServices;
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
[assembly: AssemblyVersion("1.10.4")]
[assembly: AssemblyFileVersion("1.10.4")]
[assembly: AssemblyVersion("1.11")]
[assembly: AssemblyFileVersion("1.11")]

View File

@@ -31,8 +31,8 @@ using System.Security;
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
[assembly: AssemblyVersion("1.10.4")]
[assembly: AssemblyFileVersion("1.10.4")]
[assembly: AssemblyVersion("1.11")]
[assembly: AssemblyFileVersion("1.11")]
// Enable web application to call this assembly in Full Trust
[assembly: AllowPartiallyTrustedCallers]

View File

@@ -33,5 +33,5 @@ using System.Runtime.InteropServices;
// You can specify all the values or you can default the Revision and Build Numbers
// by using the '*' as shown below:
[assembly: AssemblyVersion("1.10.4")]
[assembly: AssemblyFileVersion("1.10.4")]
[assembly: AssemblyVersion("1.11")]
[assembly: AssemblyFileVersion("1.11")]

View File

@@ -2,8 +2,8 @@
AntiForgery: enabled
Author: The Orchard Team
Website: http://orchardproject.net
Version: 1.10.4
OrchardVersion: 1.10.4
Version: 1.11
OrchardVersion: 1.11
Description: The common module introduces content parts that are going to be used by most content types (common, body, identity).
FeatureDescription: Core content parts.
Dependencies: Settings

View File

@@ -2,8 +2,8 @@
AntiForgery: enabled
Author: The Orchard Team
Website: http://orchardproject.net
Version: 1.10.4
OrchardVersion: 1.10.4
Version: 1.11
OrchardVersion: 1.11
Description: The containers module introduces container and containable behaviors for content items.
FeatureDescription: Container and containable parts to enable parent-child relationships between content items.
Dependencies: Contents, Feeds

View File

@@ -2,8 +2,8 @@
AntiForgery: enabled
Author: The Orchard Team
Website: http://orchardproject.net
Version: 1.10.4
OrchardVersion: 1.10.4
Version: 1.11
OrchardVersion: 1.11
Description: The contents module enables the creation of custom content types.
Features:
Contents

View File

@@ -2,8 +2,8 @@
AntiForgery: enabled
Author: The Orchard Team
Website: http://orchardproject.net
Version: 1.10.4
OrchardVersion: 1.10.4
Version: 1.11
OrchardVersion: 1.11
Description: The dashboard module is providing the dashboard screen of the admininstration UI of the application.
FeatureDescription: Standard admin dashboard.
Category: Core

View File

@@ -2,8 +2,8 @@
AntiForgery: enabled
Author: The Orchard Team
Website: http://orchardproject.net
Version: 1.10.4
OrchardVersion: 1.10.4
Version: 1.11
OrchardVersion: 1.11
Description: The Feeds module is providing RSS feeds to content items.
FeatureDescription: RSS feeds for content items.
Category: Syndication

View File

@@ -2,8 +2,8 @@
AntiForgery: enabled
Author: The Orchard Team
Website: http://orchardproject.net
Version: 1.10.4
OrchardVersion: 1.10.4
Version: 1.11
OrchardVersion: 1.11
Description: The navigation module creates and manages a simple navigation menu for the front-end of the application and allows you to add content items to the admin menu.
FeatureDescription: Menu management.
Category: Core

View File

@@ -29,6 +29,6 @@ using System.Runtime.InteropServices;
//
// You can specify all the values or you can default the Revision and Build Numbers
// by using the '*' as shown below:
[assembly: AssemblyVersion("1.10.4")]
[assembly: AssemblyFileVersion("1.10.4")]
[assembly: AssemblyVersion("1.11")]
[assembly: AssemblyFileVersion("1.11")]

View File

@@ -2,8 +2,8 @@
AntiForgery: enabled
Author: The Orchard Team
Website: http://orchardproject.net
Version: 1.10.4
OrchardVersion: 1.10.4
Version: 1.11
OrchardVersion: 1.11
Description: The dashboard module is providing the reports screen of the application.
FeatureDescription: Reports management.
Category: Core

View File

@@ -2,8 +2,8 @@
AntiForgery: enabled
Author: The Orchard Team
Website: http://orchardproject.net
Version: 1.10.4
OrchardVersion: 1.10.4
Version: 1.11
OrchardVersion: 1.11
Description: The scheduling module enables background task scheduling.
FeatureDescription: Scheduled background tasks.
Category: Core

View File

@@ -2,8 +2,8 @@
AntiForgery: enabled
Author: The Orchard Team
Website: http://orchardproject.net
Version: 1.10.4
OrchardVersion: 1.10.4
Version: 1.11
OrchardVersion: 1.11
Description: The settings module creates site settings that other modules can contribute to.
FeatureDescription: Site settings.
Category: Core

View File

@@ -2,8 +2,8 @@
AntiForgery: enabled
Author: The Orchard Team
Website: http://orchardproject.net
Version: 1.10.4
OrchardVersion: 1.10.4
Version: 1.11
OrchardVersion: 1.11
Description: The shapes module contains core shape templates and display hooks.
FeatureDescription: Core shape templates and display hooks.
Category: Core

View File

@@ -2,8 +2,8 @@
AntiForgery: enabled
Author: The Orchard Team
Website: http://orchardproject.net
Version: 1.10.4
OrchardVersion: 1.10.4
Version: 1.11
OrchardVersion: 1.11
Description: The title module enables content items to have titles.
FeatureDescription: Title content part.
Category: Core

View File

@@ -2,8 +2,8 @@
AntiForgery: enabled
Author: The Orchard Team
Website: http://orchardproject.net
Version: 1.10.4
OrchardVersion: 1.10.4
Version: 1.11
OrchardVersion: 1.11
Description: The XmlRpc module enables creation of contents from client applications such as LiveWriter.
FeatureDescription: XML-RPC opt-in implementation.
Category: Content Publishing

View File

@@ -2,8 +2,8 @@
AntiForgery: enabled
Author: The Orchard Team
Website: http://orchardproject.net
Version: 1.10.4
OrchardVersion: 1.10.4
Version: 1.11
OrchardVersion: 1.11
Description: The Lucene module enables the site to be indexed using Lucene.NET. The index generated by this module can then be used by the search module to provide an integrated full-text search experience to a web site.
FeatureDescription: Lucene indexing services.
Dependencies: Orchard.Indexing

View File

@@ -29,6 +29,6 @@ using System.Runtime.InteropServices;
//
// You can specify all the values or you can default the Revision and Build Numbers
// by using the '*' as shown below:
[assembly: AssemblyVersion("1.10.4")]
[assembly: AssemblyFileVersion("1.10.4")]
[assembly: AssemblyVersion("1.11")]
[assembly: AssemblyFileVersion("1.11")]

View File

@@ -2,8 +2,8 @@
AntiForgery: enabled
Author: The Orchard Team
Website: http://orchardproject.net
Version: 1.10.4
OrchardVersion: 1.10.4
Version: 1.11
OrchardVersion: 1.11
Description: The Markdown module enables rich text contents to be created using the Markdown syntax.
FeatureDescription: Markdown editor.
Category: Input Editor

View File

@@ -26,6 +26,6 @@ using System.Runtime.InteropServices;
//
// You can specify all the values or you can default the Revision and Build Numbers
// by using the '*' as shown below:
[assembly: AssemblyVersion("1.10.4")]
[assembly: AssemblyFileVersion("1.10.4")]
[assembly: AssemblyVersion("1.11")]
[assembly: AssemblyFileVersion("1.11")]

View File

@@ -2,8 +2,8 @@ Name: Alias
AntiForgery: enabled
Author: The Orchard Team
Website: http://orchardproject.net
Version: 1.10.4
OrchardVersion: 1.10.4
Version: 1.11
OrchardVersion: 1.11
Description: Maps friendly urls to specific module actions.
FeatureDescription: Maps friendly urls to specific module actions.
Category: Content

View File

@@ -29,6 +29,6 @@ using System.Runtime.InteropServices;
//
// You can specify all the values or you can default the Revision and Build Numbers
// by using the '*' as shown below:
[assembly: AssemblyVersion("1.10.4")]
[assembly: AssemblyFileVersion("1.10.4")]
[assembly: AssemblyVersion("1.11")]
[assembly: AssemblyFileVersion("1.11")]

View File

@@ -2,8 +2,8 @@ Name: AntiSpam
AntiForgery: enabled
Author: The Orchard Team
Website: http://orchardproject.net
Version: 1.10.4
OrchardVersion: 1.10.4
Version: 1.11
OrchardVersion: 1.11
Description: Provides anti-spam services to protect your content from malicious submissions.
Features:
Orchard.AntiSpam:

View File

@@ -29,6 +29,6 @@ using System.Runtime.InteropServices;
//
// You can specify all the values or you can default the Revision and Build Numbers
// by using the '*' as shown below:
[assembly: AssemblyVersion("1.10.4")]
[assembly: AssemblyFileVersion("1.10.4")]
[assembly: AssemblyVersion("1.11")]
[assembly: AssemblyFileVersion("1.11")]

View File

@@ -3,8 +3,8 @@ Path: ArchiveLater
AntiForgery: enabled
Author: The Orchard Team
Website: http://orchardproject.net
Version: 1.10.4
OrchardVersion: 1.10.4
Version: 1.11
OrchardVersion: 1.11
Description: The ArchiveLater module introduces scheduled archiving functionality.
FeatureDescription: Scheduled archiving.
Category: Content

View File

@@ -29,6 +29,6 @@ using System.Runtime.InteropServices;
//
// You can specify all the values or you can default the Revision and Build Numbers
// by using the '*' as shown below:
[assembly: AssemblyVersion("1.10.4")]
[assembly: AssemblyFileVersion("1.10.4")]
[assembly: AssemblyVersion("1.11")]
[assembly: AssemblyFileVersion("1.11")]

View File

@@ -4,7 +4,6 @@ using System.Linq;
using System.Web.Mvc;
using Orchard.AuditTrail.Helpers;
using Orchard.AuditTrail.Services;
using Orchard.AuditTrail.Services.Models;
using Orchard.AuditTrail.ViewModels;
using Orchard.ContentManagement;
using Orchard.Environment.Extensions;
@@ -28,21 +27,19 @@ namespace Orchard.AuditTrail.Controllers
private readonly IOrchardServices _services;
private readonly IRecycleBin _recycleBin;
public RecycleBinController(IAuthorizer authorizer, IContentManager contentManager, INotifier notifier, IOrchardServices services, IRecycleBin recycleBin)
public RecycleBinController(IOrchardServices services, IRecycleBin recycleBin)
{
_authorizer = authorizer;
_contentManager = contentManager;
_notifier = notifier;
_authorizer = services.Authorizer;
_contentManager = services.ContentManager;
_notifier = services.Notifier;
_services = services;
_recycleBin = recycleBin;
T = NullLocalizer.Instance;
Logger = NullLogger.Instance;
}
public Localizer T { get; set; }
public ILogger Logger { get; set; }
public Localizer T { get; set; } = NullLocalizer.Instance;
public ILogger Logger { get; set; } = NullLogger.Instance;
public ActionResult Index(PagerParameters pagerParameters, AuditTrailOrderBy? orderBy = null)
public ActionResult Index(PagerParameters pagerParameters)
{
if (!_authorizer.Authorize(Permissions.ViewAuditTrail))
return new HttpUnauthorizedResult();
@@ -76,7 +73,7 @@ namespace Orchard.AuditTrail.Controllers
ModelState.AddModelError("RecycleBinCommand", T("Please select an action to execute.").Text);
}
if (viewModel.SelectedContentItems == null || !viewModel.SelectedContentItems.Any())
if (viewModel.SelectedContentItems == null || !viewModel.SelectedContentItems.Any(item => item.Selected))
{
ModelState.AddModelError("SelectedContentItems", T("Please select one or more content items.").Text);
}
@@ -108,10 +105,10 @@ namespace Orchard.AuditTrail.Controllers
{
var pager = new Pager(_services.WorkContext.CurrentSite, pagerParameters);
var removedContentItems = _recycleBin.List(pager.Page, pager.PageSize);
var pagershape = _services.New.Pager(pager).TotalItemCount(removedContentItems.TotalItemCount);
var pagerShape = _services.New.Pager(pager).TotalItemCount(removedContentItems.TotalItemCount);
viewModel.ContentItems = removedContentItems;
viewModel.Pager = pagershape;
viewModel.Pager = pagerShape;
return viewModel;
}
@@ -143,7 +140,9 @@ namespace Orchard.AuditTrail.Controllers
var contentItemTitle = _contentManager.GetItemMetadata(contentItem).DisplayText;
if (!_authorizer.Authorize(Core.Contents.Permissions.DeleteContent, contentItem))
{
_notifier.Error(T("You need to have permission to delete <strong>{0}</strong> to be able to permanently delete it.", contentItemTitle));
_notifier.Error(
T("You need to have permission to delete <strong>{0}</strong> to be able to permanently delete it.",
contentItemTitle));
continue;
}
@@ -162,4 +161,4 @@ namespace Orchard.AuditTrail.Controllers
}
}
}
}

View File

@@ -2,8 +2,8 @@
AntiForgery: enabled
Author: The Orchard Team
Website: http://orchardproject.net
Version: 1.10.4
OrchardVersion: 1.10.4
Version: 1.11
OrchardVersion: 1.11
Description: Provides a log for recording and viewing back-end changes.
Features:
Orchard.AuditTrail:

View File

@@ -30,6 +30,6 @@ using System.Runtime.InteropServices;
// You can specify all the values or you can default the Revision and Build Numbers
// by using the '*' as shown below:
[assembly: AssemblyVersion("1.10.4")]
[assembly: AssemblyFileVersion("1.10.4")]
[assembly: AssemblyVersion("1.11")]
[assembly: AssemblyFileVersion("1.11")]

View File

@@ -57,13 +57,12 @@ namespace Orchard.AuditTrail.Services
public ContentItem Restore(ContentItem contentItem)
{
var versions = contentItem.Record.Versions.OrderBy(x => x.Number).ToArray();
var lastVersion = versions.Last();
var lastVersion = contentItem.Record.Versions.OrderBy(x => x.Number).ToArray().Last();
if (lastVersion.Latest || lastVersion.Published)
throw new InvalidOperationException(string.Format("Cannot restore content item with ID {0} ftom the recycle bin, since that item is not deleted", contentItem.Id));
return _contentManager.Restore(contentItem, VersionOptions.Restore(lastVersion.Number, publish: false));
return lastVersion.Latest || lastVersion.Published
? throw new InvalidOperationException(
$"Cannot restore content item with ID {contentItem.Id} from the recycle bin, since that item is not deleted.")
: _contentManager.Restore(contentItem, VersionOptions.Restore(lastVersion.Number, publish: false));
}
private IEnumerable<T> LoadContentItems<T>(IQuery query, QueryHints hints = null) where T : class, IContent
@@ -82,7 +81,7 @@ namespace Orchard.AuditTrail.Services
"select max(ContentItemVersionRecord.Id), ContentItemVersionRecord.ContentItemRecord.Id, max(ContentItemVersionRecord.Number) " +
"from Orchard.ContentManagement.Records.ContentItemVersionRecord ContentItemVersionRecord ";
var filter = contentItemIds != null ? "where ContentItemVersionRecord.ContentItemRecord.Id in (:ids) " : default(string);
var filter = contentItemIds != null ? "where ContentItemVersionRecord.ContentItemRecord.Id in (:ids) " : default;
var group =
"group by ContentItemVersionRecord.ContentItemRecord.Id " +
@@ -99,4 +98,4 @@ namespace Orchard.AuditTrail.Services
return query;
}
}
}
}

View File

@@ -1,25 +1,29 @@
@using Orchard.AuditTrail.ViewModels
@using Orchard.AuditTrail.ViewModels
@using Orchard.ContentManagement
@using Orchard.Core.Common.Models
@using Orchard.Localization.Services
@model RecycleBinViewModel
@{
Style.Include("audittrail-recycle-bin.css");
Script.Require("ShapesBase");
Script.Include(("audittrail-recyclebin.js"));
Script.Include("audittrail-recyclebin.js");
Layout.Title = T("Audit Trail");
var contentItems = Model.ContentItems;
var dateLocalizationServices = WorkContext.Resolve<IDateLocalizationServices>();
}
<div id="recycle-bin">
@Html.ValidationSummary()
@using (Html.BeginFormAntiForgeryPost()) {
@using (Html.BeginFormAntiForgeryPost())
{
<fieldset class="bulk-actions">
<label>@T("Actions:")</label>
<select name="RecycleBinCommand">
<option></option>
<option value="@RecycleBinCommand.Restore" data-unsafe-action="@T("Are you sure you want to restore the selected items?")" @if(Model.RecycleBinCommand == RecycleBinCommand.Restore){<text>selected="selected"</text>}>@T("Restore")</option>
<option value="">@T("Choose action...")</option>
<option value="@RecycleBinCommand.Restore" data-unsafe-action="@T("Are you sure you want to restore the selected items?")" @if (Model.RecycleBinCommand == RecycleBinCommand.Restore) { <text> selected="selected" </text> }>@T("Restore")</option>
@**TODO: Decide wether or not to allow users to permanently delete items. Commented out for now.*@
@*<option value="@RecycleBinCommand.Destroy" data-unsafe-action="@T("WARNING: This will PERMANENTLY delete the selected content items, including related content part records, never to be seen again. Are you sure you want to do this?")" @if (Model.RecycleBinCommand == RecycleBinCommand.Destroy) { <text> selected="selected" </text> }>@T("Remove Permanently ☠")</option>*@
</select>
@@ -28,10 +32,12 @@
<button type="submit" class="filter-apply-button" name="ExecuteActionButton" value="ExecuteActionButton">@T("Execute")</button>
</div>
<section class="recycle-bin-list-section">
@if (!contentItems.Any()) {
@if (!contentItems.Any())
{
<p class="info">@T("There are no records to display.")</p>
}
else {
else
{
<table class="items">
<thead>
<tr>
@@ -44,17 +50,18 @@
<tbody>
@{
var index = 0;
foreach (var contentItem in contentItems) {
foreach (var contentItem in contentItems)
{
var isSelected = Model.SelectedContentItems.Where(x => x.Id == contentItem.Id && x.Selected).Select(x => x.Id).Any();
var commonPart = contentItem.As<CommonPart>();
var removedText = commonPart != null ? dateLocalizationServices.ConvertToLocalizedString(commonPart.VersionModifiedUtc) : T("-").Text;
var contentDisplayTextHtmlString = Html.ItemDisplayText(contentItem);
var contentDisplayText = contentDisplayTextHtmlString != null ? contentDisplayTextHtmlString.ToString() : contentItem.ContentType;
var contentDisplayUrl = Url.Action("Detail", "Content", new {id = contentItem.Id, version = contentItem.Version, area = "Orchard.AuditTrail"});
var contentDisplayUrl = Url.Action("Detail", "Content", new { id = contentItem.Id, version = contentItem.Version, area = "Orchard.AuditTrail" });
<tr>
<td>
<input type="hidden" name="SelectedContentItems[@index].Id" value="@contentItem.Id" />
<input type="checkbox" name="SelectedContentItems[@index].Selected" value="true" @if(isSelected){<text>checked="checked"</text>} />
<input type="checkbox" name="SelectedContentItems[@index].Selected" value="true" @if (isSelected) { <text> checked="checked" </text> } />
</td>
<td class="content-column"><a href="@contentDisplayUrl">@contentDisplayText</a></td>
<td class="content-removed-column">@removedText</td>

View File

@@ -2,8 +2,8 @@ Name: Autoroute
AntiForgery: enabled
Author: The Orchard Team
Website: http://orchardproject.net
Version: 1.10.4
OrchardVersion: 1.10.4
Version: 1.11
OrchardVersion: 1.11
Description: Description for the module
Features:
Orchard.Autoroute:

View File

@@ -29,6 +29,6 @@ using System.Runtime.InteropServices;
//
// You can specify all the values or you can default the Revision and Build Numbers
// by using the '*' as shown below:
[assembly: AssemblyVersion("1.10.4")]
[assembly: AssemblyFileVersion("1.10.4")]
[assembly: AssemblyVersion("1.11")]
[assembly: AssemblyFileVersion("1.11")]

View File

@@ -2,8 +2,8 @@
AntiForgery: enabled
Author: The Orchard Team
Website: http://orchardproject.net
Version: 1.10.4
OrchardVersion: 1.10.4
Version: 1.11
OrchardVersion: 1.11
Description: Provides a set of Orchard service implementations targeting Microsoft Azure services.
Category: Hosting
Features:

View File

@@ -29,6 +29,6 @@ using System.Runtime.InteropServices;
//
// You can specify all the values or you can default the Revision and Build Numbers
// by using the '*' as shown below:
[assembly: AssemblyVersion("1.10.4")]
[assembly: AssemblyFileVersion("1.10.4")]
[assembly: AssemblyVersion("1.11")]
[assembly: AssemblyFileVersion("1.11")]

View File

@@ -2,8 +2,8 @@
AntiForgery: enabled
Author: The Orchard Team
Website: http://orchardproject.net
Version: 1.10.4
OrchardVersion: 1.10.4
Version: 1.11
OrchardVersion: 1.11
Description: The Orchard Blogs module is implementing basic blogging features.
FeatureDescription: A simple web log.
Dependencies: Shapes, Common, Feeds, Navigation, Orchard.Widgets, Orchard.Resources, Orchard.PublishLater, Orchard.Autoroute

View File

@@ -29,6 +29,6 @@ using System.Runtime.InteropServices;
//
// You can specify all the values or you can default the Revision and Build Numbers
// by using the '*' as shown below:
[assembly: AssemblyVersion("1.10.4")]
[assembly: AssemblyFileVersion("1.10.4")]
[assembly: AssemblyVersion("1.11")]
[assembly: AssemblyFileVersion("1.11")]

View File

@@ -2,8 +2,8 @@
AntiForgery: enabled
Author: Sébastien Ros
Website: http://orchardproject.net
Version: 1.10.4
OrchardVersion: 1.10.4
Version: 1.11
OrchardVersion: 1.11
Description: Provides an API to cache business data.
Features:
Orchard.Caching:

View File

@@ -29,6 +29,6 @@ using System.Runtime.InteropServices;
//
// You can specify all the values or you can default the Revision and Build Numbers
// by using the '*' as shown below:
[assembly: AssemblyVersion("1.10.4")]
[assembly: AssemblyFileVersion("1.10.4")]
[assembly: AssemblyVersion("1.11")]
[assembly: AssemblyFileVersion("1.11")]

View File

@@ -32,6 +32,6 @@ using System.Security;
// You can specify all the values or you can default the Revision and Build Numbers
// by using the '*' as shown below:
[assembly: AssemblyVersion("1.10.4")]
[assembly: AssemblyFileVersion("1.10.4")]
[assembly: AssemblyVersion("1.11")]
[assembly: AssemblyFileVersion("1.11")]

View File

@@ -3,7 +3,7 @@ AntiForgery: enabled
Author: The Orchard Team
Website: https://orchardproject.net
Version: 1.0
OrchardVersion: 1.10.4
OrchardVersion: 1.11
Description: Description for the module
Features:
$$ModuleName$$:

View File

@@ -2,8 +2,8 @@
AntiForgery: enabled
Author: The Orchard Team
Website: http://orchardproject.net
Version: 1.10.4
OrchardVersion: 1.10.4
Version: 1.11
OrchardVersion: 1.11
Description: Tools to create Orchard components.
FeatureDescription: Tools to create Orchard components.
Category: Developer

View File

@@ -29,6 +29,6 @@ using System.Runtime.InteropServices;
//
// You can specify all the values or you can default the Revision and Build Numbers
// by using the '*' as shown below:
[assembly: AssemblyVersion("1.10.4")]
[assembly: AssemblyFileVersion("1.10.4")]
[assembly: AssemblyVersion("1.11")]
[assembly: AssemblyFileVersion("1.11")]

View File

@@ -2,8 +2,8 @@
AntiForgery: enabled
Author: The Orchard Team
Website: http://orchardproject.net
Version: 1.10.4
OrchardVersion: 1.10.4
Version: 1.11
OrchardVersion: 1.11
Description: The comments system implemented by this module can be applied to arbitrary Orchard content types, such as blogs and pages. It includes comment validation and spam protection through the Akismet service.
Features:
Orchard.Comments:

View File

@@ -29,5 +29,5 @@ using System.Runtime.InteropServices;
//
// You can specify all the values or you can default the Revision and Build Numbers
// by using the '*' as shown below:
[assembly: AssemblyVersion("1.10.4")]
[assembly: AssemblyFileVersion("1.10.4")]
[assembly: AssemblyVersion("1.11")]
[assembly: AssemblyFileVersion("1.11")]

View File

@@ -2,8 +2,8 @@
AntiForgery: enabled
Author: The Orchard Team
Website: http://orchardproject.net
Version: 1.10.4
OrchardVersion: 1.10.4
Version: 1.11
OrchardVersion: 1.11
Description: Provides a rules API that evaluate to true or false.
Features:
Orchard.Conditions:

View File

@@ -30,6 +30,6 @@ using System.Runtime.InteropServices;
// You can specify all the values or you can default the Revision and Build Numbers
// by using the '*' as shown below:
[assembly: AssemblyVersion("1.10.4")]
[assembly: AssemblyFileVersion("1.10.4")]
[assembly: AssemblyVersion("1.11")]
[assembly: AssemblyFileVersion("1.11")]

View File

@@ -2,8 +2,8 @@ Name: Orchard.ContentPermissions
AntiForgery: enabled
Author: Chris Pyle, Sébastien Ros
Website: http://orchardproject.net
Version: 1.10.4
OrchardVersion: 1.10.4
Version: 1.11
OrchardVersion: 1.11
Description: Allows item-level front end view permissions.
Features:
Orchard.ContentPermissions:

View File

@@ -29,5 +29,5 @@ using System.Runtime.InteropServices;
//
// You can specify all the values or you can default the Revision and Build Numbers
// by using the '*' as shown below:
[assembly: AssemblyVersion("1.10.4")]
[assembly: AssemblyFileVersion("1.10.4")]
[assembly: AssemblyVersion("1.11")]
[assembly: AssemblyFileVersion("1.11")]

View File

@@ -2,8 +2,8 @@ Name: Orchard.ContentPicker
AntiForgery: enabled
Author: The Orchard Team
Website: http://www.orchardproject.net
Version: 1.10.4
OrchardVersion: 1.10.4
Version: 1.11
OrchardVersion: 1.11
Description: UI for selecting Content Items.
Features:
Orchard.ContentPicker:

View File

@@ -29,6 +29,6 @@ using System.Runtime.InteropServices;
//
// You can specify all the values or you can default the Revision and Build Numbers
// by using the '*' as shown below:
[assembly: AssemblyVersion("1.10.4")]
[assembly: AssemblyFileVersion("1.10.4")]
[assembly: AssemblyVersion("1.11")]
[assembly: AssemblyFileVersion("1.11")]

View File

@@ -2,8 +2,8 @@
AntiForgery: enabled
Author: The Orchard Team
Website: http://orchardproject.net
Version: 1.10.4
OrchardVersion: 1.10.4
Version: 1.11
OrchardVersion: 1.11
Description: ContentTypes modules enables the creation and alteration of content types not based on code.
Dependencies: Contents
Category: Content

View File

@@ -29,6 +29,6 @@ using System.Runtime.InteropServices;
//
// You can specify all the values or you can default the Revision and Build Numbers
// by using the '*' as shown below:
[assembly: AssemblyVersion("1.10.4")]
[assembly: AssemblyFileVersion("1.10.4")]
[assembly: AssemblyVersion("1.11")]
[assembly: AssemblyFileVersion("1.11")]

View File

@@ -2,8 +2,8 @@ Name: Custom Forms
AntiForgery: enabled
Author: The Orchard Team
Website: http://www.orchardproject.net
Version: 1.10.4
OrchardVersion: 1.10.4
Version: 1.11
OrchardVersion: 1.11
LifecycleStatus: Deprecated
Description: Create custom forms like contact forms or content contributions.
Features:

View File

@@ -29,5 +29,5 @@ using System.Runtime.InteropServices;
//
// You can specify all the values or you can default the Revision and Build Numbers
// by using the '*' as shown below:
[assembly: AssemblyVersion("1.10.4")]
[assembly: AssemblyFileVersion("1.10.4")]
[assembly: AssemblyVersion("1.11")]
[assembly: AssemblyFileVersion("1.11")]

View File

@@ -2,8 +2,8 @@
AntiForgery: enabled
Author: The Orchard Team
Website: http://orchardproject.net
Version: 1.10.4
OrchardVersion: 1.10.4
Version: 1.11
OrchardVersion: 1.11
Description: The Dashboards module enables administrators to customize the dashboard screen of the administration UI of the application.
Features:
Orchard.Dashboards:

View File

@@ -30,6 +30,6 @@ using System.Runtime.InteropServices;
// You can specify all the values or you can default the Revision and Build Numbers
// by using the '*' as shown below:
[assembly: AssemblyVersion("1.10.4")]
[assembly: AssemblyFileVersion("1.10.4")]
[assembly: AssemblyVersion("1.11")]
[assembly: AssemblyFileVersion("1.11")]

View File

@@ -2,8 +2,8 @@
AntiForgery: enabled
Author: The Orchard Team
Website: http://orchardproject.net
Version: 1.10.4
OrchardVersion: 1.10.4
Version: 1.11
OrchardVersion: 1.11
Description: Contains designer tools to ease the Themes development process
FeatureName: Shape Tracing
Category: Designer

View File

@@ -29,5 +29,5 @@ using System.Runtime.InteropServices;
//
// You can specify all the values or you can default the Revision and Build Numbers
// by using the '*' as shown below:
[assembly: AssemblyVersion("1.10.4")]
[assembly: AssemblyFileVersion("1.10.4")]
[assembly: AssemblyVersion("1.11")]
[assembly: AssemblyFileVersion("1.11")]

View File

@@ -2,8 +2,8 @@ Name: Dynamic Forms
AntiForgery: enabled
Author: The Orchard Team
Website: http://www.orchardproject.net/
Version: 1.10.4
OrchardVersion: 1.10.4
Version: 1.11
OrchardVersion: 1.11
Description: Create custom forms like contact forms using layouts.
Features:
Orchard.DynamicForms:

View File

@@ -30,6 +30,6 @@ using System.Runtime.InteropServices;
// You can specify all the values or you can default the Revision and Build Numbers
// by using the '*' as shown below:
[assembly: AssemblyVersion("1.10.4")]
[assembly: AssemblyFileVersion("1.10.4")]
[assembly: AssemblyVersion("1.11")]
[assembly: AssemblyFileVersion("1.11")]

View File

@@ -2,8 +2,8 @@
AntiForgery: enabled
Author: The Orchard Team
Website: http://orchardproject.net
Version: 1.10.4
OrchardVersion: 1.10.4
Version: 1.11
OrchardVersion: 1.11
Description: The Email Messaging module adds Email sending functionalities.
Features:
Orchard.Email:

View File

@@ -29,6 +29,6 @@ using System.Runtime.InteropServices;
//
// You can specify all the values or you can default the Revision and Build Numbers
// by using the '*' as shown below:
[assembly: AssemblyVersion("1.10.4")]
[assembly: AssemblyFileVersion("1.10.4")]
[assembly: AssemblyVersion("1.11")]
[assembly: AssemblyFileVersion("1.11")]

View File

@@ -2,8 +2,8 @@ Name: Fields
AntiForgery: enabled
Author: Antoine Griffard, Sébastien Ros
Website: http://www.orchardproject.net
Version: 1.10.4
OrchardVersion: 1.10.4
Version: 1.11
OrchardVersion: 1.11
Description: Some content fields
Features:
Orchard.Fields:

View File

@@ -29,5 +29,5 @@ using System.Runtime.InteropServices;
//
// You can specify all the values or you can default the Revision and Build Numbers
// by using the '*' as shown below:
[assembly: AssemblyVersion("1.10.4")]
[assembly: AssemblyFileVersion("1.10.4")]
[assembly: AssemblyVersion("1.11")]
[assembly: AssemblyFileVersion("1.11")]

View File

@@ -2,8 +2,8 @@ Name: Forms
AntiForgery: enabled
Author: The Orchard Team
Website: http://www.orchardproject.net
Version: 1.10.4
OrchardVersion: 1.10.4
Version: 1.11
OrchardVersion: 1.11
Description: Provides a system to publish and alter html forms.
Features:
Orchard.Forms:

View File

@@ -29,5 +29,5 @@ using System.Runtime.InteropServices;
//
// You can specify all the values or you can default the Revision and Build Numbers
// by using the '*' as shown below:
[assembly: AssemblyVersion("1.10.4")]
[assembly: AssemblyFileVersion("1.10.4")]
[assembly: AssemblyVersion("1.11")]
[assembly: AssemblyFileVersion("1.11")]

View File

@@ -2,8 +2,8 @@
AntiForgery: enabled
Author: The Orchard Team
Website: http://orchardproject.net
Version: 1.10.4
OrchardVersion: 1.10.4
Version: 1.11
OrchardVersion: 1.11
Description: Adds a client side image editor for Media Library
Features:
Orchard.ImageEditor:

View File

@@ -29,6 +29,6 @@ using System.Runtime.InteropServices;
//
// You can specify all the values or you can default the Revision and Build Numbers
// by using the '*' as shown below:
[assembly: AssemblyVersion("1.10.4")]
[assembly: AssemblyFileVersion("1.10.4")]
[assembly: AssemblyVersion("1.11")]
[assembly: AssemblyFileVersion("1.11")]

View File

@@ -3,8 +3,8 @@ Path: ImportExport
AntiForgery: enabled
Author: The Orchard Team
Website: http://orchardproject.net
Version: 1.10.4
OrchardVersion: 1.10.4
Version: 1.11
OrchardVersion: 1.11
Description: Provides content item data import and export capability.
Features:
Orchard.ImportExport:

View File

@@ -29,6 +29,6 @@ using System.Runtime.InteropServices;
//
// You can specify all the values or you can default the Revision and Build Numbers
// by using the '*' as shown below:
[assembly: AssemblyVersion("1.10.4")]
[assembly: AssemblyFileVersion("1.10.4")]
[assembly: AssemblyVersion("1.11")]
[assembly: AssemblyFileVersion("1.11")]

View File

@@ -2,8 +2,8 @@
AntiForgery: enabled
Author: The Orchard Team
Website: http://orchardproject.net
Version: 1.10.4
OrchardVersion: 1.10.4
Version: 1.11
OrchardVersion: 1.11
Description: The Indexing module enables the site to be indexed. The index generated by this module can then be used by the search module to provide an integrated full-text search experience to a web site.
FeatureDescription: Indexing infrastructure. Requires an index implementation like the Lucene module.
Category: Search

View File

@@ -29,6 +29,6 @@ using System.Runtime.InteropServices;
//
// You can specify all the values or you can default the Revision and Build Numbers
// by using the '*' as shown below:
[assembly: AssemblyVersion("1.10.4")]
[assembly: AssemblyFileVersion("1.10.4")]
[assembly: AssemblyVersion("1.11")]
[assembly: AssemblyFileVersion("1.11")]

View File

@@ -2,8 +2,8 @@
AntiForgery: enabled
Author: The Orchard Team
Website: http://orchardproject.net
Version: 1.10.4
OrchardVersion: 1.10.4
Version: 1.11
OrchardVersion: 1.11
Description: This module provides a jobs queue to process jobs asynchronously.
Features:
Orchard.JobsQueue:

View File

@@ -30,6 +30,6 @@ using System.Runtime.InteropServices;
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
[assembly: AssemblyVersion("1.10.4")]
[assembly: AssemblyFileVersion("1.10.4")]
[assembly: AssemblyVersion("1.11")]
[assembly: AssemblyFileVersion("1.11")]

View File

@@ -2,8 +2,8 @@
AntiForgery: enabled
Author: The Orchard Team
Website: http://orchardproject.net
Version: 1.10.4
OrchardVersion: 1.10.4
Version: 1.11
OrchardVersion: 1.11
Category: Layout
Description: Provides tools to create layouts.
Features:

View File

@@ -30,6 +30,6 @@ using System.Runtime.InteropServices;
// You can specify all the values or you can default the Revision and Build Numbers
// by using the '*' as shown below:
[assembly: AssemblyVersion("1.10.4")]
[assembly: AssemblyFileVersion("1.10.4")]
[assembly: AssemblyVersion("1.11")]
[assembly: AssemblyFileVersion("1.11")]

View File

@@ -2,8 +2,8 @@
AntiForgery: enabled
Author: The Orchard Team
Website: http://orchardproject.net
Version: 1.10.4
OrchardVersion: 1.10.4
Version: 1.11
OrchardVersion: 1.11
Description: Introduces a preconfigured container-enabled content type.
FeatureDescription: A basic container-enabled content type.
Dependencies: Contents, Containers, Navigation, Orchard.Autoroute, Orchard.ContentPicker

View File

@@ -29,6 +29,6 @@ using System.Runtime.InteropServices;
//
// You can specify all the values or you can default the Revision and Build Numbers
// by using the '*' as shown below:
[assembly: AssemblyVersion("1.10.4")]
[assembly: AssemblyFileVersion("1.10.4")]
[assembly: AssemblyVersion("1.11")]
[assembly: AssemblyFileVersion("1.11")]

View File

@@ -2,8 +2,8 @@
AntiForgery: enabled
Author: The Orchard Team
Website: http://orchardproject.net
Version: 1.10.4
OrchardVersion: 1.10.4
Version: 1.11
OrchardVersion: 1.11
Description: The localization module enables the localization of content items.
Features:
Orchard.Localization:

View File

@@ -30,6 +30,6 @@ using System.Runtime.InteropServices;
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
[assembly: AssemblyVersion("1.10.4")]
[assembly: AssemblyFileVersion("1.10.4")]
[assembly: AssemblyVersion("1.11")]
[assembly: AssemblyFileVersion("1.11")]

View File

@@ -3,7 +3,7 @@ AntiForgery: enabled
Author: The Orchard Team
Website: http://orchardproject.net
Version: 1.8
OrchardVersion: 1.10.4
OrchardVersion: 1.11
LifecycleStatus: Deprecated
Description: The media module offer basic media management features. It currently only supports image files. Storage goes into the current Orchard file system, which can be the server's physical file system or Azure blob storage.
FeatureDescription: File system based media upload, storage and management.

View File

@@ -29,6 +29,6 @@ using System.Runtime.InteropServices;
//
// You can specify all the values or you can default the Revision and Build Numbers
// by using the '*' as shown below:
[assembly: AssemblyVersion("1.10.4")]
[assembly: AssemblyFileVersion("1.10.4")]
[assembly: AssemblyVersion("1.11")]
[assembly: AssemblyFileVersion("1.11")]

View File

@@ -2,8 +2,8 @@
AntiForgery: enabled
Author: The Orchard Team
Website: http://orchardproject.net
Version: 1.10.4
OrchardVersion: 1.10.4
Version: 1.11
OrchardVersion: 1.11
Description: Provides enhanced Media management tools.
Features:
Orchard.MediaLibrary:

View File

@@ -29,6 +29,6 @@ using System.Runtime.InteropServices;
//
// You can specify all the values or you can default the Revision and Build Numbers
// by using the '*' as shown below:
[assembly: AssemblyVersion("1.10.4")]
[assembly: AssemblyFileVersion("1.10.4")]
[assembly: AssemblyVersion("1.11")]
[assembly: AssemblyFileVersion("1.11")]

View File

@@ -4,7 +4,7 @@ AntiForgery: enabled
Author: The Orchard Team
Website: http://orchardproject.net
Version: 1.8
OrchardVersion: 1.10.4
OrchardVersion: 1.11
LifecycleStatus: Deprecated
Description: UI for browsing for, uploading, or selecting an image for an HTML editor.
Dependencies: Orchard.Media, Orchard.Resources

View File

@@ -29,6 +29,6 @@ using System.Runtime.InteropServices;
//
// You can specify all the values or you can default the Revision and Build Numbers
// by using the '*' as shown below:
[assembly: AssemblyVersion("1.10.4")]
[assembly: AssemblyFileVersion("1.10.4")]
[assembly: AssemblyVersion("1.11")]
[assembly: AssemblyFileVersion("1.11")]

View File

@@ -2,8 +2,8 @@
AntiForgery: enabled
Author: John Murdock, Sébastien Ros
Website: http://orchardproject.net
Version: 1.10.4
OrchardVersion: 1.10.4
Version: 1.11
OrchardVersion: 1.11
Description: Module for processing Media e.g. image resizing
Category: Media
Dependencies: Orchard.Forms

View File

@@ -29,6 +29,6 @@ using System.Runtime.InteropServices;
//
// You can specify all the values or you can default the Revision and Build Numbers
// by using the '*' as shown below:
[assembly: AssemblyVersion("1.10.4")]
[assembly: AssemblyFileVersion("1.10.4")]
[assembly: AssemblyVersion("1.11")]
[assembly: AssemblyFileVersion("1.11")]

View File

@@ -2,8 +2,8 @@
AntiForgery: enabled
Author: The Orchard Team
Website: http://orchardproject.net
Version: 1.10.4
OrchardVersion: 1.10.4
Version: 1.11
OrchardVersion: 1.11
Description: Provides communication APIs for server farms.
Features:
Orchard.MessageBus:

View File

@@ -30,6 +30,6 @@ using System.Runtime.InteropServices;
// You can specify all the values or you can default the Revision and Build Numbers
// by using the '*' as shown below:
[assembly: AssemblyVersion("1.10.4")]
[assembly: AssemblyFileVersion("1.10.4")]
[assembly: AssemblyVersion("1.11")]
[assembly: AssemblyFileVersion("1.11")]

View File

@@ -2,8 +2,8 @@
AntiForgery: enabled
Author: The Orchard Team
Website: http://orchardproject.net
Version: 1.10.4
OrchardVersion: 1.10.4
Version: 1.11
OrchardVersion: 1.11
Description: Data migration commands.
FeatureDescription: Data migration commands.
Category: Developer

View File

@@ -29,6 +29,6 @@ using System.Runtime.InteropServices;
//
// You can specify all the values or you can default the Revision and Build Numbers
// by using the '*' as shown below:
[assembly: AssemblyVersion("1.10.4")]
[assembly: AssemblyFileVersion("1.10.4")]
[assembly: AssemblyVersion("1.11")]
[assembly: AssemblyFileVersion("1.11")]

View File

@@ -2,8 +2,8 @@
AntiForgery: enabled
Author: The Orchard Team
Website: http://orchardproject.net
Version: 1.10.4
OrchardVersion: 1.10.4
Version: 1.11
OrchardVersion: 1.11
Description: The Modules module enables the administrator of the site to manage the installed modules as well as activate and de-activate features.
FeatureDescription: Standard module and feature management.
Category: Core

View File

@@ -29,6 +29,6 @@ using System.Runtime.InteropServices;
//
// You can specify all the values or you can default the Revision and Build Numbers
// by using the '*' as shown below:
[assembly: AssemblyVersion("1.10.4")]
[assembly: AssemblyFileVersion("1.10.4")]
[assembly: AssemblyVersion("1.11")]
[assembly: AssemblyFileVersion("1.11")]

Some files were not shown because too many files have changed in this diff Show More