This repository has been archived by the owner on Nov 21, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update to Umbraco 8.5.3 + add markdown editor
- Loading branch information
Showing
26 changed files
with
7,332 additions
and
107 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
//------------------------------------------------------------------------------ | ||
// <auto-generated> | ||
// This code was generated by a tool. | ||
// | ||
// Umbraco.ModelsBuilder v8.1.0 | ||
// | ||
// Changes to this file will be lost if the code is regenerated. | ||
// </auto-generated> | ||
//------------------------------------------------------------------------------ | ||
|
||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq.Expressions; | ||
using System.Web; | ||
using Umbraco.Core.Models; | ||
using Umbraco.Core.Models.PublishedContent; | ||
using Umbraco.Web; | ||
using Umbraco.ModelsBuilder; | ||
using Umbraco.ModelsBuilder.Umbraco; | ||
|
||
namespace Umbraco.Web.PublishedModels | ||
{ | ||
/// <summary>Markdown</summary> | ||
[PublishedModel("markdown")] | ||
public partial class Markdown : PublishedElementModel | ||
{ | ||
// helpers | ||
#pragma warning disable 0109 // new is redundant | ||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("Umbraco.ModelsBuilder", "8.1.0")] | ||
public new const string ModelTypeAlias = "markdown"; | ||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("Umbraco.ModelsBuilder", "8.1.0")] | ||
public new const PublishedItemType ModelItemType = PublishedItemType.Content; | ||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("Umbraco.ModelsBuilder", "8.1.0")] | ||
public new static IPublishedContentType GetModelContentType() | ||
=> PublishedModelUtility.GetModelContentType(ModelItemType, ModelTypeAlias); | ||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("Umbraco.ModelsBuilder", "8.1.0")] | ||
public static IPublishedPropertyType GetModelPropertyType<TValue>(Expression<Func<Markdown, TValue>> selector) | ||
=> PublishedModelUtility.GetModelPropertyType(GetModelContentType(), selector); | ||
#pragma warning restore 0109 | ||
|
||
// ctor | ||
public Markdown(IPublishedElement content) | ||
: base(content) | ||
{ } | ||
|
||
// properties | ||
|
||
///<summary> | ||
/// Content: Add content in markdown. | ||
///</summary> | ||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("Umbraco.ModelsBuilder", "8.1.0")] | ||
[ImplementPropertyType("content")] | ||
public IHtmlString Content => this.Value<IHtmlString>("content"); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,19 @@ | ||
{ | ||
"javascript": [ | ||
"~/app_plugins/uSync8/backoffice/uSync8/uSyncDashboardController.js", | ||
"~/app_plugins/uSync8/settings/settingsController.js", | ||
"~/app_plugins/uSync8/settings/expansionController.js", | ||
"~/app_plugins/uSync8/settings/uSyncController.js", | ||
"~/App_Plugins/uSync8/backoffice/uSync8/uSyncDashboardController.js?", | ||
"~/App_Plugins/uSync8/settings/settingsController.js", | ||
"~/App_Plugins/uSync8/settings/expansionController.js", | ||
"~/App_Plugins/uSync8/settings/uSyncController.js", | ||
|
||
"~/app_plugins/uSync8/uSyncService.js", | ||
"~/app_plugins/uSync8/uSyncHub.js", | ||
"~/app_plugins/uSync8/changeDialogController.js", | ||
"~/App_Plugins/uSync8/uSyncService.js", | ||
"~/App_Plugins/uSync8/uSyncHub.js", | ||
"~/App_Plugins/uSync8/changeDialogController.js", | ||
|
||
"~/app_plugins/uSync8/components/uSyncReportViewComponent.js", | ||
"~/app_plugins/uSync8/components/uSyncProgressViewComponent.js" | ||
"~/App_Plugins/uSync8/components/uSyncReportViewComponent.js", | ||
"~/App_Plugins/uSync8/components/uSyncProgressViewComponent.js" | ||
], | ||
"css": [ | ||
"~/app_plugins/uSync8/usync.css" | ||
"~/App_Plugins/uSync8/usync.css" | ||
], | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
18 changes: 18 additions & 0 deletions
18
U8StarterKit.Web/Properties/PublishProfiles/FolderProfile.pubxml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<!-- | ||
This file is used by the publish/package process of your Web project. You can customize the behavior of this process | ||
by editing this MSBuild file. In order to learn more about this please visit https://go.microsoft.com/fwlink/?LinkID=208121. | ||
--> | ||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<PropertyGroup> | ||
<WebPublishMethod>FileSystem</WebPublishMethod> | ||
<PublishProvider>FileSystem</PublishProvider> | ||
<LastUsedBuildConfiguration>Release</LastUsedBuildConfiguration> | ||
<LastUsedPlatform>Any CPU</LastUsedPlatform> | ||
<SiteUrlToLaunchAfterPublish /> | ||
<LaunchSiteAfterPublish>True</LaunchSiteAfterPublish> | ||
<ExcludeApp_Data>False</ExcludeApp_Data> | ||
<publishUrl>C:\Users\Matt\Desktop\bulma</publishUrl> | ||
<DeleteExistingFiles>True</DeleteExistingFiles> | ||
</PropertyGroup> | ||
</Project> |
Oops, something went wrong.