After talks with morten and stephane, this renames

IDocument -> IPublishedContent
DynamicDocument -> DynamicPublishedContent
This commit is contained in:
Shannon Deminick
2012-10-02 01:35:39 +05:00
parent 45c335702d
commit 053df24640
49 changed files with 528 additions and 528 deletions

View File

@@ -23,7 +23,7 @@ namespace Umbraco.Web.Routing
/// <returns>A value indicating whether an Umbraco document was found and assigned.</returns>
public bool TrySetDocument(DocumentRequest docRequest)
{
IDocument node = null;
IPublishedContent node = null;
int nodeId = -1;
if (docRequest.Uri.AbsolutePath != "/") // no id if "/"
@@ -42,7 +42,7 @@ namespace Umbraco.Web.Routing
if (node != null)
{
docRequest.Document = node;
docRequest.PublishedContent = node;
LogHelper.Debug<LookupByIdPath>("Found node with id={0}", () => docRequest.DocumentId);
}
else