mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-23 09:04:13 +00:00
Use full name of person generating documentation as author
This commit is contained in:
parent
05c8051a9c
commit
a9a198a283
1 changed files with 3 additions and 2 deletions
|
@ -397,7 +397,7 @@ static BOOL snuggleStart(NSString *t)
|
|||
authors = [info objectForKey: @"authors"];
|
||||
if (authors == nil)
|
||||
{
|
||||
tmp = [NSString stringWithFormat: @"Generated by %@", NSUserName()];
|
||||
tmp = [NSString stringWithFormat: @"Generated by %@", NSFullUserName()];
|
||||
[str appendString: @" <author name=\""];
|
||||
[str appendString: tmp];
|
||||
[str appendString: @"\"></author>\n"];
|
||||
|
@ -2365,7 +2365,8 @@ static BOOL snuggleStart(NSString *t)
|
|||
[str appendString: @" <title>"];
|
||||
[str appendString: kind];
|
||||
[str appendString: @"</title>\n"];
|
||||
tmp = [NSString stringWithFormat: @"Generated by %@", NSUserName()];
|
||||
tmp = [NSString stringWithFormat: @"Generated by %@",
|
||||
NSFullUserName()];
|
||||
[str appendString: @" <author name=\""];
|
||||
[str appendString: tmp];
|
||||
[str appendString: @"\"></author>\n"];
|
||||
|
|
Loading…
Reference in a new issue