Skip to content

Commit cdcb581

Browse files
Zachary_KniebelZachary_Kniebel
authored andcommitted
Merge branch 'version/1.1' into release
2 parents c6b88e1 + 3147add commit cdcb581

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

app/generator/mdj-reverseengineer.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -575,7 +575,7 @@ function _generateHelixDiagrams(documentationConfiguration, metaball, canvas, cr
575575
}
576576
// foundation -> project
577577
if (sourceLayerID == helixArchitecture.FoundationLayer.ReferenceID) {
578-
___addValidationErrorToMetaball(helixArchitecture.FeatureLayer.LayerIndex);
578+
___addValidationErrorToMetaball(helixArchitecture.FoundationLayer.LayerIndex);
579579
return {
580580
IsValid: false,
581581
Message: `INVALID: Templates in the Foundation Layer cannot depend on templates in the Project Layer: "${sourceHierarchyModel.JsonTemplate.Path}"->"${targetHierarchyModel.JsonTemplate.Path}"`
@@ -595,7 +595,7 @@ function _generateHelixDiagrams(documentationConfiguration, metaball, canvas, cr
595595

596596
// foundation -> feature
597597
if (sourceLayerID == helixArchitecture.FoundationLayer.ReferenceID) {
598-
___addValidationErrorToMetaball(helixArchitecture.FeatureLayer.LayerIndex);
598+
___addValidationErrorToMetaball(helixArchitecture.FoundationLayer.LayerIndex);
599599
return {
600600
IsValid: false,
601601
Message: `INVALID: Templates in the Foundation Layer cannot depend on templates in the Feature Layer: "${sourceHierarchyModel.JsonTemplate.Path}"->"${targetHierarchyModel.JsonTemplate.Path}"`

middlemen/RabbitMQ/SitecoreDXG__RabbitMQ_Middleman__TeamCity_MetaRunner.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<param name="env.SitecoreDXG.Middlemen.RabbitMQ_AMQP.ConnectionString" value="" spec="text display='normal' description='The RabbitMQ connection string that you wish to use to connect to RabbitMQ (e.g. amqp://localhost)' label='RabbitMQ Connection String' validationMode='not_empty'" />
77
<param name="env.SitecoreDXG.Middlemen.RabbitMQ_AMQP.GenerationQueueName" value="" spec="text display='normal' description='The name of the generation queue that you want to submit the serialized architecture queue; by default, the queue that you choose determines the generation action that should occur; the available default queues are the generation_queue__documentation queue (generate HTML documentation) and the generation_queue__mdj queue (generate MDJ file only).' label='Generation Queue Name' validationMode='not_empty'" />
88
<param name="env.SitecoreDXG.Middlemen.RabbitMQ_AMQP.ArchitectureGetUrl" value="" spec="text display='normal' description='SitecoreUML Service URL for getting the serialized template architecture of the host Sitecore solution (generally http://&lt;sitecore_url&gt;/sitecoreuml/sitecoredxg/GetTemplateArchitecture)' label='Architecture GET URL' validationMode='not_empty'" />
9-
<param name="env.SitecoreDXG.Middlemen.RabbitMQ_AMQP.OptionsData" value="" spec="text description='(Optional) JSON-formatted string object with theoptional DocumentationConfiguration and CompletionHandlers data objects as properties; completion handler objects must have the handler ID and parameters; Should have the following syntax: |{&quot;DocumentationConfiguration&quot;:{&quot;CommitAuthor&quot;\&quot;...&quot;,&quot;CommitHash&quot;:&quot;...&quot;,&quot;EnvironmentName&quot;:&quot;UAT&quot;,&quot;ProjectName&quot;:&quot;...&quot;,&quot;DeployLink&quot;:&quot;http://...&quot;},&quot;CompletionHandlers&quot;:|[{&quot;ID&quot;:&quot;MyHandler1&quot;,&quot;Params&quot;:{&quot;foo&quot;:&quot;bar&quot;},{&quot;ID&quot;:&quot;MyHandler2&quot;}|]|' label='Completion Handler Data' validationMode='any' display='normal'" />
9+
<param name="env.SitecoreDXG.Middlemen.RabbitMQ_AMQP.OptionsData" value="" spec="text description='(Optional) JSON-formatted string object with theoptional DocumentationConfiguration and CompletionHandlers data objects as properties; completion handler objects must have the handler ID and parameters; Should have the following syntax: |'{&quot;DocumentationConfiguration&quot;:{&quot;CommitAuthor&quot;:\&quot;...&quot;,&quot;CommitHash&quot;:&quot;...&quot;,&quot;EnvironmentName&quot;:&quot;UAT&quot;,&quot;ProjectName&quot;:&quot;...&quot;,&quot;DeployLink&quot;:&quot;http://...&quot;},&quot;CompletionHandlers&quot;:|[{&quot;ID&quot;:&quot;MyHandler1&quot;,&quot;Params&quot;:{&quot;foo&quot;:&quot;bar&quot;},{&quot;ID&quot;:&quot;MyHandler2&quot;}|]}|'' label='Options Data' validationMode='any' display='normal'" />
1010
<param name="env.SitecoreDXG.Middlemen.RabbitMQ_AMQP.ScriptPath" value="" spec="text display='normal' description='The path to the middleman script file on the TeamCity server (customizable for extensibility purposes)' label='Middleman Script Path' validationMode='not_empty'" />
1111
</parameters>
1212
<build-runners>
@@ -31,7 +31,7 @@ Write-Output "Options JSON file generated at path $($optionsFilePath)"
3131
3232
Write-Output "Calling SitecoreDXG Middleman..."
3333
34-
node %env.SitecoreDXG.Middlemen.RabbitMQ_AMQP.ScriptPath% %env.SitecoreDXG.Middlemen.RabbitMQ_AMQP.ConnectionString% %env.SitecoreDXG.Middlemen.RabbitMQ_AMQP.ArchitectureGetUrl% %env.SitecoreDXG.Middlemen.RabbitMQ_AMQP.GenerationQueueName% $optionsFilePath
34+
node "%env.SitecoreDXG.Middlemen.RabbitMQ_AMQP.ScriptPath%" %env.SitecoreDXG.Middlemen.RabbitMQ_AMQP.ConnectionString% %env.SitecoreDXG.Middlemen.RabbitMQ_AMQP.ArchitectureGetUrl% %env.SitecoreDXG.Middlemen.RabbitMQ_AMQP.GenerationQueueName% "$optionsFilePath"
3535
3636
Write-Output "Finished calling SitecoreDXG Middleman..."
3737

0 commit comments

Comments
 (0)