mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-30 00:11:26 +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
92384d8e4a
commit
e1b5e01915
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…
Add table
Add a link
Reference in a new issue