--HG--
branch : dev
This commit is contained in:
Sebastien Ros
2010-10-07 15:49:59 -07:00
56 changed files with 543 additions and 543 deletions

View File

@@ -228,10 +228,10 @@ namespace Orchard.Tests.DataMigration {
Init(new[] {typeof (DataMigrationEmpty)});
_folders.Manifests.Add("Module2", @"
name: Module2
version: 0.1
orchardversion: 1
features:
Name: Module2
Version: 0.1
OrchardVersion: 1
Features:
Feature1:
Description: Feature
");
@@ -245,10 +245,10 @@ features:
Init(new[] { typeof(DataMigration11) });
_folders.Manifests.Add("Module1", @"
name: Module1
version: 0.1
orchardversion: 1
features:
Name: Module1
Version: 0.1
OrchardVersion: 1
Features:
Feature1:
Description: Feature
");
@@ -262,10 +262,10 @@ features:
Init(new[] { typeof(DataMigration11Create) });
_folders.Manifests.Add("Module1", @"
name: Module1
version: 0.1
orchardversion: 1
features:
Name: Module1
Version: 0.1
OrchardVersion: 1
Features:
Feature1:
Description: Feature
");
@@ -281,10 +281,10 @@ features:
Init(new[] {typeof (DataMigrationCreateCanBeFollowedByUpdates)});
_folders.Manifests.Add("Module1", @"
name: Module1
version: 0.1
orchardversion: 1
features:
Name: Module1
Version: 0.1
OrchardVersion: 1
Features:
Feature1:
Description: Feature
");
@@ -299,10 +299,10 @@ features:
Init(new[] { typeof(DataMigrationSameMigrationClassCanEvolve) });
_folders.Manifests.Add("Module1", @"
name: Module1
version: 0.1
orchardversion: 1
features:
Name: Module1
Version: 0.1
OrchardVersion: 1
Features:
Feature1:
Description: Feature
");
@@ -322,20 +322,20 @@ features:
Init(new[] { typeof(DataMigrationDependenciesModule1), typeof(DataMigrationDependenciesModule2) });
_folders.Manifests.Add("Module1", @"
name: Module1
version: 0.1
orchardversion: 1
features:
Name: Module1
Version: 0.1
OrchardVersion: 1
Features:
Feature1:
Description: Feature
Dependencies: Feature2
");
_folders.Manifests.Add("Module2", @"
name: Module2
version: 0.1
orchardversion: 1
features:
Name: Module2
Version: 0.1
OrchardVersion: 1
Features:
Feature2:
Description: Feature
");
@@ -351,10 +351,10 @@ features:
Init(new[] { typeof(DataMigrationWithSchemaBuilder) });
_folders.Manifests.Add("Module1", @"
name: Module1
version: 0.1
orchardversion: 1
features:
Name: Module1
Version: 0.1
OrchardVersion: 1
Features:
Feature1:
Description: Feature
");
@@ -369,10 +369,10 @@ features:
Init(new[] { typeof(DataMigrationFeatureNeedUpdate1), typeof(DataMigrationFeatureNeedUpdate2), typeof(DataMigrationFeatureNeedUpdate3) });
_folders.Manifests.Add("Module1", @"
name: Module1
version: 0.1
orchardversion: 1
features:
Name: Module1
Version: 0.1
OrchardVersion: 1
Features:
Feature1:
Description: Feature
Feature2:
@@ -418,10 +418,10 @@ features:
Init(new[] { typeof(DataMigrationSimpleBuilder) });
_folders.Manifests.Add("Module1", @"
name: Module1
version: 0.1
orchardversion: 1
features:
Name: Module1
Version: 0.1
OrchardVersion: 1
Features:
Feature1:
Description: Feature
");

View File

@@ -88,10 +88,10 @@ namespace Orchard.Tests.DataMigration {
_generator = _container.Resolve<ISchemaCommandGenerator>();
_folders.Manifests.Add("Feature1", @"
name: Module1
version: 0.1
orchardversion: 1
features:
Name: Module1
Version: 0.1
OrchardVersion: 1
Features:
Feature1:
Description: Feature
");

View File

@@ -121,10 +121,10 @@ namespace Orchard.Tests.Environment.Extensions {
[Test]
public void AvailableExtensionsShouldFollowCatalogLocations() {
_folders.Manifests.Add("foo", "name: Foo");
_folders.Manifests.Add("bar", "name: Bar");
_folders.Manifests.Add("frap", "name: Frap");
_folders.Manifests.Add("quad", "name: Quad");
_folders.Manifests.Add("foo", "Name: Foo");
_folders.Manifests.Add("bar", "Name: Bar");
_folders.Manifests.Add("frap", "Name: Frap");
_folders.Manifests.Add("quad", "Name: Quad");
var available = _manager.AvailableExtensions();
@@ -136,8 +136,8 @@ namespace Orchard.Tests.Environment.Extensions {
public void ExtensionDescriptorsShouldHaveNameAndVersion() {
_folders.Manifests.Add("Sample", @"
name: Sample Extension
version: 2.x
Name: Sample Extension
Version: 2.x
");
var descriptor = _manager.AvailableExtensions().Single();
@@ -150,10 +150,10 @@ version: 2.x
public void ExtensionDescriptorsShouldBeParsedForMinimalModuleTxt() {
_folders.Manifests.Add("SuperWiki", @"
name: SuperWiki
version: 1.0.3
orchardversion: 1
features:
Name: SuperWiki
Version: 1.0.3
OrchardVersion: 1
Features:
SuperWiki:
Description: My super wiki module for Orchard.
");
@@ -172,12 +172,12 @@ features:
public void ExtensionDescriptorsShouldBeParsedForCompleteModuleTxt() {
_folders.Manifests.Add("MyCompany.AnotherWiki", @"
name: AnotherWiki
author: Coder Notaprogrammer
website: http://anotherwiki.codeplex.com
version: 1.2.3
orchardversion: 1
features:
Name: AnotherWiki
Author: Coder Notaprogrammer
Website: http://anotherwiki.codeplex.com
Version: 1.2.3
OrchardVersion: 1
Features:
AnotherWiki:
Description: My super wiki module for Orchard.
Dependencies: Versioning, Search
@@ -255,10 +255,10 @@ features:
var extensionFolder = new StubFolders("Module");
extensionFolder.Manifests.Add("TestModule", @"
name: TestModule
version: 1.0.3
orchardversion: 1
features:
Name: TestModule
Version: 1.0.3
OrchardVersion: 1
Features:
TestModule:
Description: My test module for Orchard.
TestFeature:
@@ -281,10 +281,10 @@ features:
var extensionFolder = new StubFolders("Module");
extensionFolder.Manifests.Add("TestModule", @"
name: TestModule
version: 1.0.3
orchardversion: 1
features:
Name: TestModule
Version: 1.0.3
OrchardVersion: 1
Features:
TestModule:
Description: My test module for Orchard.
TestFeature:
@@ -316,10 +316,10 @@ features:
var extensionFolder = new StubFolders("Module");
extensionFolder.Manifests.Add("TestModule", @"
name: TestModule
version: 1.0.3
orchardversion: 1
features:
Name: TestModule
Version: 1.0.3
OrchardVersion: 1
Features:
TestModule:
Description: My test module for Orchard.
TestFeature:
@@ -346,10 +346,10 @@ features:
var extensionFolder = new StubFolders("Module");
extensionFolder.Manifests.Add("TestModule", @"
name: TestModule
version: 1.0.3
orchardversion: 1
features:
Name: TestModule
Version: 1.0.3
OrchardVersion: 1
Features:
TestModule:
Description: My test module for Orchard.
TestFeature:
@@ -374,10 +374,10 @@ features:
var extensionFolder = new StubFolders("Module");
extensionFolder.Manifests.Add("TestModule", @"
name: TestModule
version: 1.0.3
orchardversion: 1
features:
Name: TestModule
Version: 1.0.3
OrchardVersion: 1
Features:
TestModule:
Description: My test module for Orchard.
TestFeature:
@@ -403,9 +403,9 @@ features:
var extensionFolder = new StubFolders("Module");
extensionFolder.Manifests.Add("Minimalistic", @"
name: Minimalistic
version: 1.0.3
orchardversion: 1
Name: Minimalistic
Version: 1.0.3
OrchardVersion: 1
");
IExtensionManager extensionManager = new ExtensionManager(new[] { extensionFolder }, new[] { extensionLoader });
@@ -422,9 +422,9 @@ orchardversion: 1
var extensionFolder = new StubFolders("Theme");
extensionFolder.Manifests.Add("Minimalistic", @"
name: Minimalistic
version: 1.0.3
orchardversion: 1
Name: Minimalistic
Version: 1.0.3
OrchardVersion: 1
");
IExtensionManager extensionManager = new ExtensionManager(new[] { extensionFolder }, new[] { extensionLoader });

View File

@@ -124,10 +124,10 @@ namespace Orchard.Tests.Environment.Extensions {
[Test]
public void AvailableExtensionsShouldFollowCatalogLocations() {
_folders.Manifests.Add("foo", "name: Foo");
_folders.Manifests.Add("bar", "name: Bar");
_folders.Manifests.Add("frap", "name: Frap");
_folders.Manifests.Add("quad", "name: Quad");
_folders.Manifests.Add("foo", "Name: Foo");
_folders.Manifests.Add("bar", "Name: Bar");
_folders.Manifests.Add("frap", "Name: Frap");
_folders.Manifests.Add("quad", "Name: Quad");
var available = _manager.AvailableExtensions();
@@ -139,8 +139,8 @@ namespace Orchard.Tests.Environment.Extensions {
public void ExtensionDescriptorsShouldHaveNameAndVersion() {
_folders.Manifests.Add("Sample", @"
name: Sample Extension
version: 2.x
Name: Sample Extension
Version: 2.x
");
var descriptor = _manager.AvailableExtensions().Single();
@@ -153,10 +153,10 @@ version: 2.x
public void ExtensionDescriptorsShouldBeParsedForMinimalModuleTxt() {
_folders.Manifests.Add("SuperWiki", @"
name: SuperWiki
version: 1.0.3
orchardversion: 1
features:
Name: SuperWiki
Version: 1.0.3
OrchardVersion: 1
Features:
SuperWiki:
Description: My super wiki module for Orchard.
");
@@ -175,12 +175,12 @@ features:
public void ExtensionDescriptorsShouldBeParsedForCompleteModuleTxt() {
_folders.Manifests.Add("MyCompany.AnotherWiki", @"
name: AnotherWiki
author: Coder Notaprogrammer
website: http://anotherwiki.codeplex.com
version: 1.2.3
orchardversion: 1
features:
Name: AnotherWiki
Author: Coder Notaprogrammer
Website: http://anotherwiki.codeplex.com
Version: 1.2.3
OrchardVersion: 1
Features:
AnotherWiki:
Description: My super wiki module for Orchard.
Dependencies: Versioning, Search
@@ -258,10 +258,10 @@ features:
var extensionFolder = new StubFolders();
extensionFolder.Manifests.Add("TestModule", @"
name: TestModule
version: 1.0.3
orchardversion: 1
features:
Name: TestModule
Version: 1.0.3
OrchardVersion: 1
Features:
TestModule:
Description: My test module for Orchard.
TestFeature:
@@ -284,10 +284,10 @@ features:
var extensionFolder = new StubFolders();
extensionFolder.Manifests.Add("TestModule", @"
name: TestModule
version: 1.0.3
orchardversion: 1
features:
Name: TestModule
Version: 1.0.3
OrchardVersion: 1
Features:
TestModule:
Description: My test module for Orchard.
TestFeature:
@@ -319,10 +319,10 @@ features:
var extensionFolder = new StubFolders();
extensionFolder.Manifests.Add("TestModule", @"
name: TestModule
version: 1.0.3
orchardversion: 1
features:
Name: TestModule
Version: 1.0.3
OrchardVersion: 1
Features:
TestModule:
Description: My test module for Orchard.
TestFeature:
@@ -349,10 +349,10 @@ features:
var extensionFolder = new StubFolders();
extensionFolder.Manifests.Add("TestModule", @"
name: TestModule
version: 1.0.3
orchardversion: 1
features:
Name: TestModule
Version: 1.0.3
OrchardVersion: 1
Features:
TestModule:
Description: My test module for Orchard.
TestFeature:
@@ -377,10 +377,10 @@ features:
var extensionFolder = new StubFolders();
extensionFolder.Manifests.Add("TestModule", @"
name: TestModule
version: 1.0.3
orchardversion: 1
features:
Name: TestModule
Version: 1.0.3
OrchardVersion: 1
Features:
TestModule:
Description: My test module for Orchard.
TestFeature:
@@ -406,9 +406,9 @@ features:
var extensionFolder = new StubFolders();
extensionFolder.Manifests.Add("Minimalistic", @"
name: Minimalistic
version: 1.0.3
orchardversion: 1
Name: Minimalistic
Version: 1.0.3
OrchardVersion: 1
");
IExtensionManager extensionManager = new ExtensionManager(new[] { extensionFolder }, new[] { extensionLoader });
@@ -425,24 +425,24 @@ orchardversion: 1
var extensionFolder = new StubFolders();
extensionFolder.Manifests.Add("Alpha", @"
name: Alpha
version: 1.0.3
orchardversion: 1
features:
Name: Alpha
Version: 1.0.3
OrchardVersion: 1
Features:
Alpha:
Dependencies: Gamma
");
extensionFolder.Manifests.Add("Beta", @"
name: Beta
version: 1.0.3
orchardversion: 1
Name: Beta
Version: 1.0.3
OrchardVersion: 1
");
extensionFolder.Manifests.Add("Gamma", @"
name: Gamma
version: 1.0.3
orchardversion: 1
features:
Name: Gamma
Version: 1.0.3
OrchardVersion: 1
Features:
Gamma:
Dependencies: Beta
");
@@ -459,32 +459,32 @@ features:
var themeExtensionFolder = new StubFolders("Theme");
moduleExtensionFolder.Manifests.Add("Alpha", @"
name: Alpha
version: 1.0.3
orchardversion: 1
features:
Name: Alpha
Version: 1.0.3
OrchardVersion: 1
Features:
Alpha:
Dependencies: Gamma
");
moduleExtensionFolder.Manifests.Add("Beta", @"
name: Beta
version: 1.0.3
orchardversion: 1
Name: Beta
Version: 1.0.3
OrchardVersion: 1
");
moduleExtensionFolder.Manifests.Add("Gamma", @"
name: Gamma
version: 1.0.3
orchardversion: 1
features:
Name: Gamma
Version: 1.0.3
OrchardVersion: 1
Features:
Gamma:
Dependencies: Beta
");
moduleExtensionFolder.Manifests.Add("Classic", @"
name: Classic
version: 1.0.3
orchardversion: 1
Name: Classic
Version: 1.0.3
OrchardVersion: 1
");
IExtensionManager extensionManager = new ExtensionManager(new[] { moduleExtensionFolder, themeExtensionFolder }, new[] { extensionLoader });
@@ -499,33 +499,33 @@ orchardversion: 1
var themeExtensionFolder = new StubFolders("Theme");
moduleExtensionFolder.Manifests.Add("Alpha", @"
name: Alpha
version: 1.0.3
orchardversion: 1
features:
Name: Alpha
Version: 1.0.3
OrchardVersion: 1
Features:
Alpha:
Dependencies: Gamma
");
moduleExtensionFolder.Manifests.Add("Beta", @"
name: Beta
version: 1.0.3
orchardversion: 1
Name: Beta
Version: 1.0.3
OrchardVersion: 1
");
moduleExtensionFolder.Manifests.Add("Gamma", @"
name: Gamma
version: 1.0.3
orchardversion: 1
features:
Name: Gamma
Version: 1.0.3
OrchardVersion: 1
Features:
Gamma:
Dependencies: Beta
");
moduleExtensionFolder.Manifests.Add("Classic", @"
name: Classic
version: 1.0.3
orchardversion: 1
features:
Name: Classic
Version: 1.0.3
OrchardVersion: 1
Features:
Classic:
Dependencies: Alpha
");

View File

@@ -1,8 +1,8 @@
name: Le plug-in français
author: Bertrand Le Roy
description:
Name: Le plug-in français
Author: Bertrand Le Roy
Description:
This plug-in replaces
'the' with 'le'
version: 0.5.0
tags: plug-in, français, the, le
Version: 0.5.0
Tags: plug-in, français, the, le
homepage: http://weblogs.asp.net/bleroy

View File

@@ -1 +1 @@
name: This is another test.txt
Name: This is another test.txt

View File

@@ -1,11 +1,11 @@
Name: Common
antiforgery: enabled
author: The Orchard Team
website: http://orchardproject.net
version: 0.5.0
orchardversion: 0.5.0
description: The common module introduces content parts that are going to be used by most content types (common, body and routable).
features:
AntiForgery: enabled
Author: The Orchard Team
Website: http://orchardproject.net
Version: 0.5.0
OrchardVersion: 0.5.0
Description: The common module introduces content parts that are going to be used by most content types (common, body and routable).
Features:
Common:
Description: Core content parts.
Dependencies: Settings

View File

@@ -1,11 +1,11 @@
Name: Contents
antiforgery: enabled
author: The Orchard Team
website: http://orchardproject.net
version: 0.5.0
orchardversion: 0.5.0
description: The contents module enables the creation of custom content types.
features:
AntiForgery: enabled
Author: The Orchard Team
Website: http://orchardproject.net
Version: 0.5.0
OrchardVersion: 0.5.0
Description: The contents module enables the creation of custom content types.
Features:
Contents:
Description: Default custom content type definition, creation and management.
Category: Core

View File

@@ -1,11 +1,11 @@
Name: ContentsLocation
antiforgery: enabled
author: The Orchard Team
website: http://orchardproject.net
version: 0.5.0
orchardversion: 0.5.0
description: The "Contents Location" module introduces settings for part and field to fine tune the location of contents.
features:
AntiForgery: enabled
Author: The Orchard Team
Website: http://orchardproject.net
Version: 0.5.0
OrchardVersion: 0.5.0
Description: The "Contents Location" module introduces settings for part and field to fine tune the location of contents.
Features:
ContentsLocation:
Description: Contents location settings management
Dependencies: Settings

View File

@@ -1,11 +1,11 @@
name: Dashboard
antiforgery: enabled
author: The Orchard Team
website: http://orchardproject.net
version: 0.5.0
orchardversion: 0.5.0
description: The dashboard module is providing the dashboard screen of the admininstration UI of the application.
features:
Name: Dashboard
AntiForgery: enabled
Author: The Orchard Team
Website: http://orchardproject.net
Version: 0.5.0
OrchardVersion: 0.5.0
Description: The dashboard module is providing the dashboard screen of the admininstration UI of the application.
Features:
Dashboard:
Description: Standard admin dashboard.
Category: Core

View File

@@ -1,11 +1,11 @@
name: Feeds
antiforgery: enabled
author: The Orchard Team
website: http://orchardproject.net
version: 0.5.0
orchardversion: 0.5.0
description: The Feeds module is providing RSS feeds to content items.
features:
Name: Feeds
AntiForgery: enabled
Author: The Orchard Team
Website: http://orchardproject.net
Version: 0.5.0
OrchardVersion: 0.5.0
Description: The Feeds module is providing RSS feeds to content items.
Features:
Feeds:
Description: RSS feeds for content items.
Category: Syndication

View File

@@ -1,11 +1,11 @@
name: HomePage
antiforgery: enabled
author: The Orchard Team
website: http://orchardproject.net
version: 0.5.0
orchardversion: 0.5.0
description: The HomePage module enables the promotion of a content item or container to be the home page of the site.
features:
Name: HomePage
AntiForgery: enabled
Author: The Orchard Team
Website: http://orchardproject.net
Version: 0.5.0
OrchardVersion: 0.5.0
Description: The HomePage module enables the promotion of a content item or container to be the home page of the site.
Features:
HomePage:
Description: Standard site home page that allows a specified content type or container to *be* the home page.
Category: Core

View File

@@ -1,11 +1,11 @@
name: Localization
antiforgery: enabled
author: The Orchard Team
website: http://orchardproject.net
version: 0.5.0
orchardversion: 0.5.0
description: The localization module enables the localization of content items.
features:
Name: Localization
AntiForgery: enabled
Author: The Orchard Team
Website: http://orchardproject.net
Version: 0.5.0
OrchardVersion: 0.5.0
Description: The localization module enables the localization of content items.
Features:
Localization:
Description: Localize content items.
Dependencies: Settings

View File

@@ -1,11 +1,11 @@
Name: Messaging
antiforgery: enabled
author: The Orchard Team
website: http://orchardproject.net
version: 0.1.0
orchardversion: 0.6.0
description: The Messaging module adds messaging functionalities.
features:
AntiForgery: enabled
Author: The Orchard Team
Website: http://orchardproject.net
Version: 0.1.0
OrchardVersion: 0.6.0
Description: The Messaging module adds messaging functionalities.
Features:
Messaging:
Description: Messaging services.
Category: Messaging

View File

@@ -1,11 +1,11 @@
name: Navigation
antiforgery: enabled
author: The Orchard Team
website: http://orchardproject.net
version: 0.5.0
orchardversion: 0.5.0
description: The navigation module creates and manages a simple navigation menu for the front-end of the application.
features:
Name: Navigation
AntiForgery: enabled
Author: The Orchard Team
Website: http://orchardproject.net
Version: 0.5.0
OrchardVersion: 0.5.0
Description: The navigation module creates and manages a simple navigation menu for the front-end of the application.
Features:
Navigation:
Description: Menu management.
Category: Core

View File

@@ -1,11 +1,11 @@
Name: PublishLater
antiforgery: enabled
author: The Orchard Team
website: http://orchardproject.net
version: 0.5.0
orchardversion: 0.5.0
description: The PublishLater module introduces draft creation and scheduled publishing functionality.
features:
AntiForgery: enabled
Author: The Orchard Team
Website: http://orchardproject.net
Version: 0.5.0
OrchardVersion: 0.5.0
Description: The PublishLater module introduces draft creation and scheduled publishing functionality.
Features:
PublishLater:
Description: Draft creation and scheduled publishing.
Category: Content

View File

@@ -1,11 +1,11 @@
name: Reports
antiforgery: enabled
author: The Orchard Team
website: http://orchardproject.net
version: 0.5.0
orchardversion: 0.5.0
description: The dashboard module is providing the reports screen of the application.
features:
Name: Reports
AntiForgery: enabled
Author: The Orchard Team
Website: http://orchardproject.net
Version: 0.5.0
OrchardVersion: 0.5.0
Description: The dashboard module is providing the reports screen of the application.
Features:
Reports:
Description: Reports management.
Category: Core

View File

@@ -1,11 +1,11 @@
Name: Routable
antiforgery: enabled
author: The Orchard Team
website: http://orchardproject.net
version: 0.5.0
orchardversion: 0.5.0
description: The routable module enables content items to be accessed through a friendly human-readable URL.
features:
AntiForgery: enabled
Author: The Orchard Team
Website: http://orchardproject.net
Version: 0.5.0
OrchardVersion: 0.5.0
Description: The routable module enables content items to be accessed through a friendly human-readable URL.
Features:
Routable:
Description: Routable content part.
Dependencies: Settings

View File

@@ -1,11 +1,11 @@
name: Scheduling
antiforgery: enabled
author: The Orchard Team
website: http://orchardproject.net
version: 0.5.0
orchardversion: 0.5.0
description: The scheduling module enables background task scheduling.
features:
Name: Scheduling
AntiForgery: enabled
Author: The Orchard Team
Website: http://orchardproject.net
Version: 0.5.0
OrchardVersion: 0.5.0
Description: The scheduling module enables background task scheduling.
Features:
Scheduling:
Description: Scheduled background tasks.
Category: Core

View File

@@ -1,11 +1,11 @@
name: Settings
antiforgery: enabled
author: The Orchard Team
website: http://orchardproject.net
version: 0.5.0
orchardversion: 0.5.0
description: The settings module creates site settings that other modules can contribute to.
features:
Name: Settings
AntiForgery: enabled
Author: The Orchard Team
Website: http://orchardproject.net
Version: 0.5.0
OrchardVersion: 0.5.0
Description: The settings module creates site settings that other modules can contribute to.
Features:
Settings:
Description: Site settings.
Category: Core

View File

@@ -1,11 +1,11 @@
name: Shapes
antiforgery: enabled
author: The Orchard Team
website: http://orchardproject.net
version: 0.5.0
orchardversion: 0.5.0
description: The shapes module contains core shape templates and display hooks.
features:
Name: Shapes
AntiForgery: enabled
Author: The Orchard Team
Website: http://orchardproject.net
Version: 0.5.0
OrchardVersion: 0.5.0
Description: The shapes module contains core shape templates and display hooks.
Features:
Shapes:
Description: Core shape templates and display hooks.
Category: Core

View File

@@ -1,11 +1,11 @@
Name: XmlRpc
antiforgery: enabled
author: The Orchard Team
website: http://orchardproject.net
version: 0.5.0
orchardversion: 0.5.0
description: The XmlRpc module enables creation of contents from client applications such as LiveWriter.
features:
AntiForgery: enabled
Author: The Orchard Team
Website: http://orchardproject.net
Version: 0.5.0
OrchardVersion: 0.5.0
Description: The XmlRpc module enables creation of contents from client applications such as LiveWriter.
Features:
XmlRpc:
Description: XML-RPC opt-in implementation.
Category: Content Publishing

View File

@@ -1,11 +1,11 @@
name: Lucene
antiforgery: enabled
author: The Orchard Team
website: http://orchardproject.net
version: 0.5.0
orchardversion: 0.5.0
description: The Lucene module enables the site to be indexed usin 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.
features:
Name: Lucene
AntiForgery: enabled
Author: The Orchard Team
Website: http://orchardproject.net
Version: 0.5.0
OrchardVersion: 0.5.0
Description: The Lucene module enables the site to be indexed usin 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.
Features:
Lucene:
Description: Lucene indexing services.
Category: Search

View File

@@ -1,11 +1,11 @@
Name: ArchiveLater
antiforgery: enabled
author: The Orchard Team
website: http://orchardproject.net
version: 0.1.0
orchardversion: 0.6.0
description: The ArhiveLater module introduces scheduled archiving functionality.
features:
AntiForgery: enabled
Author: The Orchard Team
Website: http://orchardproject.net
Version: 0.1.0
OrchardVersion: 0.6.0
Description: The ArhiveLater module introduces scheduled archiving functionality.
Features:
Orchard.ArchiveLater:
Description: Scheduled archiving.
Category: Content

View File

@@ -1,11 +1,11 @@
name: Blogs
antiforgery: enabled
author: The Orchard Team
website: http://orchardproject.net
version: 0.5.0
orchardversion: 0.5.0
description: The Orchard Blogs module is implementing basic blogging features.
features:
Name: Blogs
AntiForgery: enabled
Author: The Orchard Team
Website: http://orchardproject.net
Version: 0.5.0
OrchardVersion: 0.5.0
Description: The Orchard Blogs module is implementing basic blogging features.
Features:
Orchard.Blogs:
Description: A simple web log.
Dependencies: Feeds

View File

@@ -1,10 +1,10 @@
name: $$ModuleName$$
antiforgery: enabled
author: The Orchard Team
website: http://orchardproject.net
version: 0.5.0
orchardversion: 0.5.0
description: Description for the module
features:
Name: $$ModuleName$$
AntiForgery: enabled
Author: The Orchard Team
Website: http://orchardproject.net
Version: 0.5.0
OrchardVersion: 0.5.0
Description: Description for the module
Features:
$$ModuleName$$:
Description: Description for feature $$ModuleName$$.

View File

@@ -1,7 +1,7 @@
name: $$ThemeName$$
author: The Orchard Team
website: http://www.orchardproject.net
description: Description for the theme
version: 1.0
Name: $$ThemeName$$
Author: The Orchard Team
Website: http://www.orchardproject.net
Description: Description for the theme
Version: 1.0
# todo: provide tags
# tags: Classic, Serif
# Tags: Classic, Serif

View File

@@ -1,11 +1,11 @@
Name: Code generation
antiforgery: enabled
author: The Orchard Team
website: http://orchardproject.net
version: 0.1.0
orchardversion: 0.6.0
description:
features:
AntiForgery: enabled
Author: The Orchard Team
Website: http://orchardproject.net
Version: 0.1.0
OrchardVersion: 0.6.0
Description:
Features:
Orchard.CodeGeneration:
Description: Tools to create Orchard components.
Category: Developer

View File

@@ -1,11 +1,11 @@
name: Comments
antiforgery: enabled
author: The Orchard Team
website: http://orchardproject.net
version: 0.5.0
orchardversion: 0.5.0
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:
Name: Comments
AntiForgery: enabled
Author: The Orchard Team
Website: http://orchardproject.net
Version: 0.5.0
OrchardVersion: 0.5.0
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:
Description: Standard content item comments.
Dependencies: Settings

View File

@@ -1,10 +1,10 @@
name: ContentTypes
antiforgery: enabled
author: The Orchard Team
website: http://orchardproject.net
version: 0.5.0
orchardversion: 0.5.0
features:
Name: ContentTypes
AntiForgery: enabled
Author: The Orchard Team
Website: http://orchardproject.net
Version: 0.5.0
OrchardVersion: 0.5.0
Features:
Orchard.ContentTypes:
Description: ContentTypes modules enables the creation and alteration of content types not based on code.
Dependencies: Contents

View File

@@ -1,11 +1,11 @@
Name: Email Messaging
antiforgery: enabled
author: The Orchard Team
website: http://orchardproject.net
version: 0.1.0
orchardversion: 0.6.0
description: The Email Messaging module adds Email sending functionalities.
features:
AntiForgery: enabled
Author: The Orchard Team
Website: http://orchardproject.net
Version: 0.1.0
OrchardVersion: 0.6.0
Description: The Email Messaging module adds Email sending functionalities.
Features:
Orchard.Email:
Description: Email Messaging services.
Category: Messaging

View File

@@ -1,11 +1,11 @@
Name: Experimental
antiforgery: enabled
author: The Orchard Team
website: http://orchardproject.net
version: 0.1.0
orchardversion: 0.6.0
description:
features:
AntiForgery: enabled
Author: The Orchard Team
Website: http://orchardproject.net
Version: 0.1.0
OrchardVersion: 0.6.0
Description:
Features:
Profiling:
Description: Tools to help profile Orchard.
Category: Developer

View File

@@ -1,11 +1,11 @@
name: Indexing
antiforgery: enabled
author: The Orchard Team
website: http://orchardproject.net
version: 0.5.0
orchardversion: 0.5.0
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.
features:
Name: Indexing
AntiForgery: enabled
Author: The Orchard Team
Website: http://orchardproject.net
Version: 0.5.0
OrchardVersion: 0.5.0
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.
Features:
Orchard.Indexing:
Description: Indexing infrastructure. Requires an index implementation like the Lucene module.
Category: Search

View File

@@ -1,11 +1,11 @@
name: Media
antiforgery: enabled
author: The Orchard Team
website: http://orchardproject.net
version: 0.5.0
orchardversion: 0.5.0
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.
features:
Name: Media
AntiForgery: enabled
Author: The Orchard Team
Website: http://orchardproject.net
Version: 0.5.0
OrchardVersion: 0.5.0
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.
Features:
Orchard.Media:
Description: File system based media upload, storage and management.
Category: Media

View File

@@ -1,11 +1,11 @@
Name: Migrations
antiforgery: enabled
author: The Orchard Team
website: http://orchardproject.net
version: 0.1.0
orchardversion: 0.6.0
description:
features:
AntiForgery: enabled
Author: The Orchard Team
Website: http://orchardproject.net
Version: 0.1.0
OrchardVersion: 0.6.0
Description:
Features:
Orchard.Migrations:
Description: Data migration commands.
Category: Developer

View File

@@ -68,7 +68,7 @@ namespace Orchard.Modules.Commands {
}
}
else {
Context.Output.WriteLine(T("Could not enable features: {0}", string.Join(",", featureNames)));
Context.Output.WriteLine(T("Could not enable Features: {0}", string.Join(",", featureNames)));
listAvailableFeatures = true;
}
if (listAvailableFeatures)

View File

@@ -1,11 +1,11 @@
name: Modules
antiforgery: enabled
author: The Orchard Team
website: http://orchardproject.net
version: 0.5.0
orchardversion: 0.5.0
description: The Modules module enables the administrator of the site to manage the installed modules as well as activate and de-activate features.
features:
Name: Modules
AntiForgery: enabled
Author: The Orchard Team
Website: http://orchardproject.net
Version: 0.5.0
OrchardVersion: 0.5.0
Description: The Modules module enables the administrator of the site to manage the installed modules as well as activate and de-activate features.
Features:
Orchard.Modules:
Description: Standard module and feature management.
Dependencies: PackagingServices

View File

@@ -1,11 +1,11 @@
name: MultiTenancy
antiforgery: enabled
author: The Orchard Team
website: http://orchardproject.net
version: 0.5.0
orchardversion: 0.5.0
description: The multi-tenancy module enables multiple Orchard sites to run in isolation inside of a single web application, improving site density on a single server or hosted account.
features:
Name: MultiTenancy
AntiForgery: enabled
Author: The Orchard Team
Website: http://orchardproject.net
Version: 0.5.0
OrchardVersion: 0.5.0
Description: The multi-tenancy module enables multiple Orchard sites to run in isolation inside of a single web application, improving site density on a single server or hosted account.
Features:
Orchard.MultiTenancy:
Description: Configure multiple site tenants.
Category: Hosting

View File

@@ -1,11 +1,11 @@
name: Packaging
antiforgery: enabled
author: The Orchard Team
website: http://orchardproject.net
version: 0.5.0
orchardversion: 0.5.0
description: The packaging module enables packaging modules using the OPC format.
features:
Name: Packaging
AntiForgery: enabled
Author: The Orchard Team
Website: http://orchardproject.net
Version: 0.5.0
OrchardVersion: 0.5.0
Description: The packaging module enables packaging modules using the OPC format.
Features:
PackagingServices:
Description: Core services for packaging using the OPC format.
Category: Core

View File

@@ -1,11 +1,11 @@
name: Roles
antiforgery: enabled
author: The Orchard Team
website: http://orchardproject.net
version: 0.5.0
orchardversion: 0.5.0
description: The roles module is adding the ability to assign roles to users. It's also providing a set of default roles for which other modules can define default permissions.
features:
Name: Roles
AntiForgery: enabled
Author: The Orchard Team
Website: http://orchardproject.net
Version: 0.5.0
OrchardVersion: 0.5.0
Description: The roles module is adding the ability to assign roles to users. It's also providing a set of default roles for which other modules can define default permissions.
Features:
Orchard.Roles:
Description: Standard user roles.
Category: Core

View File

@@ -1,11 +1,11 @@
name: Search
antiforgery: enabled
author: The Orchard Team
website: http://orchardproject.net
version: 0.5.0
orchardversion: 0.5.0
description: The search module enables the management of the search index and provides the front-end searching user interface.
features:
Name: Search
AntiForgery: enabled
Author: The Orchard Team
Website: http://orchardproject.net
Version: 0.5.0
OrchardVersion: 0.5.0
Description: The search module enables the management of the search index and provides the front-end searching user interface.
Features:
Orchard.Search:
Description: Standard interface to Orchard's built-in search.
Category: Search

View File

@@ -1,11 +1,11 @@
name: Setup
antiforgery: enabled
author: The Orchard Team
website: http://orchardproject.net
version: 0.5.0
orchardversion: 0.5.0
description: The setup module is creating the application's setup experience.
features:
Name: Setup
AntiForgery: enabled
Author: The Orchard Team
Website: http://orchardproject.net
Version: 0.5.0
OrchardVersion: 0.5.0
Description: The setup module is creating the application's setup experience.
Features:
Orchard.Setup:
Description: Standard site setup. This feature is disabled automatically once setup is over.
Category: Core

View File

@@ -1,11 +1,11 @@
name: Tags
antiforgery: enabled
author: The Orchard Team
website: http://orchardproject.net
version: 0.5.0
orchardversion: 0.5.0
description: The tags module is providing basic tagging for arbitrary content types.
features:
Name: Tags
AntiForgery: enabled
Author: The Orchard Team
Website: http://orchardproject.net
Version: 0.5.0
OrchardVersion: 0.5.0
Description: The tags module is providing basic tagging for arbitrary content types.
Features:
Orchard.Tags:
Description: Tag a content item.
Dependencies: Settings

View File

@@ -1,11 +1,11 @@
name: Themes
antiforgery: enabled
author: The Orchard Team
website: http://orchardproject.net
version: 0.5.0
orchardversion: 0.5.0
description: The themes module makes it possible for Orchard applications to customize the look and feel of an Orchard web site.
features:
Name: Themes
AntiForgery: enabled
Author: The Orchard Team
Website: http://orchardproject.net
Version: 0.5.0
OrchardVersion: 0.5.0
Description: The themes module makes it possible for Orchard applications to customize the look and feel of an Orchard web site.
Features:
Orchard.Themes:
Description: Basic theming capability.
Category: Core

View File

@@ -1,11 +1,11 @@
name: Users
antiforgery: enabled
author: The Orchard Team
website: http://orchardproject.net
version: 0.5.0
orchardversion: 0.5.0
description: The users module enables user management.
features:
Name: Users
AntiForgery: enabled
Author: The Orchard Team
Website: http://orchardproject.net
Version: 0.5.0
OrchardVersion: 0.5.0
Description: The users module enables user management.
Features:
Orchard.Users:
Description: Standard users.
Category: Core

View File

@@ -1,11 +1,11 @@
name: Widgets
antiforgery: enabled
author: The Orchard Team
website: http://orchardproject.net
version: 0.5.0
orchardversion: 0.5.0
description: An implementation of widgets for Orchard.
features:
Name: Widgets
AntiForgery: enabled
Author: The Orchard Team
Website: http://orchardproject.net
Version: 0.5.0
OrchardVersion: 0.5.0
Description: An implementation of widgets for Orchard.
Features:
Orchard.Widgets:
Description: An implementation of widgets.
Category: Widget

View File

@@ -1,11 +1,11 @@
name: Orchard.jQuery
antiforgery: enabled
author: The Orchard Team
website: http://orchardproject.net
version: 0.5.0
orchardversion: 0.5.0
description: The jQuery module contains the jQuery and related script libraries.
features:
Name: Orchard.jQuery
AntiForgery: enabled
Author: The Orchard Team
Website: http://orchardproject.net
Version: 0.5.0
OrchardVersion: 0.5.0
Description: The jQuery module contains the jQuery and related script libraries.
Features:
Orchard.jQuery:
Description: A common location for jQuery and related script libraries.
Category: Resources

View File

@@ -1,11 +1,11 @@
name: TinyMce
antiforgery: enabled
author: The Orchard Team
website: http://orchardproject.net
version: 0.5.0
orchardversion: 0.5.0
description: The TinyMCE module enables rich text contents to be created using a "What You See Is What You Get" user interface.
features:
Name: TinyMce
AntiForgery: enabled
Author: The Orchard Team
Website: http://orchardproject.net
Version: 0.5.0
OrchardVersion: 0.5.0
Description: The TinyMCE module enables rich text contents to be created using a "What You See Is What You Get" user interface.
Features:
TinyMce:
Description: TinyMCE HTML WYSIWYG editor.
Category: Input Editor

View File

@@ -1,7 +1,7 @@
name: Classic
author: Jonathan Wall
description: Theme using serif.
version: 1.0
tags: Classic, Serif
website: http://www.orchardproject.net
zones: Sidebar
Name: Classic
Author: Jonathan Wall
Description: Theme using serif.
Version: 1.0
Tags: Classic, Serif
Website: http://www.orchardproject.net
Zones: Sidebar

View File

@@ -1,7 +1,7 @@
name: Classic Dark
author: Jonathan Wall
description: Dark version of the Classic theme.
version: 1.0
tags: Classic, Dark, Serif
website: http://www.orchardproject.net
zones: Sidebar
Name: Classic Dark
Author: Jonathan Wall
Description: Dark version of the Classic theme.
Version: 1.0
Tags: Classic, Dark, Serif
Website: http://www.orchardproject.net
Zones: Sidebar

View File

@@ -1,6 +1,6 @@
name: Contoso Business
author: Michael Dorian Bach
description: A simple CMS theme perfect for any modern product or service business website.
version: 1.0
tags: business, cms, modern
website: http://www.orchardproject.net
Name: Contoso Business
Author: Michael Dorian Bach
Description: A simple CMS theme perfect for any modern product or service business website.
Version: 1.0
Tags: business, cms, modern
Website: http://www.orchardproject.net

View File

@@ -1,6 +1,6 @@
name: Corporate
author: Michael Dorian Bach
description: A simple and neutral business theme for a variety of industries.
version: 1.0
tags: business, cms, simple, classic, medical, finance, legal, corporate
website: http://www.orchardproject.net
Name: Corporate
Author: Michael Dorian Bach
Description: A simple and neutral business theme for a variety of industries.
Version: 1.0
Tags: business, cms, simple, classic, medical, finance, legal, corporate
Website: http://www.orchardproject.net

View File

@@ -1,6 +1,6 @@
name: Green
author: Jonathan Wall
description: This is the Green theme. It uses the YUI grid system for layout.
version: 1.0
tags: green, YUI
website: http://www.orchardproject.net
Name: Green
Author: Jonathan Wall
Description: This is the Green theme. It uses the YUI grid system for layout.
Version: 1.0
Tags: green, YUI
Website: http://www.orchardproject.net

View File

@@ -1,6 +1,6 @@
name: SafeMode
author: Jonathan Wall
description: The Orchard Theme for setup and failure conditions.
version: 1.0
tags: hidden
website: http://www.orchardproject.net
Name: SafeMode
Author: Jonathan Wall
Description: The Orchard Theme for setup and failure conditions.
Version: 1.0
Tags: hidden
Website: http://www.orchardproject.net

View File

@@ -1,6 +1,6 @@
name: The Admin
version: 1.0
author: Jon Wall
tags: hidden, admin
description: An admin theme not to be used for the site so don't click "Activate" (or "Uninstall"). In the near future admin themes won't be mixed in with site themes.
website: http://www.orchardproject.net
Name: The Admin
Version: 1.0
Author: Jon Wall
Tags: hidden, admin
Description: An admin theme not to be used for the site so don't click "Activate" (or "Uninstall"). In the near future admin themes won't be mixed in with site themes.
Website: http://www.orchardproject.net

View File

@@ -81,7 +81,7 @@ namespace Orchard.Environment.Extensions.Folders {
var manifestText = _webSiteFolder.ReadFile(manifestPath);
if (manifestText == null) {
if (_manifestIsOptional) {
manifestText = string.Format("name: {0}", extensionName);
manifestText = string.Format("Name: {0}", extensionName);
}
else {
return null;
@@ -118,18 +118,18 @@ namespace Orchard.Environment.Extensions.Folders {
Location = locationPath,
Name = extensionName,
ExtensionType = extensionType,
DisplayName = GetValue(fields, "name") ?? extensionName,
Description = GetValue(fields, "description"),
Version = GetValue(fields, "version"),
OrchardVersion = GetValue(fields, "orchardversion"),
Author = GetValue(fields, "author"),
WebSite = GetValue(fields, "website"),
Tags = GetValue(fields, "tags"),
AntiForgery = GetValue(fields, "antiforgery"),
Zones = GetValue(fields, "zones"),
DisplayName = GetValue(fields, "Name") ?? extensionName,
Description = GetValue(fields, "Description"),
Version = GetValue(fields, "Version"),
OrchardVersion = GetValue(fields, "OrchardVersion"),
Author = GetValue(fields, "Author"),
WebSite = GetValue(fields, "Website"),
Tags = GetValue(fields, "Tags"),
AntiForgery = GetValue(fields, "AntiForgery"),
Zones = GetValue(fields, "Zones"),
};
extensionDescriptor.Features = GetFeaturesForExtension(GetMapping(fields, "features"), extensionDescriptor);
extensionDescriptor.Features = GetFeaturesForExtension(GetMapping(fields, "Features"), extensionDescriptor);
return extensionDescriptor;
}
@@ -144,13 +144,13 @@ namespace Orchard.Environment.Extensions.Folders {
};
var featureMapping = (Mapping)entity.Value;
foreach (var featureEntity in featureMapping.Entities) {
if (String.Equals(featureEntity.Key.ToString(), "description", StringComparison.OrdinalIgnoreCase)) {
if (String.Equals(featureEntity.Key.ToString(), "Description", StringComparison.OrdinalIgnoreCase)) {
featureDescriptor.Description = featureEntity.Value.ToString();
}
else if (String.Equals(featureEntity.Key.ToString(), "category", StringComparison.OrdinalIgnoreCase)) {
else if (String.Equals(featureEntity.Key.ToString(), "Category", StringComparison.OrdinalIgnoreCase)) {
featureDescriptor.Category = featureEntity.Value.ToString();
}
else if (String.Equals(featureEntity.Key.ToString(), "dependencies", StringComparison.OrdinalIgnoreCase)) {
else if (String.Equals(featureEntity.Key.ToString(), "Dependencies", StringComparison.OrdinalIgnoreCase)) {
featureDescriptor.Dependencies = ParseFeatureDependenciesEntry(featureEntity.Value.ToString());
}
}