Updated all of the module manifests with a little more relevant info.

--HG--
branch : dev
This commit is contained in:
Nathan Heskew
2010-05-06 22:46:18 -07:00
parent 07a0521458
commit ae801b66b2
26 changed files with 225 additions and 24 deletions

View File

@@ -1,2 +1,10 @@
Name: Common
antiforgery: enabled
author: The Orchard Team
website: http://orchardproject.net
version: 0.1
orchardversion: 0.1.2010.0312
features:
Common:
Description: Core content parts.
Category: Core

View File

@@ -1,2 +1,11 @@
name: Dashboard
antiforgery: enabled
author: The Orchard Team
website: http://orchardproject.net
version: 0.1
orchardversion: 0.1.2010.0312
features:
Dashboard:
Description: Standard admin dashboard.
Dependencies: Common
Category: Core

View File

@@ -1,2 +1,11 @@
name: Feeds
antiforgery: enabled
author: The Orchard Team
website: http://orchardproject.net
version: 0.1
orchardversion: 0.1.2010.0312
features:
Feeds:
Description: RSS feeds for content items.
Dependencies: Common
Category: Syndication

View File

@@ -1,2 +1,11 @@
name: HomePage
antiforgery: enabled
author: The Orchard Team
website: http://orchardproject.net
version: 0.1
orchardversion: 0.1.2010.0312
features:
HomePage:
Description: Standard site home page that allows a specified content type or container to *be* the home page.
Dependencies: Common
Category: Core

View File

@@ -1,2 +1,11 @@
name: Navigation
antiforgery: enabled
author: The Orchard Team
website: http://orchardproject.net
version: 0.1
orchardversion: 0.1.2010.0312
features:
Navigation:
Description: Menu management.
Dependencies: Common
Category: Core

View File

@@ -1,2 +1,11 @@
name: Scheduling
antiforgery: enabled
author: The Orchard Team
website: http://orchardproject.net
version: 0.1
orchardversion: 0.1.2010.0312
features:
Scheduling:
Description: Scheduled background tasks.
Dependencies: Common
Category: Core

View File

@@ -1,2 +1,11 @@
name: Settings
antiforgery: enabled
author: The Orchard Team
website: http://orchardproject.net
version: 0.1
orchardversion: 0.1.2010.0312
features:
Settings:
Description: Site settings.
Dependencies: Common
Category: Core

View File

@@ -1,2 +1,11 @@
Name: XmlRpc
antiforgery: enabled
author: The Orchard Team
website: http://orchardproject.net
version: 0.1
orchardversion: 0.1.2010.0312
features:
XmlRpc:
Description: XML-RPC opt-in implementation.
Dependencies: Common
Category: Core

View File

@@ -1,2 +1,11 @@
name: Widgets
antiforgery: enabled
author: The Orchard Team
website: http://orchardproject.net
version: 0.1
orchardversion: 0.1.2010.0312
features:
Futures.Widgets:
Description: Widgets container with simple inline content editing widget.
Dependencies: Common
Category: Widget

View File

@@ -1,7 +1,11 @@
name: Blogs
antiforgery: enabled
author: The Orchard Team
website: http://orchardproject.net
version: 0.1
orchardversion: 0.1.2010.0312
features:
Orchard.Blogs:
Description: A simple web log
Description: A simple web log.
Dependencies: Common, XmlRpc
Category: Blog
Category: Content

View File

@@ -1,2 +1,11 @@
name: Comments
antiforgery: enabled
author: The Orchard Team
website: http://orchardproject.net
version: 0.1
orchardversion: 0.1.2010.0312
features:
Orchard.Comments:
Description: Standard content item comments.
Dependencies: Common
Category: User Interaction

View File

@@ -1 +1,11 @@
name: DevTools
antiforgery: enabled
author: The Orchard Team
website: http://orchardproject.net
version: 0.1
orchardversion: 0.1.2010.0312
features:
Orchard.DevTools:
Description: An assortment of debuging tools.
Dependencies: Common
Category: Developer

View File

@@ -1,2 +1,11 @@
name: Media
antiforgery: enabled
author: The Orchard Team
website: http://orchardproject.net
version: 0.1
orchardversion: 0.1.2010.0312
features:
Orchard.Media:
Description: File system based media upload, storage and management.
Dependencies: Common
Category: Media

View File

@@ -1,2 +1,11 @@
name: Modules
antiforgery: enabled
author: The Orchard Team
website: http://orchardproject.net
version: 0.1
orchardversion: 0.1.2010.0312
features:
Orchard.Modules:
Description: Standard module and feature management.
Dependencies: Common
Category: Core

View File

@@ -18,11 +18,11 @@ using (Html.BeginFormAntiForgeryPost()) { %>
</fieldset>
<fieldset class="pageList">
<ul class="contentItems"><%
foreach (var featureGroup in Model.Features.OrderBy(f => f.Descriptor.Name).GroupBy(f => f.Descriptor.Category)) { %>
foreach (var featureGroup in Model.Features.OrderBy(f => f.Descriptor.Category).GroupBy(f => f.Descriptor.Category)) { %>
<li<%=featureGroup == Model.Features.Last() ? " class=\"last\"" : "" %>>
<h2><%=Html.Encode(featureGroup.First().Descriptor.Category ?? T("General")) %></h2>
<h2><%=Html.Encode(featureGroup.First().Descriptor.Category ?? T("Uncategorized")) %></h2>
<ul><%
foreach (var feature in featureGroup) {%>
foreach (var feature in featureGroup.OrderBy(f => f.Descriptor.Name)) {%>
<li<%=feature == featureGroup.Last() ? " class=\"last\"" : "" %> id="<%=Html.Encode(feature.Descriptor.Name) %>">
<div class="summary">
<div class="properties">
@@ -39,7 +39,7 @@ using (Html.BeginFormAntiForgeryPost()) { %>
} %>
</li><%
//dependencies
if (feature.Descriptor.Dependencies.Count() > 0) { %>
if (feature.Descriptor.Dependencies != null && feature.Descriptor.Dependencies.Count() > 0) { %>
<li>&nbsp;&#124;&nbsp;<%=T("Depends on: {0}", string.Join(", ", feature.Descriptor.Dependencies.Select(s => Html.Link(Html.Encode(s), string.Format("{0}#{1}", Url.Action("features", new { area = "Orchard.Modules" }), Html.Encode(s)))).OrderBy(s => s).ToArray())) %></li><%
} %>
</ul>

View File

@@ -1,2 +1,11 @@
name: MultiTenancy
antiforgery: enabled
author: The Orchard Team
website: http://orchardproject.net
version: 0.1
orchardversion: 0.1.2010.0312
features:
Orchard.MultiTenancy:
Description: Configure multiple site tenants.
Dependencies: Common
Category: Core

View File

@@ -1,2 +1,11 @@
name: Pages
antiforgery: enabled
author: The Orchard Team
website: http://orchardproject.net
version: 0.1
orchardversion: 0.1.2010.0312
features:
Orchard.Pages:
Description: Simple pages.
Dependencies: Common
Category: Content

View File

@@ -1,2 +1,11 @@
name: Roles
antiforgery: enabled
author: The Orchard Team
website: http://orchardproject.net
version: 0.1
orchardversion: 0.1.2010.0312
features:
Orchard.Roles:
Description: Standard user roles.
Dependencies: Common
Category: Core

View File

@@ -1 +1,11 @@
name: Sandbox
antiforgery: enabled
author: The Orchard Team
website: http://orchardproject.net
version: 0.1
orchardversion: 0.1.2010.0312
features:
Orchard.Sandbox:
Description: A module to mess around with. Currently wiki-like.
Dependencies: Common
Category: Developer

View File

@@ -75,7 +75,7 @@
<Compile Include="ViewModels\PageIndexViewModel.cs" />
</ItemGroup>
<ItemGroup>
<Content Include="_Module.txt" />
<Content Include="Module.txt" />
<Content Include="Views\Page\Edit.aspx" />
<Content Include="Views\Page\Create.aspx" />
<Content Include="Views\Page\Show.aspx" />

View File

@@ -1 +0,0 @@
name: Sandbox

View File

@@ -1,2 +1,11 @@
name: Setup
antiforgery: enabled
author: The Orchard Team
website: http://orchardproject.net
version: 0.1
orchardversion: 0.1.2010.0312
features:
Orchard.Setup:
Description: Standard site setup.
Dependencies: Common
Category: Core

View File

@@ -1,2 +1,11 @@
name: Tags
antiforgery: enabled
author: The Orchard Team
website: http://orchardproject.net
version: 0.1
orchardversion: 0.1.2010.0312
features:
Orchard.Tags:
Description: Tag a content item.
Dependencies: Common
Category: Taxonomy

View File

@@ -1,2 +1,11 @@
name: Themes
antiforgery: enabled
author: The Orchard Team
website: http://orchardproject.net
version: 0.1
orchardversion: 0.1.2010.0312
features:
Orchard.Themes:
Description: Basic theming capability.
Dependencies: Common
Category: Display

View File

@@ -1,2 +1,11 @@
name: Users
antiforgery: enabled
author: The Orchard Team
website: http://orchardproject.net
version: 0.1
orchardversion: 0.1.2010.0312
features:
Orchard.Users:
Description: Standard users.
Dependencies: Common
Category: Core

View File

@@ -1,2 +1,10 @@
name: TinyMce
antiforgery: enabled
author: The Orchard Team
website: http://orchardproject.net
version: 0.1
orchardversion: 0.1.2010.0312
features:
TinyMce:
Description: TinyMCE HTML WYSIWYG editor.
Category: Input Editor