Commit Graph
100 Commits
Author SHA1 Message Date
Nathan Heskew aa269fd49f Comment -> CommentPart; HasComments -> CommentsPart; HasCommentsContainer -> CommentsContainerPart
- updating part names to conform to a <name>Part convention

--HG--
branch : dev
rename : src/Orchard.Web/Modules/Orchard.Comments/Drivers/CommentDriver.cs => src/Orchard.Web/Modules/Orchard.Comments/Drivers/CommentPartDriver.cs
rename : src/Orchard.Web/Modules/Orchard.Comments/Drivers/HasCommentsContainerDriver.cs => src/Orchard.Web/Modules/Orchard.Comments/Drivers/CommentsContainerPartDriver.cs
rename : src/Orchard.Web/Modules/Orchard.Comments/Drivers/HasCommentsDriver.cs => src/Orchard.Web/Modules/Orchard.Comments/Drivers/CommentsPartDriver.cs
rename : src/Orchard.Web/Modules/Orchard.Comments/Handlers/CommentHandler.cs => src/Orchard.Web/Modules/Orchard.Comments/Handlers/CommentPartHandler.cs
rename : src/Orchard.Web/Modules/Orchard.Comments/Handlers/CommentSettingsHandler.cs => src/Orchard.Web/Modules/Orchard.Comments/Handlers/CommentSettingsPartHandler.cs
rename : src/Orchard.Web/Modules/Orchard.Comments/Handlers/HasCommentsHandler.cs => src/Orchard.Web/Modules/Orchard.Comments/Handlers/CommentsPartHandler.cs
rename : src/Orchard.Web/Modules/Orchard.Comments/Models/HasCommentsContainer.cs => src/Orchard.Web/Modules/Orchard.Comments/Models/CommentPart.cs
rename : src/Orchard.Web/Modules/Orchard.Comments/Models/CommentRecord.cs => src/Orchard.Web/Modules/Orchard.Comments/Models/CommentPartRecord.cs
rename : src/Orchard.Web/Modules/Orchard.Comments/Models/CommentSettings.cs => src/Orchard.Web/Modules/Orchard.Comments/Models/CommentSettingsPart.cs
rename : src/Orchard.Web/Modules/Orchard.Comments/Models/CommentSettingsRecord.cs => src/Orchard.Web/Modules/Orchard.Comments/Models/CommentSettingsPartRecord.cs
rename : src/Orchard.Web/Modules/Orchard.Comments/Models/HasCommentsContainer.cs => src/Orchard.Web/Modules/Orchard.Comments/Models/CommentsContainerPart.cs
rename : src/Orchard.Web/Modules/Orchard.Comments/Models/HasComments.cs => src/Orchard.Web/Modules/Orchard.Comments/Models/CommentsPart.cs
rename : src/Orchard.Web/Modules/Orchard.Comments/Models/HasCommentsRecord.cs => src/Orchard.Web/Modules/Orchard.Comments/Models/CommentsPartRecord.cs
rename : src/Orchard.Web/Modules/Orchard.Comments/Views/DisplayTemplates/Parts/Comments.HasComments.ascx => src/Orchard.Web/Modules/Orchard.Comments/Views/DisplayTemplates/Parts/Comments.Comments.ascx
rename : src/Orchard.Web/Modules/Orchard.Comments/Views/EditorTemplates/Parts/Comments.HasComments.ascx => src/Orchard.Web/Modules/Orchard.Comments/Views/EditorTemplates/Parts/Comments.Comments.ascx
rename : src/Orchard.Web/Themes/Contoso/Views/DisplayTemplates/Parts/Comments.HasComments.ascx => src/Orchard.Web/Themes/Contoso/Views/DisplayTemplates/Parts/Comments.Comments.ascx
rename : src/Orchard.Web/Themes/Corporate/Views/DisplayTemplates/Parts/Comments.HasComments.ascx => src/Orchard.Web/Themes/Corporate/Views/DisplayTemplates/Parts/Comments.Comments.ascx
2010-07-22 14:08:31 -07:00
Nathan Heskew 0e63927f78 BlogHandler -> BlogPartHandler (same w/ other blog handlers) and fixed strongly-typed views to changed blog models
--HG--
branch : dev
rename : src/Orchard.Web/Modules/Orchard.Blogs/Handlers/BlogArchiveHandler.cs => src/Orchard.Web/Modules/Orchard.Blogs/Handlers/BlogPartArchiveHandler.cs
rename : src/Orchard.Web/Modules/Orchard.Blogs/Handlers/BlogHandler.cs => src/Orchard.Web/Modules/Orchard.Blogs/Handlers/BlogPartHandler.cs
rename : src/Orchard.Web/Modules/Orchard.Blogs/Handlers/BlogPostHandler.cs => src/Orchard.Web/Modules/Orchard.Blogs/Handlers/BlogPostPartHandler.cs
2010-07-22 12:58:16 -07:00
Nathan Heskew 5b02277fee BodyAspect -> BodyPart; CommonAspect -> CommonPart
- updating part names to conform to a <name>Part convention

--HG--
branch : dev
rename : src/Orchard.Core.Tests/Common/Providers/CommonAspectProviderTests.cs => src/Orchard.Core.Tests/Common/Providers/CommonPartProviderTests.cs
rename : src/Orchard.Web/Core/Common/Drivers/BodyDriver.cs => src/Orchard.Web/Core/Common/Drivers/BodyPartDriver.cs
rename : src/Orchard.Web/Core/Common/Drivers/CommonDriver.cs => src/Orchard.Web/Core/Common/Drivers/CommonPartDriver.cs
rename : src/Orchard.Web/Core/Common/Handlers/BodyAspectHandler.cs => src/Orchard.Web/Core/Common/Handlers/BodyPartHandler.cs
rename : src/Orchard.Web/Core/Common/Handlers/CommonAspectHandler.cs => src/Orchard.Web/Core/Common/Handlers/CommonPartHandler.cs
rename : src/Orchard.Web/Core/Common/Models/BodyAspect.cs => src/Orchard.Web/Core/Common/Models/BodyPart.cs
rename : src/Orchard.Web/Core/Common/Models/BodyRecord.cs => src/Orchard.Web/Core/Common/Models/BodyPartRecord.cs
rename : src/Orchard.Web/Core/Common/Models/CommonAspect.cs => src/Orchard.Web/Core/Common/Models/CommonPart.cs
rename : src/Orchard.Web/Core/Common/Models/CommonRecord.cs => src/Orchard.Web/Core/Common/Models/CommonPartRecord.cs
rename : src/Orchard.Web/Core/Common/Models/CommonVersionRecord.cs => src/Orchard.Web/Core/Common/Models/CommonPartVersionRecord.cs
rename : src/Orchard/ContentManagement/Aspects/ICommonAspect.cs => src/Orchard/ContentManagement/Aspects/ICommonPart.cs
2010-07-22 12:52:16 -07:00
Nathan Heskew 3302c026b6 BlogPostDriver -> BlogPostPartDriver
--HG--
branch : dev
rename : src/Orchard.Web/Modules/Orchard.Blogs/Drivers/BlogPostDriver.cs => src/Orchard.Web/Modules/Orchard.Blogs/Drivers/BlogPostPartDriver.cs
2010-07-22 11:34:43 -07:00
Nathan Heskew 11bf66e6e6 Blog -> BlogPart; BlogPost -> BlogPostPart
- updating part names to conform to a <name>Part convention

--HG--
branch : dev
rename : src/Orchard.Web/Modules/Orchard.Blogs/Drivers/BlogDriver.cs => src/Orchard.Web/Modules/Orchard.Blogs/Drivers/BlogPartDriver.cs
rename : src/Orchard.Web/Modules/Orchard.Blogs/Models/Blog.cs => src/Orchard.Web/Modules/Orchard.Blogs/Models/BlogPart.cs
rename : src/Orchard.Web/Modules/Orchard.Blogs/Models/BlogArchiveRecord.cs => src/Orchard.Web/Modules/Orchard.Blogs/Models/BlogPartArchiveRecord.cs
rename : src/Orchard.Web/Modules/Orchard.Blogs/Models/BlogRecord.cs => src/Orchard.Web/Modules/Orchard.Blogs/Models/BlogPartRecord.cs
rename : src/Orchard.Web/Modules/Orchard.Blogs/Models/BlogPost.cs => src/Orchard.Web/Modules/Orchard.Blogs/Models/BlogPostPart.cs
2010-07-22 11:08:14 -07:00
Nathan Heskew 614ca64971 Fixed the "Remove" link on the content item summary admin template when it's being used outside of the contents module
--HG--
branch : dev
2010-07-22 10:08:07 -07:00
Nathan Heskew 006dcd73cc Updating the expand/collapse JS to allow the control key to be overriden and shortened the cookie name
- also making use of the collapse setting to collapse everything by default

--HG--
branch : dev
2010-07-21 14:58:23 -07:00
Nathan Heskew 7eedd60af7 Fixing a bug with the detecting the startup state of expandable items and embeded the exp/clps gifs in the CSS
--HG--
branch : dev
2010-07-21 14:46:04 -07:00
Nathan Heskew f6742c4141 Updating the admin nav to remember what was closed
- also cleaned up the expand/collapse functionality a bit. still needs a little more work though (images - sprite or embeded, and a little script opt)

--HG--
branch : dev
2010-07-21 14:09:09 -07:00
Nathan Heskew 8ae413f8e6 Adding the links to translated content back to the front-end
- only the "+ New Translation" link needed to be pulled

--HG--
branch : dev
2010-07-21 09:06:34 -07:00
Nathan Heskew 89d944d10d Giving the content items list in the admin a border for IE
--HG--
branch : dev
2010-07-21 09:02:37 -07:00
Nathan Heskew 5723255248 Adding position specification to file resource registration
- so base scripts and styles can be made to appear in the source before the other scripts and styles

--HG--
branch : dev
2010-07-21 08:54:28 -07:00
Nathan Heskew 05d369fb2c Remembering the view type of the features list and added some rough and simple client app settings functionality
--HG--
branch : dev
2010-07-20 23:34:09 -07:00
Nathan Heskew 30fbf7f469 Some work on the content localization UI
--HG--
branch : dev
2010-07-20 11:45:44 -07:00
Nathan Heskew 352d21123f Removing an extra selector (label) that snuck into a recent update of TheAdmin's CSS
--HG--
branch : dev
2010-07-19 17:09:56 -07:00
Nathan Heskew f5e80a308e Updated the admin content item list ordering to not exclude any items
- having to make the orderby join free and roughly order by content version id to get created and modified order. this is also now doing an order and skip/take after running the query up to that point so it's also not ideal for perf

--HG--
branch : dev
2010-07-19 13:53:46 -07:00
Nathan Heskew 9301e9eb0a Fixed the display of blog posts on a blog in all of the themes
- added a default blog list template and remove all of the theme-specific part templates (which were all the same)

--HG--
branch : dev
2010-07-19 11:13:23 -07:00
Nathan Heskew eb14188ccc Adding admin content list filter (by type) & sort
--HG--
branch : dev
2010-07-19 10:08:41 -07:00
Nathan Heskew 5049ffa012 Removing unused publishlater part display templates
--HG--
branch : dev
2010-07-18 08:51:30 -07:00
Nathan Heskew 55ddbcb427 Fixing the content publish/unpublish links in the Contents.Publish.SummaryAdmin part template
--HG--
branch : dev
2010-07-18 08:46:44 -07:00
Nathan Heskew 9cfd296fde Getting bulk actions hooked up for the admin blog post list
- publish/unpublish and remove links in the item summary admin template are still broken. they need to be constructed with all routing info

--HG--
branch : dev
2010-07-17 09:20:16 -07:00
Nathan Heskew 95f2eee912 Added container scoping to the admin content item list
--HG--
branch : dev
2010-07-16 16:37:12 -07:00
Nathan Heskew 5484386737 Adding bulk actions (publish, unpublish and remove) to the admin content list
--HG--
branch : dev
2010-07-16 14:27:27 -07:00
Nathan Heskew 1f632119c0 Fixed content publishing on creation
--HG--
branch : dev
2010-07-16 11:40:22 -07:00
Nathan Heskew 3cb376b929 Fixed content item page display (a part display template was typed incorrectly)
--HG--
branch : dev
2010-07-16 10:47:09 -07:00
Nathan Heskew 7d6b76d7f5 Getting content publishing/unpublishing hooked up (from the content item list)
- moved publishing control to the Contents module
- included some prep for adding bulk actions and filtering to the content item list
- publish, unpublish and remove actions need downlevel interstitial pages (functionality only workes w/ JS at the moment)

--HG--
branch : dev
2010-07-16 00:49:24 -07:00
Nathan Heskew fd3d722860 Cleaned up the admin blog list metadata UI a little
--HG--
branch : dev
2010-07-15 23:16:32 -07:00
Nathan Heskew 5de6784fca Fixed the blog "Remove" link in the admin blog list
--HG--
branch : dev
2010-07-15 22:56:27 -07:00
Nathan Heskew b11fe1033c Fixed a bug in content creation where all of the handlers were being called twice
- had two UpdateEditorModel calls in the create action

--HG--
branch : dev
2010-07-15 22:44:28 -07:00
Nathan Heskew 4fb3c51dff Getting the comment count on the content list view in the admin and blog posts to use more of the generic content templating
- + blog posts get translation functionality

--HG--
branch : dev
2010-07-15 16:06:40 -07:00
Nathan Heskew 3538ce33a9 Better display text for content items
--HG--
branch : dev
2010-07-15 14:02:09 -07:00
Nathan Heskew 22b4172341 Fixing the routable part editor container path for new items w/out a container (rememoved extra "/")
--HG--
branch : dev
2010-07-15 09:50:39 -07:00
Nathan Heskew dbb9b4eb3f Getting the routable container path to show up when creating a new content item
--HG--
branch : dev
2010-07-14 23:03:46 -07:00
Nathan Heskew 5345d9ae81 Showing blog post draft count in the admin blog summary
--HG--
branch : dev
2010-07-14 22:49:50 -07:00
Nathan Heskew f3854ddbb6 Getting the blogs admin UI back up and running
--HG--
branch : dev
2010-07-14 22:39:26 -07:00
Nathan Heskew 7ef7b7b3e7 Updated the setup service to tack the PublishLaterPart on to the Page type and removed the SandboxPage configuration
--HG--
branch : dev
2010-07-14 16:28:43 -07:00
Nathan Heskew 881b71db4b Moved the content item publishing option functionality (save draft, publish and schedule) out into it's own Orchard.Core module (PublishLater)
--HG--
branch : dev
2010-07-14 15:31:43 -07:00
Nathan Heskew bc528577fb Removed the Localization (part) editor template
--HG--
branch : dev
2010-07-14 13:12:07 -07:00
Nathan Heskew 7b9301a90a Fixed scheduled date & time display (in the type item editor)
--HG--
branch : dev
2010-07-14 13:10:24 -07:00
Nathan Heskew fa129682a9 More work towards wrapping up the initial content localization experience
- moved the Localization feature into the Content category
- cleaned up the UI a bit

--HG--
branch : dev
2010-07-14 11:34:19 -07:00
Nathan Heskew 1d20556a83 A little cleanup in the content management UI
- using content type display names on the creatable type list
- removed the readonly Name field on the content type edit page
- removed the "Edit global part config" link from content parts on the content type edit page
- changed the Create (Contents) page to an ascx

--HG--
branch : dev
2010-07-14 08:57:07 -07:00
Nathan Heskew a8634a5ca3 Making content publish if publishing isn't already handled by another part (explicitly checking for the CommonAspect at the moment)
--HG--
branch : dev
2010-07-14 08:54:19 -07:00
Nathan Heskew 4dc1e314bc Changing the priority of the "Content" admin menu group to let "Blog" above it
--HG--
branch : dev
2010-07-14 08:53:03 -07:00
Nathan Heskew a080a5ae5b Giving itemscope attributes a value (of itemscope) to keep resharper happy
--HG--
branch : dev
2010-07-13 23:04:36 -07:00
Nathan Heskew 12d2a94718 Using Path on IsRoutable directly in the driver & handler
--HG--
branch : dev
2010-07-13 22:27:01 -07:00
Nathan Heskew 4150f814b3 Moved "Manage Content Types" admin menu item up into the Content group
--HG--
branch : dev
2010-07-13 22:24:55 -07:00
Nathan Heskew 4c7973e2ce Disabling the Orchard.Pages module by default and adjusted the page content type configured during setup to be a page-like content type.
- also added a RoutableHomePageProvider to support a routable item as the home page

--HG--
branch : dev
2010-07-13 17:19:08 -07:00
Nathan Heskew 5bf2be1e19 Getting routable to work for the ItemDisplayLink HtmlHelper ext.
--HG--
branch : dev
2010-07-13 17:17:05 -07:00
Nathan Heskew 9b925a2a85 Small update to the localization service's GetLocalizations w/ a note to also query for scheduled items
--HG--
branch : dev
2010-07-13 11:31:39 -07:00
Nathan Heskew e4a20d7039 Fixed the content edit action to not blow up when there is not contentItem for the id
--HG--
branch : dev
2010-07-13 11:30:39 -07:00
Nathan Heskew 7c11b79b7d Some work towards moving the content publish editor over to the common part
--HG--
branch : dev
2010-07-13 10:14:46 -07:00
Nathan Heskew 501d72afab Swapped out Orchard.Core's Common Routable for the work in progress replacement, Orchard.Core's Routable (seperate core module now)
--HG--
branch : dev
2010-07-13 02:52:02 -07:00
Nathan Heskew 1ff677d24d Added links to localized content of an item on the front
--HG--
branch : dev
2010-07-12 23:35:43 -07:00
Nathan Heskew ac7a4ace9a Fixed the remove link on the content list (admin) page
--HG--
branch : dev
2010-07-12 23:34:34 -07:00
Nathan Heskew 9f252f479b Adding some empty display templates for content localization (content translations)
--HG--
branch : dev
2010-07-12 21:45:47 -07:00
Nathan Heskew 23b101a644 Starting to get some content localization hooked up.
- can create new translations and content items (in manage content) link to other localizations of the content
- still a bit buggy when creating a new translation to override an existing translation
- the ux is still, definately, a bid ol' wip

--HG--
branch : dev
2010-07-12 03:03:18 -07:00
Nathan Heskew b8cfb911c5 Getting the "Site Configuration" admin menu group back down to the bottom of the stack
--HG--
branch : dev
2010-07-09 23:40:16 -07:00
Nathan Heskew c4e83c6fd5 Some work towards content localization and some bugfixes* in the same proj
* added summary template for a content item and fixed the display of "Depends on:" on features in the feature management UI when the feature has no dependencies

--HG--
branch : dev
2010-07-09 14:14:17 -07:00
Nathan Heskew 751def4618 Making PackageIndexReferenceImplementation not spin up Cassini when debugging
--HG--
branch : dev
2010-07-09 09:56:50 -07:00
Nathan Heskew 639d534842 Giving the content edit page a title
--HG--
branch : dev
2010-07-08 15:51:19 -07:00
Nathan Heskew 42aabcdfea Starting to give more attention to generic content management (wip)
--HG--
branch : dev
2010-07-08 15:47:20 -07:00
Nathan Heskew f7803da193 Starting to give more attention to generic content management
--HG--
branch : dev
2010-07-08 10:12:34 -07:00
Nathan Heskew fd95b7284f Getting at available parts (to hook on to content types) differently to include appropriate code- and user-defined parts
--HG--
branch : dev
2010-07-07 12:29:30 -07:00
Nathan Heskew 8da1423511 Changed new content types to be part-free on creation
--HG--
branch : dev
2010-07-07 11:47:18 -07:00
Nathan Heskew 2ccd28fea1 Some features management CSS cleanup
--HG--
branch : dev
2010-07-07 11:15:05 -07:00
Nathan Heskew 75d7f6bc68 A bit of content type management refactoring
- put the controller on a diet
- made type display name changes take
- pulled some hard-coded template prefix strings into the view model

--HG--
branch : dev
2010-07-07 10:16:30 -07:00
Nathan Heskew d89eeb7985 Beginning some content type edit refactoring/cleanup
--HG--
branch : dev
2010-07-02 17:15:59 -07:00
Nathan Heskew d892e88d09 Added part creation and tidied up the content type management flow a little
- could make use of a redirectUrl for a little better experience

--HG--
branch : dev
2010-07-02 16:07:43 -07:00
Nathan Heskew 5214c80cdf Cleaned up the create content link on the content types (list) page
--HG--
branch : dev
2010-07-02 11:42:41 -07:00
Nathan Heskew 312bc56f6f Fixed a "typo" on the parts list page
--HG--
branch : dev
2010-07-02 11:30:18 -07:00
Nathan Heskew d2e93fd33b Added list of content parts
--HG--
branch : dev
2010-07-02 11:28:31 -07:00
Nathan Heskew f45e73bcbf Fixed the fields display when editing a content type
--HG--
branch : dev
2010-07-02 09:57:48 -07:00
Nathan Heskew 1df3d89638 Some edit type UI "refactoring" (in progress)
--HG--
branch : dev
2010-07-02 01:52:42 -07:00
Nathan Heskew c1f4474a85 Hooked up field removal from a content part
--HG--
branch : dev
2010-07-02 01:42:19 -07:00
Nathan Heskew ff91b4cac4 Some edit type UI "refactoring" (in progress)
--HG--
branch : dev
2010-07-01 17:47:31 -07:00
Nathan Heskew ef9ed3145e Fixed the links to features on the module list
--HG--
branch : dev
2010-07-01 15:35:06 -07:00
Nathan Heskew b95534b1cf A little more markup cleanup (of something that just gave me a 500)
--HG--
branch : dev
2010-07-01 15:21:51 -07:00
Nathan Heskew a42b842345 Hooked up part removal from a content type
- + some type editor related markup cleanup

--HG--
branch : dev
2010-07-01 15:06:24 -07:00
Nathan Heskew 80a0925e59 Hooked up the ability to add parts to content types (in the edit type UI)
--HG--
branch : dev
2010-06-30 16:19:06 -07:00
Nathan Heskew d3d88dd6ff Some notification additions/updates for content type editing.
--HG--
branch : dev
2010-06-30 14:22:31 -07:00
Nathan Heskew 7ee31c8e7c Getting the rest of the field settings (edit) hooked up when editing a content type
--HG--
branch : dev
2010-06-30 13:28:14 -07:00
Nathan Heskew 8ee4740c45 Getting a content type's field settings to save. Still need to expose and work with a type part's field settings.
--HG--
branch : dev
2010-06-30 10:06:39 -07:00
Nathan Heskew cce58c6a11 Getting field setting editors displayed in the content type editor (still need to hook up update...and refactor relevant actions)
--HG--
branch : dev
2010-06-29 16:00:01 -07:00
Nathan Heskew d6158e316b Hooking up part setting management when editing content types/parts
--HG--
branch : dev
2010-06-29 15:07:40 -07:00
Nathan Heskew 21328875f3 Made the DevTools content type setting UI a little more friendly
- also a friendly reminder to myself (or anyone reading this) that I need to hook up an overloaded Html.Label that takes a for value and label text

--HG--
branch : dev
2010-06-28 15:43:36 -07:00
Nathan Heskew 6d310fe3f1 Small update to not weld a content type's (implicit) part on twice
Also updated the Orchard.ContentTypes proj to not spin up cassini

--HG--
branch : dev
2010-06-28 13:22:34 -07:00
Nathan Heskew 0a38ebc8c4 Moved the CSS for Orchard.Content types to the new proj
--HG--
branch : dev
2010-06-28 10:13:48 -07:00
Nathan Heskew 41849b2067 Changed Orchard.ContentTypes feature category. Developer -> Content ("Custom Content" or "Site Builder" could also work)
--HG--
branch : dev
2010-06-28 10:08:17 -07:00
Nathan Heskew 3d1fc3bbc5 A little post Contents -> ContentTypes move view assembly import cleanup
--HG--
branch : dev
2010-06-28 09:33:46 -07:00
Nathan Heskew 360332fbb9 Some progress on adding fields to parts through the UI
--HG--
branch : dev
2010-06-24 13:30:57 -07:00
Nathan Heskew d74c9a13b2 Beginning of the "add field" UI for parts
--HG--
branch : dev
2010-06-23 14:53:41 -07:00
Nathan Heskew 289ade85bf Displaying and editing content part fields (in edit type UI)
--HG--
branch : dev
2010-06-23 12:18:07 -07:00
Nathan Heskew 3aad42eef4 More touchup of the parts management UI (when editing a content type) before moving on to fields
--HG--
branch : dev
2010-06-23 11:05:51 -07:00
Nathan Heskew 85544d1059 A little cleanup of the parts management UI (when editing a content type)
--HG--
branch : dev
2010-06-22 16:06:05 -07:00
Nathan Heskew 99cd97e080 Getting some editing for fields hooked up
--HG--
branch : dev
2010-06-22 15:30:15 -07:00
Nathan Heskew 416ed648b8 Same level of editing content parts as there is for types (minimal, rough and in progress)
--HG--
branch : dev
2010-06-22 12:56:14 -07:00
Nathan Heskew ab81cda4eb Getting some work towards being able to edit content types in to share the fun.
- includes changing settings from IDictionary<string, string> to SettingsDictionary : IDictionary<string, string> w/ GetModel<T>
- also cleaned up content type creation a little

--HG--
branch : dev
2010-06-22 03:36:04 -07:00
Nathan Heskew d126bc9f3d Changed the Orchard.Indexing project to not fire up Cassini
--HG--
branch : dev
2010-06-22 01:03:15 -07:00
Nathan Heskew c546d45f8e A little more MvcHtmlString/IHtmlString cleanup for the UnorderedList<T> HtmlHelper extensions
--HG--
branch : dev
2010-06-18 13:44:02 -07:00
Nathan Heskew 6e756f54ff Starting to get a UI around content type management
- added a DisplayName to the ContentTypeDefinition
- added a CreateRouteValues rvd to go along with the existing display and edit
- set default display, edit and create route values for ContentItemMetadata (* should get fallback route values in a different manner. probably not good to refer to an area, even by string, in core from the fwk)
- starting to shape up the content type list into a more consistent UI
- added create type action, view, etc. for creating new content types
 - supporting service has a few default parts hard-coded for now

--HG--
branch : dev
2010-06-16 04:22:51 -07:00