mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-30 08:21:25 +00:00
Documentation added
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@14974 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
f6cc9ceb34
commit
e3be05fe04
4 changed files with 205 additions and 15 deletions
|
@ -1801,24 +1801,24 @@ NSLog(@"Element '%@' not implemented", name); // FIXME
|
|||
[buf appendString: @"<p>\n"];
|
||||
[self incIndent];
|
||||
}
|
||||
return [node nextElement];
|
||||
return [node next];
|
||||
}
|
||||
else if ([n isEqual: @"example"] == YES)
|
||||
{
|
||||
[buf appendString: @"<pre>\n"];
|
||||
[self outputText: [node firstChild] to: buf];
|
||||
[buf appendString: @"\n</pre>\n"];
|
||||
return [node nextElement];
|
||||
return [node next];
|
||||
}
|
||||
else if ([n isEqual: @"embed"] == YES)
|
||||
{
|
||||
NSLog(@"Element 'embed' not supported");
|
||||
return [node nextElement];
|
||||
return [node next];
|
||||
}
|
||||
else if ([n isEqual: @"index"] == YES)
|
||||
{
|
||||
[self outputNode: node to: buf];
|
||||
return [node nextElement];
|
||||
return [node next];
|
||||
}
|
||||
else if ([textNodes member: n] != nil)
|
||||
{
|
||||
|
@ -1969,7 +1969,7 @@ NSLog(@"Element '%@' not implemented", name); // FIXME
|
|||
{
|
||||
return node; // Not a list
|
||||
}
|
||||
node = [node nextElement];
|
||||
node = [node next];
|
||||
return node;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue