2018-06-29 19:52:40 +02:00
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion= "15.0" >
<Import Project= "$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition= "Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup >
<TargetFrameworkVersion > v4.7.2</TargetFrameworkVersion>
<EnableDefaultCompileItems > false</EnableDefaultCompileItems>
<ProjectGuid > {4C4C194C-B5E4-4991-8F87-4373E24CC19F}</ProjectGuid>
<OutputType > Library</OutputType>
<AssemblyName > Umbraco.Web.UI</AssemblyName>
<RootNamespace > Umbraco.Web.UI</RootNamespace>
<SolutionDir Condition= "$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'" > ..\</SolutionDir>
<ProjectTypeGuids > {349c5851-65df-11da-9384-00065b846f21};{fae04ec0-301f-11d3-bf4b-00c04f79efbc}</ProjectTypeGuids>
<RunPostBuildEvent > OnBuildSuccess</RunPostBuildEvent>
<UseIISExpress > true</UseIISExpress>
2019-10-29 00:25:03 +11:00
<IISExpressSSLPort > 44331</IISExpressSSLPort>
2018-06-29 19:52:40 +02:00
<IISExpressAnonymousAuthentication > enabled</IISExpressAnonymousAuthentication>
<IISExpressWindowsAuthentication > disabled</IISExpressWindowsAuthentication>
<IISExpressUseClassicPipelineMode > false</IISExpressUseClassicPipelineMode>
<UseGlobalApplicationHostFile />
<NuGetPackageImportStamp >
</NuGetPackageImportStamp>
<Use64BitIISExpress />
<TargetFrameworkProfile />
2019-02-13 13:44:26 +00:00
<!--
2018-06-29 19:52:40 +02:00
for some weird reason, and because Web.config is created only during BeforeBuild,
the web.config configuration file would not be picked, and the build system would
try to use a traditional app.config, thus missing all the binding redirects.
2019-02-13 13:44:26 +00:00
2018-06-29 19:52:40 +02:00
this ensures that the build system things that the config file is web.config.
2019-02-13 13:44:26 +00:00
2018-06-29 19:52:40 +02:00
(see FindAppConfigFile target in detailed build output)
-->
<AppConfig > Web.config</AppConfig>
2019-10-29 19:37:15 +01:00
<AdditionalFileItemNames > $(AdditionalFileItemNames);Content</AdditionalFileItemNames>
2018-06-29 19:52:40 +02:00
</PropertyGroup>
<PropertyGroup Condition= " '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' " >
<DebugSymbols > true</DebugSymbols>
2019-07-01 10:54:29 +01:00
<DebugType > full</DebugType>
2018-06-29 19:52:40 +02:00
<Optimize > false</Optimize>
<OutputPath > bin\</OutputPath>
<DefineConstants > TRACE;DEBUG</DefineConstants>
<ErrorReport > prompt</ErrorReport>
<WarningLevel > 4</WarningLevel>
<Prefer32Bit > false</Prefer32Bit>
<IntermediateOutputPath > ..\bin\Debug\</IntermediateOutputPath>
<PackageAsSingleFile > true</PackageAsSingleFile>
<DesktopBuildPackageLocation > ..\Package\Umbraco.Web.UI.zip</DesktopBuildPackageLocation>
<LangVersion > latest</LangVersion>
</PropertyGroup>
<PropertyGroup Condition= " '$(Configuration)|$(Platform)' == 'Release|AnyCPU' " >
<DebugSymbols > true</DebugSymbols>
<DebugType > pdbonly</DebugType>
<Optimize > true</Optimize>
<OutputPath > bin\</OutputPath>
<DefineConstants > TRACE</DefineConstants>
<ErrorReport > prompt</ErrorReport>
<WarningLevel > 4</WarningLevel>
<DocumentationFile > bin\Umbraco.Web.UI.xml</DocumentationFile>
<Prefer32Bit > false</Prefer32Bit>
<IntermediateOutputPath > ..\bin\Release\</IntermediateOutputPath>
<LangVersion > latest</LangVersion>
</PropertyGroup>
<ItemGroup >
<Reference Include= "Microsoft.CSharp" />
<Reference Include= "System.ComponentModel" />
<Reference Include= "System.Data" />
<Reference Include= "System.Drawing" />
<Reference Include= "System.Drawing.Design" />
<Reference Include= "System.IdentityModel" />
<Reference Include= "System.Runtime.Serialization" />
<Reference Include= "System" />
<Reference Include= "System.ComponentModel.Composition" />
<Reference Include= "System.ComponentModel.DataAnnotations" />
<Reference Include= "System.Web" />
<Reference Include= "System.Web.Abstractions" />
<Reference Include= "System.Web.ApplicationServices" />
<Reference Include= "System.Web.Entity" />
<Reference Include= "System.Web.Extensions" />
<Reference Include= "System.Web.Services" />
<Reference Include= "System.Xml" />
</ItemGroup>
<ItemGroup >
<Folder Include= "App_Data\" />
2019-11-01 11:33:15 +11:00
<Folder Include= "App_Plugins\" />
2018-06-29 19:52:40 +02:00
<Folder Include= "Views\MacroPartials\" />
</ItemGroup>
<ItemGroup >
<PackageReference Include= "CSharpTest.Net.Collections" Version= "14.906.1403.1082" />
2020-03-12 11:50:02 +00:00
<PackageReference Include= "ClientDependency" Version= "1.9.9" />
2019-11-12 08:50:31 +01:00
<PackageReference Include= "ClientDependency-Mvc5" Version= "1.9.3" />
2021-02-18 22:08:12 +01:00
<PackageReference Include= "Examine" Version= "1.1.0" />
2019-02-14 20:45:34 +01:00
<PackageReference Include= "ImageProcessor.Web" Version= "4.10.0.100" />
<PackageReference Include= "ImageProcessor.Web.Config" Version= "2.5.0.100" />
2018-08-29 01:15:46 +10:00
<PackageReference Include= "Microsoft.AspNet.Identity.Owin" Version= "2.2.2" />
2019-02-06 16:53:15 +11:00
<PackageReference Include= "Microsoft.AspNet.Mvc" Version= "5.2.7" />
<PackageReference Include= "Microsoft.AspNet.WebApi" Version= "5.2.7" />
2019-01-02 18:17:07 +01:00
<PackageReference Include= "Microsoft.CodeAnalysis.CSharp" Version= "2.10.0" />
2019-01-07 09:45:36 +01:00
<PackageReference Include= "Microsoft.CodeDom.Providers.DotNetCompilerPlatform" Version= "2.0.1" />
2019-02-06 17:08:47 +11:00
<PackageReference Include= "Microsoft.Owin.Host.SystemWeb" Version= "4.0.1" />
2019-02-06 16:53:15 +11:00
<PackageReference Include= "Microsoft.Owin.Security.Cookies" Version= "4.0.1" />
<PackageReference Include= "Microsoft.Owin.Security.OAuth" Version= "4.0.1" />
2019-06-23 19:57:43 +01:00
<PackageReference Include= "Microsoft.SourceLink.GitHub" >
2019-07-01 10:13:31 +01:00
<Version > 1.0.0-beta2-19324-01</Version>
2019-06-23 19:57:43 +01:00
<IncludeAssets > runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets > all</PrivateAssets>
</PackageReference>
2019-02-06 19:04:52 +11:00
<PackageReference Include= "MiniProfiler" Version= "4.0.138" />
2019-02-06 16:43:04 +11:00
<PackageReference Include= "Newtonsoft.Json" Version= "12.0.1" />
2019-10-29 19:37:15 +01:00
<PackageReference Include= "SecurityCodeScan" >
<Version > 3.3.0</Version>
<IncludeAssets > runtime; build; native; contentfiles; analyzers</IncludeAssets>
<PrivateAssets > all</PrivateAssets>
</PackageReference>
2018-06-29 19:52:40 +02:00
<PackageReference Include= "Umbraco.SqlServerCE" Version= "4.0.0.1" />
</ItemGroup>
<ItemGroup >
<ProjectReference Include= "..\Umbraco.Core\Umbraco.Core.csproj" >
<Project > {31785bc3-256c-4613-b2f5-a1b0bdded8c1}</Project>
<Name > Umbraco.Core</Name>
</ProjectReference>
<ProjectReference Include= "..\Umbraco.Examine\Umbraco.Examine.csproj" >
<Name > Umbraco.Examine</Name>
<Project > {07FBC26B-2927-4A22-8D96-D644C667FECC}</Project>
</ProjectReference>
2019-10-29 01:14:10 +11:00
<ProjectReference Include= "..\Umbraco.ModelsBuilder.Embedded\Umbraco.ModelsBuilder.Embedded.csproj" >
<Project > {52ac0ba8-a60e-4e36-897b-e8b97a54ed1c}</Project>
<Name > Umbraco.ModelsBuilder.Embedded</Name>
</ProjectReference>
2018-06-29 19:52:40 +02:00
<ProjectReference Include= "..\Umbraco.Web\Umbraco.Web.csproj" >
<Project > {651e1350-91b6-44b7-bd60-7207006d7003}</Project>
<Name > Umbraco.Web</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup >
<Compile Include= "..\SolutionInfo.cs" >
<Link > Properties\SolutionInfo.cs</Link>
</Compile>
<Compile Include= "Config\splashes\NoNodes.aspx.cs" >
<DependentUpon > noNodes.aspx</DependentUpon>
<SubType > ASPXCodeBehind</SubType>
</Compile>
<Compile Include= "Config\splashes\NoNodes.aspx.designer.cs" >
<DependentUpon > noNodes.aspx</DependentUpon>
</Compile>
<Compile Include= "Properties\AssemblyInfo.cs" />
<Compile Include= "Properties\Settings.Designer.cs" >
<AutoGen > True</AutoGen>
<DesignTimeSharedInput > True</DesignTimeSharedInput>
<DependentUpon > Settings.settings</DependentUpon>
</Compile>
<Content Include= "Config\grid.editors.config.js" />
<Content Include= "Config\Lang\cs-CZ.user.xml" />
<Content Include= "Config\Lang\da-DK.user.xml" />
<Content Include= "Config\Lang\de-DE.user.xml" />
<Content Include= "Config\Lang\en-GB.user.xml" />
<Content Include= "Config\Lang\en-US.user.xml" />
<Content Include= "Config\Lang\es-ES.user.xml" />
<Content Include= "Config\Lang\fr-FR.user.xml" />
<Content Include= "Config\Lang\he-IL.user.xml" />
<Content Include= "Config\Lang\it-IT.user.xml" />
<Content Include= "Config\Lang\ja-JP.user.xml" />
<Content Include= "Config\Lang\ko-KR.user.xml" />
<Content Include= "Config\Lang\nl-NL.user.xml" />
<Content Include= "Config\Lang\nb-NO.user.xml" />
<Content Include= "Config\Lang\pl-PL.user.xml" />
<Content Include= "Config\Lang\pt-BR.user.xml" />
<Content Include= "Config\Lang\ru-RU.user.xml" />
<Content Include= "Config\Lang\sv-SE.user.xml" />
<Content Include= "Config\Lang\zh-CN.user.xml" />
2019-01-24 13:58:16 +00:00
<Content Include= "Config\splashes\noNodes.aspx" />
2018-06-29 19:52:40 +02:00
<Content Include= "Umbraco\Config\Lang\cs.xml" />
2020-10-14 11:21:51 +01:00
<Content Include= "Umbraco\Config\Lang\cy.xml" />
2018-06-29 19:52:40 +02:00
<Content Include= "Umbraco\Config\Lang\tr.xml" />
<Content Include= "Umbraco\Config\Lang\zh_tw.xml" />
2019-01-30 22:01:57 +11:00
<Content Include= "Config\Splashes\noNodes.aspx" />
2018-06-29 19:52:40 +02:00
<Content Include= "Umbraco\Install\Views\Web.config" />
<None Include= "Config\ClientDependency.Release.config" >
<DependentUpon > ClientDependency.config</DependentUpon>
<SubType > Designer</SubType>
</None>
<Content Include= "Config\imageprocessor\security.config" />
<Content Include= "Config\imageprocessor\processing.config" />
<Content Include= "Config\imageprocessor\cache.config" >
<SubType > Designer</SubType>
</Content>
<Content Include= "Config\HealthChecks.config" >
<SubType > Designer</SubType>
</Content>
<None Include= "Config\HealthChecks.Release.config" >
<DependentUpon > HealthChecks.config</DependentUpon>
<SubType > Designer</SubType>
</None>
2018-08-09 22:08:40 +01:00
<Content Include= "Config\serilog.user.config" >
<SubType > Designer</SubType>
</Content>
2019-02-13 13:44:26 +00:00
<None Include= "Config\serilog.user.Release.config" >
2019-02-14 14:23:08 +01:00
<DependentUpon > serilog.user.config</DependentUpon>
<SubType > Designer</SubType>
2019-02-13 13:44:26 +00:00
</None>
2018-07-31 09:50:43 +01:00
<Content Include= "Config\serilog.config" >
<SubType > Designer</SubType>
</Content>
2019-02-13 13:44:26 +00:00
<None Include= "Config\serilog.Release.config" >
2019-02-14 14:23:08 +01:00
<DependentUpon > serilog.config</DependentUpon>
<SubType > Designer</SubType>
2019-02-13 13:44:26 +00:00
</None>
<Content Include= "Config\logviewer.searches.config.js" />
2018-06-29 19:52:40 +02:00
<None Include= "Config\umbracoSettings.Release.config" >
<DependentUpon > umbracoSettings.config</DependentUpon>
<SubType > Designer</SubType>
</None>
<None Include= "Config\tinyMceConfig.Release.config" >
<DependentUpon > tinyMceConfig.config</DependentUpon>
<SubType > Designer</SubType>
</None>
<Content Include= "Umbraco\Install\Views\Index.cshtml" />
<Content Include= "Media\Web.config" />
<Content Include= "Properties\Settings.settings" >
<Generator > SettingsSingleFileGenerator</Generator>
<LastGenOutput > Settings.Designer.cs</LastGenOutput>
</Content>
<Content Include= "Global.asax" />
<Content Include= "Umbraco\Config\Lang\en_us.xml" >
<SubType > Designer</SubType>
</Content>
<Content Include= "Umbraco\Config\Lang\he.xml" />
<Content Include= "Umbraco\Config\Lang\ja.xml" />
<Content Include= "Umbraco\Config\Lang\pl.xml" />
<Content Include= "Umbraco\Config\Lang\pt.xml" />
<Content Include= "Umbraco\Config\Lang\ru.xml" />
<Content Include= "Umbraco\Config\Lang\zh.xml" />
<Content Include= "Umbraco\Config\Lang\ko.xml" />
2018-10-08 11:58:22 +02:00
<Content Include= "Umbraco\Config\Lang\da.xml" >
<SubType > Designer</SubType>
</Content>
2018-06-29 19:52:40 +02:00
<Content Include= "Umbraco\Config\Lang\de.xml" />
<Content Include= "Umbraco\Config\Lang\es.xml" />
<Content Include= "Umbraco\Config\Lang\fr.xml" />
<Content Include= "Umbraco\Config\Lang\it.xml" />
<Content Include= "Umbraco\Config\Lang\nl.xml" />
<Content Include= "Umbraco\Config\Lang\nb.xml" />
<Content Include= "Umbraco\Config\Lang\sv.xml" />
<Content Include= "Umbraco\Config\Lang\en.xml" >
<SubType > Designer</SubType>
</Content>
<Content Include= "Umbraco\Js\UmbracoSpeechBubbleBackEnd.js" />
<Content Include= "Config\ClientDependency.config" >
<SubType > Designer</SubType>
</Content>
<Content Include= "Umbraco\Views\Default.cshtml" />
<Content Include= "Umbraco\PartialViewMacros\Templates\EditProfile.cshtml" />
<Content Include= "Umbraco\PartialViewMacros\Templates\Empty.cshtml" />
<Content Include= "Umbraco\PartialViewMacros\Templates\Login.cshtml" />
<Content Include= "Umbraco\PartialViewMacros\Templates\LoginStatus.cshtml" />
<Content Include= "Umbraco\PartialViewMacros\Templates\RegisterMember.cshtml" />
<Content Include= "Umbraco\PartialViewMacros\Templates\ListAncestorsFromCurrentPage.cshtml" />
<Content Include= "Umbraco\PartialViewMacros\Templates\Breadcrumb.cshtml" />
<Content Include= "Umbraco\PartialViewMacros\Templates\Gallery.cshtml" />
<Content Include= "Umbraco\PartialViewMacros\Templates\ListChildPagesFromChangeableSource.cshtml" />
<Content Include= "Umbraco\PartialViewMacros\Templates\ListChildPagesFromCurrentPage.cshtml" >
<SubType > Code</SubType>
</Content>
<Content Include= "Umbraco\PartialViewMacros\Templates\ListChildPagesOrderedByDate.cshtml" />
<Content Include= "Umbraco\PartialViewMacros\Templates\ListChildPagesOrderedByName.cshtml" />
<Content Include= "Umbraco\PartialViewMacros\Templates\ListChildPagesOrderedByProperty.cshtml" />
<Content Include= "Umbraco\PartialViewMacros\Templates\ListChildPagesWithDoctype.cshtml" />
<Content Include= "Umbraco\PartialViewMacros\Templates\ListDescendantsFromCurrentPage.cshtml" />
<Content Include= "Umbraco\PartialViewMacros\Templates\ListImagesFromMediaFolder.cshtml" />
<Content Include= "Umbraco\PartialViewMacros\Templates\MultinodeTree-picker.cshtml" />
<Content Include= "Umbraco\PartialViewMacros\Templates\Navigation.cshtml" />
<Content Include= "Umbraco\PartialViewMacros\Templates\SiteMap.cshtml" />
<Content Include= "Umbraco\Views\AuthorizeUpgrade.cshtml" />
<Content Include= "Views\Web.config" >
<SubType > Designer</SubType>
</Content>
<Content Include= "Web.config" >
<SubType > Designer</SubType>
</Content>
<Content Include= "Views\Partials\Grid\Bootstrap3.cshtml" />
<Content Include= "Views\Partials\Grid\Editors\Embed.cshtml" />
<Content Include= "Views\Partials\Grid\Editors\Macro.cshtml" />
<Content Include= "Views\Partials\Grid\Editors\Media.cshtml" />
<Content Include= "Views\Partials\Grid\Editors\Rte.cshtml" />
<Content Include= "Views\Partials\Grid\Editors\Textstring.cshtml" />
<Content Include= "Views\Partials\Grid\Editors\Base.cshtml" />
<Content Include= "Views\Partials\Grid\Bootstrap3-Fluid.cshtml" />
<Content Include= "Umbraco\Views\Preview\Index.cshtml" />
<Content Include= "Umbraco\Views\web.config" />
Block Editor List (#8273)
* add style to create-option in itempicker + removing overflow hidden
* style adjustment
* clean up of html
* correct sentence to use the number 7
* correct overlays, so they can use size
* numberrange prevalue editor
* add confirmRemove overlay
* correcting primary btn colors
* move confirmMessage below content of overlay.
* min max validation for numberrange
* remove comment
* improved actions for block list
* use file tree for view picker
* style adjustment to border of creator item in item-picker
* vertical align
* clean up + validation limit range
* rename ElementTypes to Blocks
* implement block list editor
* renaming
* use Chrome Headless for unit tests
* test for blockEditorService
* safer code
* block list editor
* rename view to overlayView
* block editor work
* Revert "rename view to overlayView"
This reverts commit 5b910c178a4f193d190367c4f1da3402aa8c4d0e.
* block editor implementation
* sync models
* block list editor copy paste feature
* order var declarations
* remove unused paste function
* block list editor better naming
* simpler label generation
* clean up
* compile config for test mode
* Chrome Debug for VS code
* promise test working
* space change
* another two tests
* more tests for block list editor
* provide key on blockModel for angularJS performance optimization
* syncronization from infinite editing layers
* use an isolated scope
* more tests
* fix C# test
* remove unused block watcher component
* clean css
* only show on hover or focus for block-actions
* clean up and prepare for implementing settings
* remove console
* Add ability to render block list editor using Grid style rendering extension
* Enable Block List Editor settings editing
* Add Stacked Content to Block List migration
* Block Editor: Clean-up, refactoring, one step closer being ready for Content-Apps
* changes naming to Submit, to avoid misunderstanding.
* use a common variable on the block model for isOpen, to be able to make Actions show when open.
* NotSupported property editor, to be used when an editor is not supported in the given context.
* remove unused controller
* Hide group header if only one group is presented
* rename notsupport property editor css class
* smaller header for property group
* hide description if no description is presented
* css adjustments
* Inline create button styling: Better spacing, darker blue color for Focus Outline, moving the plus icon to mouse position for better visual appearance.
* css correction
* Add references for picked items
* Revert commit 45e892f3505059674779c6e1a43084a367c2862f - Changes api to GetData
* Use the .Data propertry as opposed to GetData in this PartialView
* Fix block list test failures
* Just parsing layout as model for partial views.
* minor adjustments
* Remove DB migrations so that they can be reviewed as a block
* Add migrations for new block editor
* Update default rendering partial view
* Add error handling to default template
* Handle color picker data in stacked content
* BlockList PreValue Editor opens configurations as overlay
* translation for prevalue editor property group headlines
* blockcard corrections
* block list prevalue corrections
* revert agressive clean up
* Block Picker
* MaxPropertyWidth PreValue + Implementation
* Incorporate latest block list editor changes, update migration for changed configuration
* Change declared converter type
* Handle invalid data type references
* Remove code duplicated from PR #7957
* use ElementModel for the ContentModel of an ElementType. So we can use ElementTypeModel for the ModelDefinition aka. the Type.
* do still show itempicker for BlockConfiguration even though there is no ElementTypes to pick. This enables the option to create a new ElementType to be used.
* use the right wrapper, for correct spacing
* parse item
* correct fallback for label
* removed unused callback
* paste feature for block-picker
* localize block-picker tabs
* Slightly change for shadow on block-picker item hover
* Localization of BlockEditor Settings Tab
* localizationService
* only filter when more than 8 items available
* Add multiple blocks if hold down CTRL or SuperKey
* adds notes
* ability to add a scoped stylesheet for block view
* make scoped block draggable + style adjustments
* provide index for custom view
* rename contentModel to data + rename layoutModel to layout
* clean up
* more localization
* openSettings option for block editor
* minor changes for a better developer experience
* paste mistake corrected
* only manipulate content-content-app if its present
* make small overlays slightly bigger
* moved block list entry editor into block list editor folder
* limit labelinterpretator to only runs ones pr. edit. and lets make sure to have a label thought we dont have any properties.
* fixed inline views gulp watcher
* changed vm to a better controller instance name
* make watch for views work again.
* able to re run watch
* make js up to date
* fix white background of image-picker
* media-picker container class
* loading indication
* adjust unit tests to latest interface
* getting started on JS Docs
* converting code to use contentTypeKey instead of contentTypeAlias, still missing a few TODOs.
* revert change
* add todo
* use Guid for Key
* use key
* Updates the caching layer to handle GUID keys for content types while preserving backwards compat, fixes unit tests, removes the strongly typed lists for the block editor value since it's unecessary
* Reverts the nested content changes, fixes up the GetEmptyByKey
* Returns ContentTypeKey from the server, updates js to use this everywhere and fix all js tests.
* Allows key in SimpleContentType
* correct for the new spelling
* appended this. since the method is a non-static class method.
* only add background-image if value isnt null
* simplifyed limits validation
* clean up
* no need to execute a digest.
* define the full model for new configurations
* removed setDataFromBlockModel and general clean up and added documentation
* default size should be medium
* use retriveValuesFrom method to transfer data.
* ability to disable an navigation item
* createElementTypeAndCallback working again for settings.
* still have the ability to retrive a scaffold model by alias, since we are still using alias in clipboard service.
* disable clipboard tab if no available paste options
* ups, should stay as alias
* disable clipboard when empty
* use property alias for content add button
* use a grey that can be seen on top of grey and on top of white.
* some accessibility improvements
* rename entry to block
* appended ' and added space in Element Type
* use background color for hover to corospond with active state
* make nested content unsupported
* Moving BlockEditorModelObject into its own file for Documentation purpose. Same goes for renaming BlockModel to BlockObject. and a lot of documentation written.
* fix links in js docs
* added a blocklistentryeditor for unsupported blocks
* ability to retrive the $scope from UmbVariantContentEditors, needed for Block Editor to get a scope existing across variants and splitview.
* Appending the block objects to layout, to share it across variants and in split-view.
* removed trailing comma
* Unsupported block
* Dont copy unsupported blocks
* use grey color for unsupported block
* text correction
* we dont have this fallback anymore
* sort properties
* Text change
* css correction
* use active to determine if an inline editor is expanded. To enable the inline editor to be expanded on creation.
* using udi instead of key.
* bringing the runtime block key back
* live editing ability
* live editing for settings data
* call formSubmit before property editor are removed from DOM. Both for overlay-editing and inline-editing. Fire an postFormSubmitting event after formSubmitting event to let editors know that data could have been updated.
* make sure settings object exists
* only set active to false if it was false before opening the editor.
* update test with new scope parameter
* move destroy responsibility to blockObject
* rename onDestroy to destroy
* added some JS-Docs
* correction jsDocs
* Update ElementType Resource to not use hardcoded URL but to use the Umbraco.Sys.ServerVariables.umbracoUrls instead
* Remove partially completed ConvertToElement migration, fixed in issue 7939 instead.
* Remove external property editor migration
* corrected naming of umbBlockListScopedBlock and umbBlockListBlock
* correct ngdoc type
* removed vscode specific configuration of karma
* Finished Todo, gets name of documentType if copying all entities in an infinite editor
* changed comment from TODO to something that explains the state.
* stop tracking build output files.
* rename files to match file name conventions
* this should not happen.
* remove dublicated code
* rename requestCopyBlock to copyBlock
* make sure images does not repeat.
* scale thumbnail for block showcase
* renamed blockcard.component to umb-block-card and moved it.
* removed inline style
* correct style location
* corrected filepath
* corrected file path
* keep elementTypes up to date through the EventService.
* mark Umbraco.BlockList as unsupported inside Nested Content
* correct js docs name
* remove comment
* remove comment
* remove unused controller
* rename inline method name
* corrected spelling mistake
* remove not very used vars
* make binding one-way
* split in multiple lines
* corrected default rendering
* removing documentation that is relevant for developers of new block editors. this documentation will be transfered to Our documentation.
* added danish translation
* corrected blog to blok
* Remove invalid using statement
* use native forEach
Co-authored-by: Niels Lyngsø <nsl@umbraco.dk>
Co-authored-by: Benjamin Carleski <benjamin@proworks.com>
Co-authored-by: Warren Buckley <warren@umbraco.com>
Co-authored-by: Niels Lyngsø <nsl@umbraco.com>
Co-authored-by: Niels Lyngsø <niels.lyngso@gmail.com>
Co-authored-by: Claus <claus@claus.nu>
2020-06-30 19:52:42 +10:00
<Content Include= "Views\Partials\BlockList\Default.cshtml" />
2018-06-29 19:52:40 +02:00
<None Include= "Web.Debug.config.transformed" />
<None Include= "web.Template.Debug.config" >
<DependentUpon > Web.Template.config</DependentUpon>
<SubType > Designer</SubType>
</None>
<None Include= "web.Template.Release.config" >
<DependentUpon > Web.Template.config</DependentUpon>
<SubType > Designer</SubType>
</None>
<Content Include= "Umbraco\Js\dualSelectBox.js" />
<Content Include= "Umbraco\Js\guiFunctions.js" />
<Content Include= "Umbraco\Js\umbracoCheckKeys.js" />
<!-- <Content Include="Umbraco\users\PermissionEditor.aspx" /> -->
<None Include= "web.Template.config" >
<SubType > Designer</SubType>
</None>
<Content Include= "Config\tinyMceConfig.config" >
<SubType > Designer</SubType>
</Content>
<Content Include= "Config\umbracoSettings.config" >
<SubType > Designer</SubType>
</Content>
<Content Include= "Config\BackOfficeTours\getting-started.json" />
</ItemGroup>
<!-- determine VSToolsPath -->
<PropertyGroup >
<VisualStudioVersion Condition= "'$(VisualStudioVersion)' == ''" > 11.0</VisualStudioVersion>
<VSToolsPath Condition= "exists('$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v11.0\WebApplications\Microsoft.WebApplication.targets')" > $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v11.0</VSToolsPath>
<VSToolsPath Condition= "exists('$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v12.0\WebApplications\Microsoft.WebApplication.targets')" > $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v12.0</VSToolsPath>
<VSToolsPath Condition= "exists('$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v14.0\WebApplications\Microsoft.WebApplication.targets')" > $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v14.0</VSToolsPath>
<VSToolsPath Condition= "exists('$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v15.0\WebApplications\Microsoft.WebApplication.targets')" > $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v15.0</VSToolsPath>
2019-04-29 13:59:16 +02:00
<VSToolsPath Condition= "exists('$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v16.0\WebApplications\Microsoft.WebApplication.targets')" > $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v16.0</VSToolsPath>
2018-06-29 19:52:40 +02:00
</PropertyGroup>
<!-- determine WebPublishingTasks -->
<PropertyGroup >
<WebPublishingTasks Condition= "exists('$(MSBuildExtensionsPath)\Microsoft\VisualStudio\v10.0\Web\Microsoft.Web.Publishing.Tasks.dll')" > $(MSBuildExtensionsPath)\Microsoft\VisualStudio\v10.0\Web\Microsoft.Web.Publishing.Tasks.dll</WebPublishingTasks>
<WebPublishingTasks Condition= "exists('$(MSBuildExtensionsPath)\Microsoft\VisualStudio\v11.0\Web\Microsoft.Web.Publishing.Tasks.dll')" > $(MSBuildExtensionsPath)\Microsoft\VisualStudio\v11.0\Web\Microsoft.Web.Publishing.Tasks.dll</WebPublishingTasks>
<WebPublishingTasks Condition= "exists('$(MSBuildExtensionsPath)\Microsoft\VisualStudio\v12.0\Web\Microsoft.Web.Publishing.Tasks.dll')" > $(MSBuildExtensionsPath)\Microsoft\VisualStudio\v12.0\Web\Microsoft.Web.Publishing.Tasks.dll</WebPublishingTasks>
<WebPublishingTasks Condition= "exists('$(MSBuildExtensionsPath)\Microsoft\VisualStudio\v14.0\Web\Microsoft.Web.Publishing.Tasks.dll')" > $(MSBuildExtensionsPath)\Microsoft\VisualStudio\v14.0\Web\Microsoft.Web.Publishing.Tasks.dll</WebPublishingTasks>
2018-12-10 14:59:17 +00:00
<WebPublishingTasks Condition= "exists('$(MSBuildExtensionsPath)\Microsoft\VisualStudio\v15.0\Web\Microsoft.Web.Publishing.Tasks.dll')" > $(MSBuildExtensionsPath)\Microsoft\VisualStudio\v15.0\Web\Microsoft.Web.Publishing.Tasks.dll</WebPublishingTasks>
<WebPublishingTasks Condition= "exists('$(MSBuildExtensionsPath)\Microsoft\VisualStudio\v16.0\Web\Microsoft.Web.Publishing.Tasks.dll')" > $(MSBuildExtensionsPath)\Microsoft\VisualStudio\v16.0\Web\Microsoft.Web.Publishing.Tasks.dll</WebPublishingTasks>
<!-- Temporary addition for the VS2019 preview - can be removed when VS2019 final is released, then v16 above will be used -->
<WebPublishingTasks Condition= "exists('$(ProgramFiles32)\Microsoft Visual Studio\2019\Preview\MSBuild\Microsoft\VisualStudio\v16.0\Web\Microsoft.Web.Publishing.Tasks.dll')" > $(ProgramFiles32)\Microsoft Visual Studio\2019\Preview\MSBuild\Microsoft\VisualStudio\v16.0\Web\Microsoft.Web.Publishing.Tasks.dll</WebPublishingTasks>
2018-06-29 19:52:40 +02:00
</PropertyGroup>
<!-- get TransformXml task from WebPublishingtasks -->
<UsingTask TaskName= "TransformXml" AssemblyFile= "$(WebPublishingTasks)" Condition= "'$(WebPublishingTasks)' != ''" />
<!-- get NuGet packages directory -->
<PropertyGroup >
<NuGetPackages > $(NuGetPackageFolders.Split(';')[0])</NuGetPackages>
</PropertyGroup>
<!-- import targets -->
<Import Project= "$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<Import Project= "$(VSToolsPath)\WebApplications\Microsoft.WebApplication.targets" Condition= "'$(VSToolsPath)' != ''" />
<!-- web project -->
<ProjectExtensions >
<VisualStudio >
<FlavorProperties GUID= "{349c5851-65df-11da-9384-00065b846f21}" >
<WebProjectProperties >
<UseIIS > False</UseIIS>
<AutoAssignPort > True</AutoAssignPort>
2021-03-11 14:55:13 +01:00
<DevelopmentServerPort > 8121</DevelopmentServerPort>
2018-06-29 19:52:40 +02:00
<DevelopmentServerVPath > /</DevelopmentServerVPath>
2021-03-11 14:55:13 +01:00
<IISUrl > http://localhost:8121</IISUrl>
2018-06-29 19:52:40 +02:00
<NTLMAuthentication > False</NTLMAuthentication>
<UseCustomServer > False</UseCustomServer>
<CustomServerUrl >
</CustomServerUrl>
<SaveServerSettingsInUserFile > False</SaveServerSettingsInUserFile>
</WebProjectProperties>
</FlavorProperties>
</VisualStudio>
</ProjectExtensions>
<Target Name= "BeforeBuild" >
<Message Text= "-BeforeBuild-" Importance= "high" />
<Message Text= "MSBuildExtensionsPath: $(MSBuildExtensionsPath)" Importance= "high" />
<Message Text= "WebPublishingTasks: $(WebPublishingTasks)" Importance= "high" />
<Message Text= "NuGetPackageFolders: $(NuGetPackageFolders)" Importance= "high" />
<Message Text= "NuGetPackages: $(NuGetPackages)" Importance= "high" />
<!-- Create web.config file from Template if it doesn't exist -->
<Message Text= "Copy Web.Template.config to Web.config" Importance= "high" Condition= "!Exists('$(ProjectDir)Web.config')" />
<Copy SourceFiles= "$(ProjectDir)web.Template.config" DestinationFiles= "$(ProjectDir)Web.config" OverwriteReadOnlyFiles= "true" SkipUnchangedFiles= "false" Condition= "!Exists('$(ProjectDir)Web.config')" />
<!-- Transform the local Web.config file in Visual Studio -->
<Message Text= "Transform Web.config with web.Template.$(Configuration).config into Web.$(Configuration).config.transformed (this is Visual Studio)" Importance= "high" Condition= "$(BuildingInsideVisualStudio) == true" />
<TransformXml Source= "$(ProjectDir)Web.config" Transform= "$(ProjectDir)web.Template.$(Configuration).config" Destination= "$(ProjectDir)Web.$(Configuration).config.transformed" Condition= "$(BuildingInsideVisualStudio) == true" />
<!-- Always transform the Template file when not in VS (ie: build.bat) -->
<Message Text= "Transform Web.Template.config with web.Template.$(Configuration).config into Web.$(Configuration).config.transformed (this is not Visual Studio)" Importance= "high" Condition= "$(BuildingInsideVisualStudio) != true" />
<TransformXml Source= "$(ProjectDir)Web.Template.config" Transform= "$(ProjectDir)web.Template.$(Configuration).config" Destination= "Web.$(Configuration).config.transformed" Condition= "$(BuildingInsideVisualStudio) != true" />
<!-- Create ClientDependency.config file from Template if it doesn't exist -->
<Message Text= "Copy ClientDependency.$(Configuration).config to ClientDependency.config" Importance= "high" Condition= "!Exists('$(ProjectDir)Config\ClientDependency.config')" />
<Copy SourceFiles= "$(ProjectDir)Config\ClientDependency.Release.config" DestinationFiles= "$(ProjectDir)Config\ClientDependency.config" OverwriteReadOnlyFiles= "true" SkipUnchangedFiles= "false" Condition= "!Exists('$(ProjectDir)Config\ClientDependency.config')" />
2020-12-16 07:50:59 +00:00
<Copy SourceFiles= "$(ProjectDir)Config\umbracoSettings.Release.config" DestinationFiles= "$(ProjectDir)Config\umbracoSettings.config" OverwriteReadOnlyFiles= "true" SkipUnchangedFiles= "false" Condition= "!Exists('$(ProjectDir)Config\umbracoSettings.config')" />
2019-02-13 12:28:01 +00:00
<!-- Create Serilog.config & serilog.user.config file from Templates if it doesn't exist -->
<Message Text= "Copy serilog.$(Configuration).config to serilog.config" Importance= "high" Condition= "!Exists('$(ProjectDir)Config\serilog.config')" />
<Copy SourceFiles= "$(ProjectDir)Config\serilog.Release.config" DestinationFiles= "$(ProjectDir)Config\serilog.config" OverwriteReadOnlyFiles= "true" SkipUnchangedFiles= "false" Condition= "!Exists('$(ProjectDir)Config\serilog.config')" />
<Message Text= "Copy serilog.user.$(Configuration).config to serilog.user.config" Importance= "high" Condition= "!Exists('$(ProjectDir)Config\serilog.user.config')" />
<Copy SourceFiles= "$(ProjectDir)Config\serilog.user.Release.config" DestinationFiles= "$(ProjectDir)Config\serilog.user.config" OverwriteReadOnlyFiles= "true" SkipUnchangedFiles= "false" Condition= "!Exists('$(ProjectDir)Config\serilog.user.config')" />
2018-06-29 19:52:40 +02:00
<!-- Build Belle, if building is Visual Studio and the build folder does not exist yet -->
<Message Text= "Skip Belle because UmbracoBuild is '$(UmbracoBuild)' (this is not Visual Studio)." Importance= "High" Condition= "'$(UmbracoBuild)' != ''" />
<Message Text= "Skip Belle because $(ProjectDir)Umbraco\lib exists." Importance= "High" Condition= "Exists('$(ProjectDir)Umbraco\lib')" />
<Message Text= "Build Belle because UmbracoBuild is empty (this is Visual Studio), and $(ProjectDir)Umbraco\lib does not exist." Importance= "High" Condition= "!Exists('$(ProjectDir)Umbraco\lib') and '$(UmbracoBuild)' == ''" />
<CallTarget Targets= "BelleBuild" Condition= "!Exists('$(ProjectDir)Umbraco\lib') and '$(UmbracoBuild)' == ''" />
</Target>
<!-- clean Belle when cleaning and rebuilding, but only in Visual Studio -->
<Target Name= "CleanBelle" AfterTargets= "Clean" Condition= "'$(UmbracoBuild)' == ''" >
<Message Text= "-CleanBelle-" Importance= "high" />
<Message Text= "Nothing to clean, as $(ProjectDir)Umbraco\lib does not exist." Importance= "High" Condition= "!Exists('$(ProjectDir)Umbraco\lib')" />
<Message Text= "Not cleaning (found src/preserve.belle)." Importance= "High" Condition= "Exists('$(ProjectDir)Umbraco\lib') and Exists('$(SolutionDir)preserve.belle')" />
<Message Text= "Remove $(ProjectDir)Umbraco\lib." Importance= "High" Condition= "Exists('$(ProjectDir)Umbraco\lib') and !Exists('$(SolutionDir)preserve.belle')" />
<ItemGroup >
<BelleLib Include= "$(ProjectDir)Umbraco\lib" />
</ItemGroup>
<RemoveDir Directories= "@(BelleLib)" Condition= "Exists('$(ProjectDir)Umbraco\lib') and !Exists('$(SolutionDir)preserve.belle')" />
</Target>
<Target Name= "AfterBuild" >
<Message Text= "-AfterBuild-" Importance= "high" />
<Message Text= "Copy Web.$(Configuration).config.transformed over to Web.config (this is Visual Studio)" Importance= "high" Condition= "$(BuildingInsideVisualStudio) == true" />
<Copy SourceFiles= "$(ProjectDir)Web.$(Configuration).config.transformed" DestinationFiles= "$(ProjectDir)Web.config" OverwriteReadOnlyFiles= "true" SkipUnchangedFiles= "false" Condition= "$(BuildingInsideVisualStudio) == true" />
</Target>
<Target Name= "BelleBuild" >
<Exec WorkingDirectory= "$(ProjectDir)\..\..\" Command= "powershell -ExecutionPolicy RemoteSigned -Command "&{ $ubuild = &"$pwd\build\build.ps1" -get ; $ubuild.CompileBelle() }"" />
</Target>
<Target Name= "ResetConfigFiles" Condition= "'$(WebProjectOutputDir)' != ''" BeforeTargets= "Build;Rebuild" Inputs= "@(ConfigFiles)" Outputs= "%(Identity).Dummy" >
<ItemGroup >
<!-- every *.config (recursive) files xcept web[.*].config -->
<!-- beware! includes any rogue git - ignored or temp config file -->
<ConfigFiles Include= "$(ProjectDir)**\*.config" Exclude= "$(ProjectDir)web.config;$(ProjectDir)web.*.config" />
<!-- and the UI file -->
<ConfigFiles Include= "$(ProjectDir)umbraco\config\create\UI.xml" />
</ItemGroup>
<PropertyGroup >
<!-- the original file eg src/.../umbracoSettings.config -->
<OriginalFileName > @(ConfigFiles)</OriginalFileName>
<!-- the configuration version of the original file eg src/.../umbracoSettings.Release.config -->
<ModifiedFileName > $(OriginalFileName.Replace("%(ConfigFiles.Extension)",".$(Configuration)%(ConfigFiles.Extension)"))</ModifiedFileName>
<!-- the target file eg webapp/.../umbracoSettings.config -->
<OutputFileName > $(OriginalFileName.Replace("$(ProjectDir)", "$(WebProjectOutputDir)"))</OutputFileName>
</PropertyGroup>
<!--
for each whatever.config file,
if there is a whatever.(Release|Debug).config file,
copy it over as whatever.config
-->
<Message Text= "ConfigFile: $(OriginalFileName) -> $(OutputFileName)" Importance= "high" Condition= "Exists('$(ModifiedFileName)')" />
<Copy SourceFiles= "$(ModifiedFileName)" DestinationFiles= "$(OutputFileName)" OverwriteReadOnlyFiles= "true" SkipUnchangedFiles= "false" Condition= "Exists('$(ModifiedFileName)')" />
</Target>
2020-08-13 14:41:54 +02:00
</Project>