[squeak-dev] The Trunk: System-mt.1264.mcz

commits at source.squeak.org commits at source.squeak.org
Fri Dec 3 15:57:32 UTC 2021


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

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

Name: System-mt.1264
Author: mt
Time: 3 December 2021, 4:57:28.41885 pm
UUID: a00cc7d2-f63f-0e4e-9b57-78bfe4ef6edd
Ancestors: System-mt.1263

Minor cosmetic change. Sorry for the noise. Thanks to Jaromir (jar) for the tip! Change "</font><br>" to "<br></font>" to let the line break have the same font and thus a nice looking text layout.

=============== Diff against System-mt.1263 ===============

Item was changed:
  ----- Method: Utilities class>>setAuthorInitials (in category 'identification') -----
  setAuthorInitials
  	"Put up a dialog allowing the user to specify the author's initials. Inform the user about collisions with known contributors. See SystemNavigation class >> #authors. "
  
  	| newInitials newName |
  	newInitials := Project uiManager
  		request: 'Please type your initials:' translated
  		initialAnswer: AuthorInitials.
  	newInitials ifEmpty: [^ self "No Change"].
  
  	(SystemNavigation authorsInverted at: newInitials ifPresent: [:existingNames |
  		newName := existingNames sorted joinSeparatedBy: '/'.
  
+ 	(self confirm: ('Hello, <b>{1}</b>!! :-)<br><br><font face="{4}" size="{5}">Our <a href="code://{3}">list of known contributors</{6}> associates the initials you<br>have entered with this name. If this is not you, please<br>consider alternative initials, preferably more than just <br>a few characters, to avoid collisions.<br></font><br>Do you want to use these author initials?<br><br>	<b>{2}</b>' translated format: {
- 	(self confirm: ('Hello, <b>{1}</b>!! :-)<br><br><font face="{4}" size="{5}">Our <a href="code://{3}">list of known contributors</{6}> associates the initials you<br>have entered with this name. If this is not you, please<br>consider alternative initials, preferably more than just <br>a few characters, to avoid collisions.</font><br><br>Do you want to use these author initials?<br><br>	<b>{2}</b>' translated format: {
  		newName ifNil: [newInitials].
  		newInitials.
  		'SystemReporter open model categoryAt: 1 put: true'.
  		Preferences standardButtonFont familyName.
  		Preferences standardButtonFont pointSize.
  		"mt: Avoid triggering the Windows Defender. See http://lists.squeakfoundation.org/pipermail/squeak-dev/2021-December/217346.html"
  		'a' }) asTextFromHtml) ] ifAbsent: [true])
  			ifTrue: [self authorInitials: newInitials].!



More information about the Squeak-dev mailing list