FogBugz (Case [Issue]22918) Sources and Changes - Problem with accented characters in user name when committing

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

FogBugz (Case [Issue]22918) Sources and Changes - Problem with accented characters in user name when committing

Pharo Issue Tracker
FogBugz Notification
avatar
Yann-Gaël Guéhéneuc opened Case 22918: Problem with accented characters in user name when committing and assigned it to Everyone:
Bug in Project:  Sources and Changes: 1. Pharo Image  •  You are subscribed to this case
I use my name with accented characters when committing some code and got an exception that Guille fixed as follows:

"protocol: #'private-commits'"

commitFromGitCommit: aLGitCommit

^ self commitCache at: aLGitCommit id hexString ifAbsentPut: [
IceGitCommit new
id: aLGitCommit id hexString;
author: aLGitCommit author name asByteArray utf8Decoded;
datetime: aLGitCommit time asDateAndTime;
ancestorIds: (aLGitCommit parents collect: [ :parent | parent id hexString ]);
comment: aLGitCommit message;
repository: self;
yourself ]

->

"protocol: #'private-commits'"

commitFromGitCommit: aLGitCommit

^ self commitCache at: aLGitCommit id hexString ifAbsentPut: [
IceGitCommit new
id: aLGitCommit id hexString;
author: aLGitCommit author name;
datetime: aLGitCommit time asDateAndTime;
ancestorIds: (aLGitCommit parents collect: [ :parent | parent id hexString ]);
comment: aLGitCommit message;
repository: self;
yourself ]
Priority Priority: 5 – Fix If Time Status Status: Work Needed
Assigned To Assigned to: Everyone Milestone Milestone: Pharo7.0

Go to Case
No longer need updates? Unsubscribe from this case.

Don't want FogBugz notifications anymore? Update your preferences.

FogBugz

_______________________________________________
Pharo-bugtracker mailing list
[hidden email]
https://lists.gforge.inria.fr/mailman/listinfo/pharo-bugtracker