mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-29 16:01:38 +00:00
Documentation improvements
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@11932 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
8d210dfb59
commit
c07f461919
7 changed files with 210 additions and 93 deletions
|
@ -252,6 +252,14 @@
|
|||
log which files are being regenerated because of their dependencies
|
||||
on other files.
|
||||
</item>
|
||||
<item><strong>Standards</strong>
|
||||
A boolean value used to specify whether the program should insert
|
||||
information about standards complience into ythe documentation.
|
||||
This should only be used when documenting the GNUstep libraries
|
||||
and tools themselves as it assumes that the code being documented
|
||||
is part of GNUstep and possibly complies with the OpenStep standard
|
||||
or implements MacOS-X compatible methods.
|
||||
</item>
|
||||
<item><strong>SourceDirectory</strong>
|
||||
May be used to specify the directory to be searched for source
|
||||
(anything other than <code>.h</code> files ... which are controlled
|
||||
|
@ -342,6 +350,7 @@ main(int argc, char **argv, char **env)
|
|||
BOOL showDependencies = NO;
|
||||
BOOL autoIndex = NO;
|
||||
BOOL modifiedRefs = NO;
|
||||
BOOL standards = NO;
|
||||
NSDate *rDate = nil;
|
||||
NSMutableArray *files = nil;
|
||||
CREATE_AUTORELEASE_POOL(outer);
|
||||
|
@ -359,6 +368,7 @@ main(int argc, char **argv, char **env)
|
|||
nil]];
|
||||
|
||||
autoIndex = [defs boolForKey: @"AutoIndex"];
|
||||
standards = [defs boolForKey: @"Standards"];
|
||||
ignoreDependencies = [defs boolForKey: @"IgnoreDependencies"];
|
||||
showDependencies = [defs boolForKey: @"ShowDependencies"];
|
||||
if (ignoreDependencies == YES)
|
||||
|
@ -464,6 +474,7 @@ main(int argc, char **argv, char **env)
|
|||
prjRefs = [AGSIndex new];
|
||||
indexer = [AGSIndex new];
|
||||
parser = [AGSParser new];
|
||||
[parser setGenerateStandards: standards];
|
||||
output = [AGSOutput new];
|
||||
|
||||
/*
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue