Adding stragies plus tests for publishing and updating the xml cache.

This commit is contained in:
sitereactor
2012-11-06 15:17:58 -01:00
parent 0b29a08d1d
commit 9b77eefb4c
12 changed files with 404 additions and 5 deletions

View File

@@ -46,6 +46,17 @@ namespace Umbraco.Core.Publishing
Published(content, e);
}
/// <summary>
/// Raises the <see cref="Published"/> event
/// </summary>
/// <param name="content"> </param>
/// <param name="e">The <see cref="System.EventArgs"/> instance containing the event data.</param>
protected virtual void OnPublished(IEnumerable<IContent> content, PublishingEventArgs e)
{
if (Published != null)
Published(content, e);
}
/// <summary>
/// Occurs before unpublish
/// </summary>