From commits@source.squeak.org Sat Nov 26 14:32:20 2022
From: commits@source.squeak.org
To: squeak-dev@lists.squeakfoundation.org
Subject: [squeak-dev] The Trunk: System-ct.1375.mcz
Date: Sat, 26 Nov 2022 14:32:12 +0000
Message-ID: <20221126143219.DBCCE14D82E@mail.squeak.org>
MIME-Version: 1.0
Content-Type: multipart/mixed; boundary="===============1505478085057752967=="
--===============1505478085057752967==
Content-Type: text/plain; charset="utf-8"
Content-Transfer-Encoding: quoted-printable
Christoph Thiede uploaded a new version of System to project The Trunk:
http://source.squeak.org/trunk/System-ct.1375.mcz
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D Summary =3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
Name: System-ct.1375
Author: ct
Time: 26 November 2022, 3:32:09.169627 pm
UUID: 48f83c02-9051-4c40-b43e-f5aade1bb7ab
Ancestors: System-dtl.1374, System-ct.1374
Merges System-ct.1374:
Fixes formatting of greeting message when entering author initials.
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D Diff against System-dtl.1374 =
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
Item was changed:
----- Method: Utilities class>>setAuthorInitials (in category 'identificati=
on') -----
setAuthorInitials
"Put up a dialog allowing the user to specify the author's initials. Infor=
m the user about collisions with known contributors. See SystemNavigation cla=
ss >> #authors. "
=20
| newInitials newName |
newInitials :=3D Project uiManager
request: 'Please type your initials:' translated
initialAnswer: AuthorInitials.
newInitials ifEmpty: [^ self "No Change"].
=20
(SystemNavigation authorsInverted at: newInitials ifPresent: [:existingNam=
es |
newName :=3D existingNames sorted joinSeparatedBy: '/'.
=20
+ (self confirm: ('Hello, {1}!! :-)
Our list of known contributors{4}> associates the initials you have entered wi=
th this name. If this is not you, please consider alternative initials, prefe=
rably more than just a few characters, to avoid collisions.
Do you wan=
t to use these author initials?
{2}' translated format: {
- (self confirm: ('Hello, {1}!! :-)
Our list of known contributors{4}> associates the initials you have entered wi=
th this name. If this is not you, please consider alternative initials, prefe=
rably more than just a few characters, to avoid collisions.
Do you wan=
t to use these author initials?
{2}' translated format: {
newName ifNil: [newInitials].
newInitials.
'SystemReporter open model categoryAt: 1 put: true'.
"mt: Avoid triggering the Windows Defender. See http://lists.squeakfounda=
tion.org/pipermail/squeak-dev/2021-December/217346.html"
'a' }) asTextFromHtml) ] ifAbsent: [true])
ifTrue: [self authorInitials: newInitials].!
--===============1505478085057752967==--