mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-23 09:04:13 +00:00
Implement date and version
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@11813 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
545c70cd4d
commit
74388be227
1 changed files with 4 additions and 4 deletions
|
@ -705,16 +705,16 @@ static NSMutableSet *textNodes = nil;
|
|||
if ([[children name] isEqual: @"version"] == YES)
|
||||
{
|
||||
[buf appendString: indent];
|
||||
[buf appendString: @"<p>Version: "];
|
||||
[self outputNode: [children children] to: buf];
|
||||
[buf appendString: @"<p><b>Version:</b> "];
|
||||
[self outputText: [children children] to: buf];
|
||||
[buf appendString: @"</p>\n"];
|
||||
children = firstElement([children next]);
|
||||
}
|
||||
if ([[children name] isEqual: @"date"] == YES)
|
||||
{
|
||||
[buf appendString: indent];
|
||||
[buf appendString: @"<p>Date: "];
|
||||
[self outputNode: [children children] to: buf];
|
||||
[buf appendString: @"<p><b>Date:</b> "];
|
||||
[self outputText: [children children] to: buf];
|
||||
[buf appendString: @"</p>\n"];
|
||||
children = firstElement([children next]);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue