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 Name: Common
antiforgery: enabled 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 name: Dashboard
antiforgery: enabled 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 name: Feeds
antiforgery: enabled 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 name: HomePage
antiforgery: enabled 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 name: Navigation
antiforgery: enabled 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 name: Scheduling
antiforgery: enabled 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 name: Settings
antiforgery: enabled 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 Name: XmlRpc
antiforgery: enabled 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 name: Widgets
antiforgery: enabled 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 name: Blogs
antiforgery: enabled antiforgery: enabled
author: The Orchard Team
website: http://orchardproject.net
version: 0.1
orchardversion: 0.1.2010.0312
features: features:
Orchard.Blogs: Orchard.Blogs:
Description: A simple web log Description: A simple web log.
Dependencies: Common, XmlRpc Dependencies: Common, XmlRpc
Category: Blog Category: Content

View File

@@ -1,2 +1,11 @@
name: Comments name: Comments
antiforgery: enabled 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 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 name: Media
antiforgery: enabled 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 name: Modules
antiforgery: enabled 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>
<fieldset class="pageList"> <fieldset class="pageList">
<ul class="contentItems"><% <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\"" : "" %>> <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><% <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) %>"> <li<%=feature == featureGroup.Last() ? " class=\"last\"" : "" %> id="<%=Html.Encode(feature.Descriptor.Name) %>">
<div class="summary"> <div class="summary">
<div class="properties"> <div class="properties">
@@ -39,7 +39,7 @@ using (Html.BeginFormAntiForgeryPost()) { %>
} %> } %>
</li><% </li><%
//dependencies //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><% <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> </ul>

View File

@@ -1,2 +1,11 @@
name: MultiTenancy name: MultiTenancy
antiforgery: enabled 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 name: Pages
antiforgery: enabled 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 name: Roles
antiforgery: enabled 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 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" /> <Compile Include="ViewModels\PageIndexViewModel.cs" />
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<Content Include="_Module.txt" /> <Content Include="Module.txt" />
<Content Include="Views\Page\Edit.aspx" /> <Content Include="Views\Page\Edit.aspx" />
<Content Include="Views\Page\Create.aspx" /> <Content Include="Views\Page\Create.aspx" />
<Content Include="Views\Page\Show.aspx" /> <Content Include="Views\Page\Show.aspx" />

View File

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

View File

@@ -1,2 +1,11 @@
name: Setup name: Setup
antiforgery: enabled 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 name: Tags
antiforgery: enabled 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 name: Themes
antiforgery: enabled 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 name: Users
antiforgery: enabled 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 name: TinyMce
antiforgery: enabled 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