Changing term Topology to Blueprint

Verify consistent use of descriptor and blueprint
Update namespaces, but not folder paths, of same
Add small ISignal component for explicit app-triggered cache expiration tokens

--HG--
branch : dev
This commit is contained in:
Louis DeJardin
2010-06-11 17:17:00 -07:00
parent 8096a4234e
commit 4598e82a68
45 changed files with 321 additions and 278 deletions

View File

@@ -15,6 +15,7 @@ namespace Orchard.Core.Contents.Controllers {
_contentManager = contentManager;
}
// /Contents/Item/Display/72
public ActionResult Display(int id) {
var contentItem = _contentManager.Get(id, VersionOptions.Published);
@@ -25,6 +26,8 @@ namespace Orchard.Core.Contents.Controllers {
return View("Display", model);
}
// /Contents/Item/Preview/72
// /Contents/Item/Preview/72?version=5
public ActionResult Preview(int id, int? version) {
var versionOptions = VersionOptions.Latest;
if (version != null) {