Merge remote-tracking branch 'origin/v8/dev' into netcore/dev
# Conflicts: # src/SolutionInfo.cs # src/Umbraco.Abstractions/Constants-Conventions.cs
This commit is contained in:
@@ -84,9 +84,9 @@
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<PackageReference Include="CSharpTest.Net.Collections" Version="14.906.1403.1082" />
|
||||
<PackageReference Include="ClientDependency" Version="1.9.7" />
|
||||
<PackageReference Include="ClientDependency-Mvc5" Version="1.8.0.0" />
|
||||
<PackageReference Include="Examine" Version="1.0.0" />
|
||||
<PackageReference Include="ClientDependency" Version="1.9.8" />
|
||||
<PackageReference Include="ClientDependency-Mvc5" Version="1.9.3" />
|
||||
<PackageReference Include="Examine" Version="1.0.1" />
|
||||
<PackageReference Include="ImageProcessor.Web" Version="4.10.0.100" />
|
||||
<PackageReference Include="ImageProcessor.Web.Config" Version="2.5.0.100" />
|
||||
<PackageReference Include="Microsoft.AspNet.Identity.Owin" Version="2.2.2" />
|
||||
@@ -351,6 +351,9 @@
|
||||
<DevelopmentServerPort>9000</DevelopmentServerPort>
|
||||
<DevelopmentServerVPath>/</DevelopmentServerVPath>
|
||||
<IISUrl>http://localhost:9000/</IISUrl>
|
||||
<DevelopmentServerPort>8600</DevelopmentServerPort>
|
||||
<DevelopmentServerVPath>/</DevelopmentServerVPath>
|
||||
<IISUrl>http://localhost:8600/</IISUrl>
|
||||
<NTLMAuthentication>False</NTLMAuthentication>
|
||||
<UseCustomServer>False</UseCustomServer>
|
||||
<CustomServerUrl>
|
||||
|
||||
@@ -85,7 +85,7 @@ else
|
||||
easily change it. For example, if you wanted to render a custom editor for this field called "MyEditor" you would
|
||||
create a file at ~/Views/Shared/EditorTemplates/MyEditor.cshtml", then you will change the next line of code to
|
||||
render your specific editor template like:
|
||||
@Html.EditorFor(m => profileModel.MemberProperties[i].Value, "MyEditor")
|
||||
@Html.EditorFor(m => registerModel.MemberProperties[i].Value, "MyEditor")
|
||||
*@
|
||||
@Html.EditorFor(m => registerModel.MemberProperties[i].Value)
|
||||
@Html.HiddenFor(m => registerModel.MemberProperties[i].Alias)
|
||||
|
||||
@@ -2303,4 +2303,34 @@ To manage your website, simply open the Umbraco back office and start adding con
|
||||
</key>
|
||||
<key alias="getStarted">To get you started</key>
|
||||
</area>
|
||||
<area alias="settingsDashboard">
|
||||
<key alias="start">Start here</key>
|
||||
<key alias="startDescription">This section contains the building blocks for your Umbraco site. Follow the below links to find out more about working with the items in the Settings section</key>
|
||||
<key alias="more">Find out more</key>
|
||||
<key alias="bulletPointOne">
|
||||
<![CDATA[
|
||||
Read more about working with the items in Settings <a class="btn-link -underline" href="https://our.umbraco.com/documentation/Getting-Started/Backoffice/Sections/" target="_blank">in the Documentation section</a> of Our Umbraco
|
||||
]]>
|
||||
</key>
|
||||
<key alias="bulletPointTwo">
|
||||
<![CDATA[
|
||||
Ask a question in the <a class="btn-link -underline" href="https://our.umbraco.com/forum" target="_blank">Community Forum</a>
|
||||
]]>
|
||||
</key>
|
||||
<key alias="bulletPointThree">
|
||||
<![CDATA[
|
||||
Watch our <a class="btn-link -underline" href="https://umbraco.tv" target="_blank">tutorial videos</a> (some are free, some require a subscription)
|
||||
]]>
|
||||
</key>
|
||||
<key alias="bulletPointFour">
|
||||
<![CDATA[
|
||||
Find out about our <a class="btn-link -underline" href="https://umbraco.com/products/" target="_blank">productivity boosting tools and commercial support</a>
|
||||
]]>
|
||||
</key>
|
||||
<key alias="bulletPointFive">
|
||||
<![CDATA[
|
||||
Find out about real-life <a class="btn-link -underline" href="https://umbraco.com/training/" target="_blank">training and certification</a> opportunities
|
||||
]]>
|
||||
</key>
|
||||
</area>
|
||||
</language>
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -7,14 +7,14 @@
|
||||
},
|
||||
{
|
||||
"name": "Image",
|
||||
"nameTemplate": "{{ 'Image: ' + (value.udi | ncNodeName) }}",
|
||||
"nameTemplate": "{{ value && value.udi ? (value.udi | ncNodeName) : '' }}",
|
||||
"alias": "media",
|
||||
"view": "media",
|
||||
"icon": "icon-picture"
|
||||
},
|
||||
{
|
||||
"name": "Macro",
|
||||
"nameTemplate": "{{ 'Macro: ' + value.macroAlias }}",
|
||||
"nameTemplate": "{{ value && value.macroAlias ? value.macroAlias : '' }}",
|
||||
"alias": "macro",
|
||||
"view": "macro",
|
||||
"icon": "icon-settings-alt"
|
||||
@@ -27,7 +27,7 @@
|
||||
},
|
||||
{
|
||||
"name": "Headline",
|
||||
"nameTemplate": "{{ 'Headline: ' + value }}",
|
||||
"nameTemplate": "{{ value }}",
|
||||
"alias": "headline",
|
||||
"view": "textstring",
|
||||
"icon": "icon-coin",
|
||||
@@ -38,6 +38,7 @@
|
||||
},
|
||||
{
|
||||
"name": "Quote",
|
||||
"nameTemplate": "{{ value ? value.substring(0,32) + (value.length > 32 ? '...' : '') : '' }}",
|
||||
"alias": "quote",
|
||||
"view": "textstring",
|
||||
"icon": "icon-quote",
|
||||
|
||||
Reference in New Issue
Block a user