diff --git a/src/Orchard.Web/Advisory.html b/src/Orchard.Web/Advisory.html new file mode 100644 index 000000000..e1951380b --- /dev/null +++ b/src/Orchard.Web/Advisory.html @@ -0,0 +1,14 @@ + +
+ + + + + + \ No newline at end of file diff --git a/src/Orchard.Web/Core/Dashboard/Controllers/HelperController.cs b/src/Orchard.Web/Core/Dashboard/Controllers/HelperController.cs new file mode 100644 index 000000000..19afad490 --- /dev/null +++ b/src/Orchard.Web/Core/Dashboard/Controllers/HelperController.cs @@ -0,0 +1,12 @@ +using System.Web.Mvc; +using Orchard.Themes; + +namespace Orchard.Core.Dashboard.Controllers { + [Themed(false)] + public class HelperController : Controller { + + public ActionResult Index() { + return View(); + } + } +} \ No newline at end of file diff --git a/src/Orchard.Web/Core/Dashboard/Routes.cs b/src/Orchard.Web/Core/Dashboard/Routes.cs index 7662158f1..7a1929a20 100644 --- a/src/Orchard.Web/Core/Dashboard/Routes.cs +++ b/src/Orchard.Web/Core/Dashboard/Routes.cs @@ -26,6 +26,21 @@ namespace Orchard.Core.Dashboard { {"area", "Dashboard"} }, new MvcRouteHandler()) + }, + new RouteDescriptor { + Priority = -5, + Route = new Route( + "Admin/DashboardProxy", + new RouteValueDictionary { + {"area", "Dashboard"}, + {"controller", "Helper"}, + {"action", "Index"} + }, + new RouteValueDictionary(), + new RouteValueDictionary { + {"area", "Dashboard"} + }, + new MvcRouteHandler()) } }; } diff --git a/src/Orchard.Web/Core/Dashboard/Views/Admin/Index.cshtml b/src/Orchard.Web/Core/Dashboard/Views/Admin/Index.cshtml index 527adf575..bc5395e4b 100644 --- a/src/Orchard.Web/Core/Dashboard/Views/Admin/Index.cshtml +++ b/src/Orchard.Web/Core/Dashboard/Views/Admin/Index.cshtml @@ -1,5 +1,22 @@ @model dynamic + + + +@T("This is the place where you can manage your web site, its appearance and its contents. Please take a moment to explore the different menu items on the left of the screen to familiarize yourself with the features of the application. For example, try to change the theme through the “Manage Themes” menu entry. You can also create new pages and manage existing ones through the “Manage Pages” menu entry or create blogs through “Manage Blogs”.")
@T("Have fun!")
@T("The Orchard Team")