@ -752,7 +752,7 @@ public:
if ( strncmp ( " SampleCmd " , c - > GetName ( ) , 9 ) ! = 0 )
if ( strncmp ( " SampleCmd " , c - > GetName ( ) , 9 ) ! = 0 )
{
{
fprintf ( fFile , " <P><I>%s </I><BR>%s </P > \n " , c - > GetSignature ( ) ,
fprintf ( fFile , " <p><em>%s </em><br />%s </p > \n " , c - > GetSignature ( ) ,
c - > GetHelp ( ) ) ;
c - > GetHelp ( ) ) ;
}
}
}
}
@ -760,10 +760,11 @@ public:
{
{
// if(g->GetFirstCommand() != nil)
// if(g->GetFirstCommand() != nil)
{
{
fprintf ( fFile , " <P><B><H%s>Command %sGroup %s </B></H2></P > \n " ,
fprintf ( fFile , " <p><strong><h%s>Command %sGroup %s </strong></h%s></p > \n " ,
( depth > 0 ) ? " 3 " : " 2 " ,
( depth > 0 ) ? " 3 " : " 2 " ,
( depth > 0 ) ? " Sub " : " " ,
( depth > 0 ) ? " Sub " : " " ,
g - > GetName ( ) ) ;
g - > GetName ( ) ,
( depth > 0 ) ? " 3 " : " 2 " ) ;
}
}
return true ;
return true ;
}
}
@ -781,7 +782,7 @@ public:
if ( strncmp ( " SampleCmd " , c - > GetName ( ) , 9 ) ! = 0 )
if ( strncmp ( " SampleCmd " , c - > GetName ( ) , 9 ) ! = 0 )
{
{
fprintf ( fFile , " <I>%s.%s </I> - %s <BR > \n " , fGrpName , c - > GetSignature ( ) ,
fprintf ( fFile , " <em>%s.%s </em> - %s <br / > \n " , fGrpName , c - > GetSignature ( ) ,
c - > GetHelp ( ) ) ;
c - > GetHelp ( ) ) ;
}
}
}
}
@ -789,11 +790,14 @@ public:
{
{
// if(g->GetFirstCommand() != nil)
// if(g->GetFirstCommand() != nil)
{
{
fprintf ( fFile , " <BR > \n " ) ;
fprintf ( fFile , " <br / > \n " ) ;
if ( depth < 1 )
if ( depth < 1 )
strcpy ( fGrpName , g - > GetName ( ) ) ;
strcpy ( fGrpName , g - > GetName ( ) ) ;
else
else
{
{
pfConsoleCmdGroup * parentGrp ;
parentGrp = g - > GetParent ( ) ;
strcpy ( fGrpName , parentGrp - > GetName ( ) ) ;
strcat ( fGrpName , " . " ) ;
strcat ( fGrpName , " . " ) ;
strcat ( fGrpName , g - > GetName ( ) ) ;
strcat ( fGrpName , g - > GetName ( ) ) ;
}
}
@ -822,7 +826,7 @@ PF_CONSOLE_CMD( Console, CreateDocumentation, "string fileName",
}
}
fprintf ( f , " <CENTER> <H2> Console Commands for Plasma 2.0 Client </H2> <I>Built %s on %s.</I></CENTER><BR > " ,
fprintf ( f , " <h2 style= \" text-align: center; \" > Console Commands for Plasma 2.0 Client </h2> <em style= \" display: block; text-align: center; \" >Built %s on %s.</em><br / > " ,
pnBuildDates : : fBuildTime , pnBuildDates : : fBuildDate ) ;
pnBuildDates : : fBuildTime , pnBuildDates : : fBuildDate ) ;
DocGenIterator iter ( f ) ;
DocGenIterator iter ( f ) ;
@ -852,7 +856,7 @@ PF_CONSOLE_CMD( Console, CreateBriefDocumentation, "string fileName",
return ;
return ;
}
}
fprintf ( f , " <CENTER> <H3> Console Commands for Plasma 2.0 Client </H3> <I>Built %s on %s.</I></CENTER><BR > " ,
fprintf ( f , " <h2 style= \" text-align: center; \" > Console Commands for Plasma 2.0 Client </h2> <em style= \" display: block; text-align: center; \" >Built %s on %s.</em><br / > " ,
pnBuildDates : : fBuildTime , pnBuildDates : : fBuildDate ) ;
pnBuildDates : : fBuildTime , pnBuildDates : : fBuildDate ) ;
BriefDocGenIterator iter ( f ) ;
BriefDocGenIterator iter ( f ) ;
group = pfConsoleCmdGroup : : GetBaseGroup ( ) ;
group = pfConsoleCmdGroup : : GetBaseGroup ( ) ;