Skip to content
Snippets Groups Projects
Commit b04edae8 authored by svornost's avatar svornost
Browse files

Remove obsolete RA helper passages (they have been inaccessible since early 2018)

parent 32566359
No related branches found
No related tags found
1 merge request!5806Remove dead stuff
:: Rules Slave Deselect Workaround [nobr]
<<set $nextButton = "Continue", $nextLink = "Rules Slave Select">>
<<if ruleSlaveSelected($activeSlave, $currentRule)>>
<<set $currentRule.selectedSlaves.delete($activeSlave.ID)>>
<</if>>
<<goto "Rules Slave Select">>
:: Rules Slave Exclude [nobr]
<<set $nextButton = "Continue", $nextLink = "Rules Assistant">>
<<if ndef $currentRule.excludedSlaves>>
<<set $currentRule.excludedSlaves to []>>
<</if>>
<<if ($currentRule.excludedSlaves.length < 1)>>
<<set $SlaveSummaryFiler = "assignable">>
Select slaves to exclude from Rule $r:
<<print App.UI.SlaveList.slaveSelectionList(
s => !ruleSlaveExcluded(s, $currentRule),
(s, i) => `<u><strong>${App.UI.passageLink(SlaveFullName(s), 'Rules Slave Exclude Workaround', `$activeSlave = $slaves[${i}]`)}</strong></u>`
)>>
<<else>>
Slaves currently excluded from Rule $r: [[Clear list|Rules Slave Exclude][$currentRule.excludedSlaves = []]]
<<print App.UI.SlaveList.slaveSelectionList(
s => ruleSlaveExcluded(s, $currentRule),
(s, i) => `<u><strong>${App.UI.passageLink(SlaveFullName(s), 'Rules Slave NoExclude Workaround', `$activeSlave = $slaves[${i}]`)}</strong></u>`
)>>
<br><br>
Select more slaves to exclude from Rule $r:
<<print App.UI.SlaveList.slaveSelectionList(
s => !ruleSlaveExcluded(s, $currentRule),
(s, i) => `<u><strong>${App.UI.passageLink(SlaveFullName(s), 'Rules Slave Exclude Workaround', `$activeSlave = $slaves[${i}]`)}</strong></u>`
)>>
<</if>>
:: Rules Slave Exclude Workaround [nobr]
<<set $nextButton = "Continue", $nextLink = "Rules Slave Exclude">>
<<if !ruleSlaveExcluded($activeSlave, $currentRule)>>
<<set $currentRule.excludedSlaves.push($activeSlave.ID)>>
<<if ruleSlaveSelected($activeSlave, $currentRule)>>
<<set $currentRule.selectedSlaves.delete($activeSlave.ID)>>
<</if>>
<</if>>
<<goto "Rules Slave Exclude">>
:: Rules Slave NoExclude Workaround [nobr]
<<set $nextButton = "Continue", $nextLink = "Rules Slave Exclude">>
<<if ruleSlaveExcluded($activeSlave, $currentRule)>>
<<set $currentRule.excludedSlaves.delete($activeSlave.ID)>>
<</if>>
<<goto "Rules Slave Exclude">>
:: Rules Slave Select [nobr]
<<set $nextButton = "Continue", $nextLink = "Rules Assistant">>
<<if ndef $currentRule.selectedSlaves>>
<<set $currentRule.selectedSlaves to []>>
<</if>>
<<if ($currentRule.selectedSlaves.length < 1)>>
<<set $SlaveSummaryFiler = "assignable">>
Choose specific slaves to limit Rule $r:
Select slaves to exclude from Rule $r:
<<print App.UI.SlaveList.slaveSelectionList(
s => !ruleSlaveSelected(s, $currentRule),
(s, i) => {
let l = App.UI.DOM.passageLink(SlaveFullName(s), 'Rules Slave Select Workaround',
() => { App.Utils.setActiveSlaveByIndex(i); });
l.classList.add("emphasizedSlave");
return l;
}
)>>
<<else>>
Rule $r currently limited to specific slaves: [[Clear list|Rules Slave Select][$currentRule.selectedSlaves = []]]
<<print App.UI.SlaveList.slaveSelectionList(
s => ruleSlaveSelected(s, $currentRule),
(s, i) => {
let l = App.UI.DOM.passageLink(SlaveFullName(s), 'Rules Slave Deselect Workaround',
() => { App.Utils.setActiveSlaveByIndex(i); });
l.classList.add("emphasizedSlave");
return l;
}
)>>
<br><br>
Choose more specific slaves:
<<print App.UI.SlaveList.slaveSelectionList(
s => !ruleSlaveSelected(s, $currentRule),
(s, i) => {
let l = App.UI.DOM.passageLink(SlaveFullName(s), 'Rules Slave Select Workaround',
() => { App.Utils.setActiveSlaveByIndex(i); });
l.classList.add("emphasizedSlave");
return l;
}
)>>
<</if>>
:: Rules Slave Select Workaround [nobr]
<<set $nextButton = "Continue", $nextLink = "Rules Slave Select">>
<<if !ruleSlaveSelected($activeSlave, $currentRule)>>
<<set $currentRule.selectedSlaves.push($activeSlave.ID)>>
<<if ruleSlaveExcluded($activeSlave, $currentRule)>>
<<set $currentRule.excludedSlaves.delete($activeSlave.ID)>>
<</if>>
<</if>>
<<goto "Rules Slave Select">>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment