-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* usync export * upgrade cms to v13 lts
- Loading branch information
Showing
402 changed files
with
15,460 additions
and
484 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{} |
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
8 changes: 3 additions & 5 deletions
8
Wmca.Web/App_Plugins/AccessibilityReporter/libs/axe-only.min.js
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
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,11 @@ | ||
<div class="umb-dialog umb-pane" ng-controller="seoChecker.ClearCacheDialogController"> | ||
<div class="umb-dialog-body" auto-scale="90"> | ||
|
||
<p class="abstract"> | ||
{{confirmCaption}} | ||
</p> | ||
|
||
<umb-confirm on-confirm="confirm" confirm-button-style="success" on-cancel="cancel"></umb-confirm> | ||
|
||
</div> | ||
</div> |
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,54 @@ | ||
<div class="umb-dialog umb-pane" ng-controller="cmsimport.elementPickerDialogController"> | ||
<form name="frm" novalidate | ||
val-form-manager> | ||
<umb-editor-view> | ||
|
||
<umb-editor-header name="model.pageName" | ||
name-locked="true" | ||
hide-icon="true" | ||
hide-description="true" | ||
hide-alias="true"> | ||
</umb-editor-header> | ||
|
||
<umb-editor-container> | ||
|
||
<umb-tabs-content class="form-horizontal" view="true"> | ||
<umb-empty-state ng-if="hasNoElements()"position="center"> | ||
<localize key="cmsimportElementField_elementPickerNoElements"></localize> | ||
</umb-empty-state> | ||
|
||
<div class="umb-block-card-grid"> | ||
<div ng-repeat="block in model.elementConfig.elementDefinitionConfig" class="umb-block-card" ng-click="select(block)"> | ||
<div class="__showcase"> | ||
<div class="__icon"> | ||
<umb-icon icon="{{block.ContentElementIcon}}"> | ||
</umb-icon> | ||
</div> | ||
</div> | ||
<div class="__info"> | ||
<div class="__name" ng-bind="block.ContentElementName"></div> | ||
</div> | ||
</div> | ||
|
||
</div> | ||
|
||
</umb-tabs-content> | ||
</umb-editor-container> | ||
|
||
<umb-editor-footer> | ||
<umb-editor-footer-content-right> | ||
<div class="umb-pane btn-toolbar umb-btn-toolbar"> | ||
<div> | ||
<a href class="btn btn-link" ng-click="onCancel()"><localize key="general_cancel">Cancel</localize></a> | ||
</div> | ||
</div> | ||
</umb-editor-footer-content-right> | ||
</umb-editor-footer> | ||
|
||
</umb-editor-view> | ||
</form> | ||
|
||
</div> | ||
<div> | ||
|
||
</div> |
69 changes: 69 additions & 0 deletions
69
Wmca.Web/App_Plugins/cmsimport/fields/elementeditorfield.html
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,69 @@ | ||
<div ng-controller="cmsimport.elementEditorController"> | ||
<div ui-sortable ng-model="model.value.elements"> | ||
<div ng-repeat="element in model.value.elements" class="umb-block-list__block"> | ||
<div class="umb-block-list__block--view blockelement__draggable-element"> | ||
<div class="blockelement-inlineblock-editor"> | ||
<div class="cmsimportElementHeader" ng-click="toggleElement(element)" > | ||
<div class="cmsimportElementInfoHeader" ng-class="{cmsimportFirstElementHeader: $first}"> | ||
<div class="cmsimportElementInfoIcons"> | ||
<span class="cmsimportElementArrow " ng-class="{ cmsimportElementArrowActive: element.active === true,cmsimportElementArrowInActive: element.active === false}"></span> | ||
<umb-icon icon="{{element.elementTypeIcon}}" class="icon"></umb-icon> | ||
</div> | ||
<span >{{element.elementTypeName}}</span> | ||
</div> | ||
<div class="cmsimportDeleteElement"> | ||
<button type="button" class="btn-reset umb-outline action --delete " localize="title" ng-click="removeField($index,model.value.elements);" title="general_delete"> <umb-icon icon="icon-trash" class="icon"></umb-icon> </button> | ||
</div> | ||
</div> | ||
<div class="blockelement-inlineblock-editor__inner " ng-show="element.active === true"> | ||
<div class="umb-group-panel__content" ng-repeat="prop in element.importMapping[0].propertyInfo"> | ||
<div class="control-group umb-control-group "> | ||
<div ng-class="{cmimportFieldError: prop.hasErrors === true}"> | ||
<div ng-show="{{prop.hasErrors}}" class="alert alert-error property-error"> | ||
<ul> | ||
<li ng-repeat="validationMessage in prop.validationErrors">{{validationMessage}}</li> | ||
</ul> | ||
</div> | ||
<div class="umb-el-wrap cmsimportMappingControl" ng-class="{'cmsimportMappingControlAdvancedSetting' : showAdvancedOptionsForm(prop) === true}"> | ||
<label class="control-label ng-binding" title="pageTitle"> | ||
{{prop.propertyName}} | ||
<small class="ng-binding" ng-show="prop.showAlias">Alias:{{prop.propertyAlias}}</small> | ||
</label> | ||
<div class="controls" noDirtyCheck ng-show="prop.simpleMapping"> | ||
<select ng-model="prop.mappedDataSourceColumn" ng-options="column as column for column in element.importMapping[0].columns"></select> <span ng-show="showAdvancedOptionsOption(prop)" class="icon-settings cmsimportAdvancedIcon" title="Collapse advanced settings" ng-click="toggleForm(prop)"></span> | ||
<div ng-if="showAdvancedOptionsForm(prop)" class="cmsimportAdvancedSettings cmsimportAdvancedElementSettings"> | ||
<umb-property data-element="property-{{prop.advancedOptionProperties.providerAlia}}" ng-repeat="property in prop.advancedOptionProperties.properties track by property.alias" property="property"> | ||
<umb-property-editor model="property"></umb-property-editor> | ||
</umb-property> | ||
</div> | ||
</div> | ||
<div class="controls" noDirtyCheck ng-hide="prop.simpleMapping"> | ||
<umb-property data-element="property-{{prop.propertyAlias}}" ng-repeat="property in prop.elementMapping.elements track by property.PropertyAlias" property="property"> | ||
<umb-property-editor model="property"></umb-property-editor> | ||
</umb-property> | ||
<button ng-if="!sortingMode" | ||
type="button" | ||
class="umb-group-builder__group-add-property" | ||
ng-click="addElement(prop.elementMapping.elements)"> | ||
<localize key="cmsimportElementField_addElement">Add Element</localize> | ||
</button> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
</div> | ||
|
||
</div> | ||
|
||
</div> | ||
<button ng-if="!sortingMode" | ||
type="button" | ||
class="umb-group-builder__group-add-property" | ||
ng-click="addElement(model.value.elements)"> | ||
<localize key="cmsimportElementField_addElement">Add Element</localize> | ||
</button> | ||
</div> |
This file was deleted.
Oops, something went wrong.
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
50 changes: 50 additions & 0 deletions
50
...eb/uSync/Snapshots/20240404_122337_local-4-4-24-settings/ContentTypes/appgridblock.config
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,50 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<ContentType Key="ea5ec4a9-3fa1-4743-8d2f-8dfea8efc43b" Alias="appGridBlock" Level="6"> | ||
<Info> | ||
<Name>App</Name> | ||
<Icon>icon-science</Icon> | ||
<Thumbnail>folder.png</Thumbnail> | ||
<Description></Description> | ||
<AllowAtRoot>False</AllowAtRoot> | ||
<IsListView>False</IsListView> | ||
<Variations>Nothing</Variations> | ||
<IsElement>true</IsElement> | ||
<HistoryCleanup> | ||
<PreventCleanup>False</PreventCleanup> | ||
<KeepAllVersionsNewerThanDays></KeepAllVersionsNewerThanDays> | ||
<KeepLatestVersionPerDayForDays></KeepLatestVersionPerDayForDays> | ||
</HistoryCleanup> | ||
<Folder>Elements/Block+Grid/Blocks/Shared/Main</Folder> | ||
<Compositions /> | ||
<DefaultTemplate></DefaultTemplate> | ||
<AllowedTemplates /> | ||
</Info> | ||
<Structure /> | ||
<GenericProperties> | ||
<GenericProperty> | ||
<Key>d9f121c1-e00f-4171-a128-507c261df83d</Key> | ||
<Name>Body scripts</Name> | ||
<Alias>bodyScripts</Alias> | ||
<Definition>53861d2c-512d-4e60-9025-c2666d4cd701</Definition> | ||
<Type>Umbraco.TinyMCE</Type> | ||
<Mandatory>false</Mandatory> | ||
<Validation></Validation> | ||
<Description><![CDATA[Add your app root div]]></Description> | ||
<SortOrder>0</SortOrder> | ||
<Tab Alias="body">Body</Tab> | ||
<Variations>Nothing</Variations> | ||
<MandatoryMessage></MandatoryMessage> | ||
<ValidationRegExpMessage></ValidationRegExpMessage> | ||
<LabelOnTop>false</LabelOnTop> | ||
</GenericProperty> | ||
</GenericProperties> | ||
<Tabs> | ||
<Tab> | ||
<Key>f939a0dc-b906-42c1-b6f4-d0c26a19f746</Key> | ||
<Caption>Body</Caption> | ||
<Alias>body</Alias> | ||
<Type>Tab</Type> | ||
<SortOrder>1</SortOrder> | ||
</Tab> | ||
</Tabs> | ||
</ContentType> |
Oops, something went wrong.