renamed DynamicDocumentList to DynamicPublishedContentList
simplified some of the DynamicPublishedContent methods to accept Func<IPublishedContent> instead of Func<DynamicPublishedContent>, made the IsHelper method private as this shouldn't be exposed. renamed other objects starting with DynamicDocument to DynamicPublishedContent
This commit is contained in:
@@ -12,7 +12,7 @@ namespace Umbraco.Web
|
||||
/// </summary>
|
||||
internal static class ExamineExtensions
|
||||
{
|
||||
internal static DynamicDocumentList ConvertSearchResultToDynamicDocument(
|
||||
internal static DynamicPublishedContentList ConvertSearchResultToDynamicDocument(
|
||||
this IEnumerable<SearchResult> results,
|
||||
IPublishedStore store)
|
||||
{
|
||||
@@ -20,7 +20,7 @@ namespace Umbraco.Web
|
||||
// however thsi is currently not the case:
|
||||
// http://examine.codeplex.com/workitem/10350
|
||||
|
||||
var list = new DynamicDocumentList();
|
||||
var list = new DynamicPublishedContentList();
|
||||
var xd = new XmlDocument();
|
||||
|
||||
foreach (var result in results.OrderByDescending(x => x.Score))
|
||||
|
||||
Reference in New Issue
Block a user