[squeak-dev] The Trunk: MonticelloConfigurations-mt.169.mcz

commits at source.squeak.org commits at source.squeak.org
Thu Dec 2 13:56:25 UTC 2021


Marcel Taeumel uploaded a new version of MonticelloConfigurations to project The Trunk:
http://source.squeak.org/trunk/MonticelloConfigurations-mt.169.mcz

==================== Summary ====================

Name: MonticelloConfigurations-mt.169
Author: mt
Time: 2 December 2021, 2:56:24.480715 pm
UUID: 7c0fb674-93ba-2443-9c53-725956da9084
Ancestors: MonticelloConfigurations-ct.168

We have a few places in the sources, where we hard-code the literal '</a>' in one form or another. In this rather recent example, avoid that through a little indirection to fool the Windows Defender. Also to document the overall issue somewhere within the image.

See http://lists.squeakfoundation.org/pipermail/squeak-dev/2021-December/217346.html

=============== Diff against MonticelloConfigurations-ct.168 ===============

Item was changed:
  ----- Method: MCMcmUpdater>>updateMessageFor: (in category 'private') -----
  updateMessageFor: previousUpdateLevel
  
+ 	^ ('Update completed.<br><br>Version: {1}<br>Update: {3}<b>{2}</b><br><br>Url: <a href="{4}">{4}</{10}><br>Map: ''{5}''<br>CI status: <a href="{8}"><img src="{7}" /> {9}</{10}>{6}' translated format: {
- 	^ ('Update completed.<br><br>Version: {1}<br>Update: {3}<b>{2}</b><br><br>Url: <a href="{4}">{4}</a><br>Map: ''{5}''<br>CI status: <a href="{8}"><img src="{7}" /> {9}</a>{6}' translated format: {
  			SystemVersion current version.
  			SystemVersion current highestUpdate.
  			previousUpdateLevel = SystemVersion current highestUpdate
  				ifTrue: ['']
  				ifFalse: [previousUpdateLevel asString, ' -> '].
  			self repository.
  			MCMcmUpdater updateMapName.
  			SystemVersion current description ifEmpty: [''] ifNotEmpty: [:d |
  				'<br><br>', (d copyReplaceAll: String cr with: '<br>')].
  			SystemVersion current ciStatusBadgeUrl.
  			SystemVersion current ciStatusPageUrl.
  			SystemVersion current ciStatusTimestamp ifNil: ['(build inaccessible!!)' translated].
+ 			"mt: Avoid triggering the Windows Defender. See http://lists.squeakfoundation.org/pipermail/squeak-dev/2021-December/217346.html"
+ 			'a'.
  				}) asTextFromHtml!



More information about the Squeak-dev mailing list