From d13f0fad388b64c6596568465ff9c6db1c16ef45 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=A5kan=20Edling?= Date: Wed, 27 Oct 2021 21:24:09 +0200 Subject: [PATCH] Updated to Piranha 9.2 --- src/Example/Example.csproj | 11 ---- .../Pages/DisplayTemplates/StaticPage.cshtml | 11 ---- src/Example/Pages/Index.cshtml | 20 ------- src/Example/Pages/_Layout.cshtml | 28 --------- src/Example/Pages/_ViewImports.cshtml | 1 - src/Example/Pages/_ViewStart.cshtml | 3 - src/Example/Program.cs | 27 --------- src/Example/Startup.cs | 54 ------------------ src/Example/appsettings.Development.json | 9 --- src/Example/appsettings.json | 8 --- src/Example/wwwroot/data/01. Home/Index.md | 7 --- .../data/01. Home/_assets/icon-statica.png | Bin 5402 -> 0 bytes src/Example/wwwroot/data/02. The Page.md | 1 - .../wwwroot/data/03. About/01. Contact.md | 3 - .../wwwroot/data/03. About/02. Offices.md | 3 - src/Example/wwwroot/data/03. About/Index.md | 3 - .../wwwroot/data/04. Databases/01. SQLite.md | 3 - .../data/04. Databases/02. SQLServer.md | 3 - .../{ => Extensions}/StaticaExtensions.cs | 0 src/Statica/Statica.csproj | 8 +-- 20 files changed, 4 insertions(+), 199 deletions(-) delete mode 100644 src/Example/Example.csproj delete mode 100644 src/Example/Pages/DisplayTemplates/StaticPage.cshtml delete mode 100644 src/Example/Pages/Index.cshtml delete mode 100644 src/Example/Pages/_Layout.cshtml delete mode 100644 src/Example/Pages/_ViewImports.cshtml delete mode 100644 src/Example/Pages/_ViewStart.cshtml delete mode 100644 src/Example/Program.cs delete mode 100644 src/Example/Startup.cs delete mode 100644 src/Example/appsettings.Development.json delete mode 100644 src/Example/appsettings.json delete mode 100644 src/Example/wwwroot/data/01. Home/Index.md delete mode 100644 src/Example/wwwroot/data/01. Home/_assets/icon-statica.png delete mode 100644 src/Example/wwwroot/data/02. The Page.md delete mode 100644 src/Example/wwwroot/data/03. About/01. Contact.md delete mode 100644 src/Example/wwwroot/data/03. About/02. Offices.md delete mode 100644 src/Example/wwwroot/data/03. About/Index.md delete mode 100644 src/Example/wwwroot/data/04. Databases/01. SQLite.md delete mode 100644 src/Example/wwwroot/data/04. Databases/02. SQLServer.md rename src/Statica/{ => Extensions}/StaticaExtensions.cs (100%) diff --git a/src/Example/Example.csproj b/src/Example/Example.csproj deleted file mode 100644 index 7d4f863..0000000 --- a/src/Example/Example.csproj +++ /dev/null @@ -1,11 +0,0 @@ - - - - netcoreapp3.1 - - - - - - - diff --git a/src/Example/Pages/DisplayTemplates/StaticPage.cshtml b/src/Example/Pages/DisplayTemplates/StaticPage.cshtml deleted file mode 100644 index b6d2a91..0000000 --- a/src/Example/Pages/DisplayTemplates/StaticPage.cshtml +++ /dev/null @@ -1,11 +0,0 @@ -@model Statica.Models.StaticPage - -
  • - @Model.Title - @if (Model.Items.Count > 0) - { - - } -
  • \ No newline at end of file diff --git a/src/Example/Pages/Index.cshtml b/src/Example/Pages/Index.cshtml deleted file mode 100644 index 8c096d2..0000000 --- a/src/Example/Pages/Index.cshtml +++ /dev/null @@ -1,20 +0,0 @@ -@page "{**slug}" -@{ - var structure = Statica.GetStructure("blog"); - var slug = (string)RouteData.Values["slug"]; - var content = await structure.GetPageAsync(slug); -} - -@if (!string.IsNullOrWhiteSpace(slug)) -{ -

    - Created: @content.Created.ToString() - Last Modified: @content.LastModified.ToString() -

    - @Html.Raw(content.Body) -} -else -{ -

    Welcome to Statica

    -

    This is the intro text for the startpage.

    -} diff --git a/src/Example/Pages/_Layout.cshtml b/src/Example/Pages/_Layout.cshtml deleted file mode 100644 index 3854e7e..0000000 --- a/src/Example/Pages/_Layout.cshtml +++ /dev/null @@ -1,28 +0,0 @@ -@{ - var structure = Statica.GetStructure("blog"); -} - - - - Statica - - - -
    -
    -
    -
      - @Html.DisplayFor(m => structure.Sitemap.Items) -
    -
    -
    - @RenderBody() -
    -
    -
    - - - - - - \ No newline at end of file diff --git a/src/Example/Pages/_ViewImports.cshtml b/src/Example/Pages/_ViewImports.cshtml deleted file mode 100644 index a79fa3d..0000000 --- a/src/Example/Pages/_ViewImports.cshtml +++ /dev/null @@ -1 +0,0 @@ -@inject Statica.Services.IStaticaService Statica \ No newline at end of file diff --git a/src/Example/Pages/_ViewStart.cshtml b/src/Example/Pages/_ViewStart.cshtml deleted file mode 100644 index d641c67..0000000 --- a/src/Example/Pages/_ViewStart.cshtml +++ /dev/null @@ -1,3 +0,0 @@ -@{ - Layout = "_Layout"; -} \ No newline at end of file diff --git a/src/Example/Program.cs b/src/Example/Program.cs deleted file mode 100644 index 61fc9ef..0000000 --- a/src/Example/Program.cs +++ /dev/null @@ -1,27 +0,0 @@ -/* - * Copyright (c) 2019 Håkan Edling - * - * This software may be modified and distributed under the terms - * of the MIT license. See the LICENSE file for details. - * - * http://github.com/tidyui/statica - * - */ - -using Microsoft.AspNetCore; -using Microsoft.AspNetCore.Hosting; - -namespace Example -{ - public class Program - { - public static void Main(string[] args) - { - CreateWebHostBuilder(args).Build().Run(); - } - - public static IWebHostBuilder CreateWebHostBuilder(string[] args) => - WebHost.CreateDefaultBuilder(args) - .UseStartup(); - } -} diff --git a/src/Example/Startup.cs b/src/Example/Startup.cs deleted file mode 100644 index 2ffacf9..0000000 --- a/src/Example/Startup.cs +++ /dev/null @@ -1,54 +0,0 @@ -/* - * Copyright (c) 2019 Håkan Edling - * - * This software may be modified and distributed under the terms - * of the MIT license. See the LICENSE file for details. - * - * http://github.com/tidyui/statica - * - */ - -using Microsoft.AspNetCore.Builder; -using Microsoft.AspNetCore.Hosting; -using Microsoft.AspNetCore.Mvc; -using Microsoft.Extensions.DependencyInjection; -using Microsoft.Extensions.Hosting; -using Statica.Models; - -namespace Example -{ - public class Startup - { - // This method gets called by the runtime. Use this method to add services to the container. - // For more information on how to configure your application, visit https://go.microsoft.com/fwlink/?LinkID=398940 - public void ConfigureServices(IServiceCollection services) - { - services.AddMvc(); - services.AddMemoryCache(); - - services.AddStatica(new StaticStructure - { - Id = "blog", - DataPath = "wwwroot/data" - }); - } - - // This method gets called by the runtime. Use this method to configure the HTTP request pipeline. - public void Configure(IApplicationBuilder app, IWebHostEnvironment env) - { - if (env.IsDevelopment()) - { - app.UseDeveloperExceptionPage(); - } - - // Register middleware - app.UseStaticFiles(); - app.UseMvc(routes => - { - routes.MapRoute(name: "areaRoute", - template: "{area:exists}/{controller}/{action}/{id?}", - defaults: new { controller = "Home", action = "Index" }); - }); - } - } -} diff --git a/src/Example/appsettings.Development.json b/src/Example/appsettings.Development.json deleted file mode 100644 index a2880cb..0000000 --- a/src/Example/appsettings.Development.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "Logging": { - "LogLevel": { - "Default": "Debug", - "System": "Information", - "Microsoft": "Information" - } - } -} diff --git a/src/Example/appsettings.json b/src/Example/appsettings.json deleted file mode 100644 index 7376aad..0000000 --- a/src/Example/appsettings.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "Logging": { - "LogLevel": { - "Default": "Warning" - } - }, - "AllowedHosts": "*" -} diff --git a/src/Example/wwwroot/data/01. Home/Index.md b/src/Example/wwwroot/data/01. Home/Index.md deleted file mode 100644 index ebf0761..0000000 --- a/src/Example/wwwroot/data/01. Home/Index.md +++ /dev/null @@ -1,7 +0,0 @@ -# The index - -Cras mattis consectetur purus sit amet fermentum. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Donec id elit non mi porta gravida at eget metus. Donec sed odio dui. - -![Statica](_assets/icon-statica.png) - -Donec ullamcorper nulla non metus auctor fringilla. Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Cras justo odio, dapibus ac facilisis in, egestas eget quam. Morbi leo risus, porta ac consectetur ac, vestibulum at eros. Donec sed odio dui. \ No newline at end of file diff --git a/src/Example/wwwroot/data/01. Home/_assets/icon-statica.png b/src/Example/wwwroot/data/01. Home/_assets/icon-statica.png deleted file mode 100644 index 9bbe1b826456d251a63ea9bf88078911741d9c4b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 5402 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 diff --git a/src/Example/wwwroot/data/02. The Page.md b/src/Example/wwwroot/data/02. The Page.md deleted file mode 100644 index ae8b837..0000000 --- a/src/Example/wwwroot/data/02. The Page.md +++ /dev/null @@ -1 +0,0 @@ -# This is the page \ No newline at end of file diff --git a/src/Example/wwwroot/data/03. About/01. Contact.md b/src/Example/wwwroot/data/03. About/01. Contact.md deleted file mode 100644 index bbd4056..0000000 --- a/src/Example/wwwroot/data/03. About/01. Contact.md +++ /dev/null @@ -1,3 +0,0 @@ -# Contact - -Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam quis risus eget urna mollis ornare vel eu leo. Maecenas sed diam eget risus varius blandit sit amet non magna. Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Donec id elit non mi porta gravida at eget metus. Curabitur blandit tempus porttitor. \ No newline at end of file diff --git a/src/Example/wwwroot/data/03. About/02. Offices.md b/src/Example/wwwroot/data/03. About/02. Offices.md deleted file mode 100644 index 705c140..0000000 --- a/src/Example/wwwroot/data/03. About/02. Offices.md +++ /dev/null @@ -1,3 +0,0 @@ -# Offices - -Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor. Maecenas faucibus mollis interdum. Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Morbi leo risus, porta ac consectetur ac, vestibulum at eros. \ No newline at end of file diff --git a/src/Example/wwwroot/data/03. About/Index.md b/src/Example/wwwroot/data/03. About/Index.md deleted file mode 100644 index becc34b..0000000 --- a/src/Example/wwwroot/data/03. About/Index.md +++ /dev/null @@ -1,3 +0,0 @@ -# About us - -Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor. Donec sed odio dui. Nullam id dolor id nibh ultricies vehicula ut id elit. Nulla vitae elit libero, a pharetra augue. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. \ No newline at end of file diff --git a/src/Example/wwwroot/data/04. Databases/01. SQLite.md b/src/Example/wwwroot/data/04. Databases/01. SQLite.md deleted file mode 100644 index 4546ca3..0000000 --- a/src/Example/wwwroot/data/04. Databases/01. SQLite.md +++ /dev/null @@ -1,3 +0,0 @@ -# SQLite - -Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Sed posuere consectetur est at lobortis. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. \ No newline at end of file diff --git a/src/Example/wwwroot/data/04. Databases/02. SQLServer.md b/src/Example/wwwroot/data/04. Databases/02. SQLServer.md deleted file mode 100644 index 7094741..0000000 --- a/src/Example/wwwroot/data/04. Databases/02. SQLServer.md +++ /dev/null @@ -1,3 +0,0 @@ -# SQLServer - -Cras justo odio, dapibus ac facilisis in, egestas eget quam. Curabitur blandit tempus porttitor. Etiam porta sem malesuada magna mollis euismod. Morbi leo risus, porta ac consectetur ac, vestibulum at eros. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. \ No newline at end of file diff --git a/src/Statica/StaticaExtensions.cs b/src/Statica/Extensions/StaticaExtensions.cs similarity index 100% rename from src/Statica/StaticaExtensions.cs rename to src/Statica/Extensions/StaticaExtensions.cs diff --git a/src/Statica/Statica.csproj b/src/Statica/Statica.csproj index 6e2db98..0e2d092 100644 --- a/src/Statica/Statica.csproj +++ b/src/Statica/Statica.csproj @@ -1,15 +1,15 @@ - netcoreapp3.1 - 0.3.5 + net5 + 1.0.0 true true true snupkg Statica - 0.3.5 + 1.0.0 Håkan Edling Piranha Module for generating a partial page structure from local markdown files. Copyright 2019-2021 (c) Håkan Edling @@ -28,7 +28,7 @@ - +