File: makedoc.g

package info (click to toggle)
gap-guava 3.15%2Bds-3
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 5,804 kB
  • sloc: ansic: 20,868; xml: 10,543; makefile: 267; sh: 47
file content (67 lines) | stat: -rw-r--r-- 2,047 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
###########################################################################
##
#W    buildman.g               GUAVA Package            Alexander Konovalov
##                                                      
###########################################################################


ExtractMyManualExamples:=function( pkgname, main, files )
local path, tst, i, s, name, output, ch, a;
path:="doc";
Print("Extracting manual examples for ", pkgname, " package ...\n" );
tst:=ExtractExamples( path, main, files, "Chapter" );
Print(Length(tst), " chapters detected\n");
for i in [ 1 .. Length(tst) ] do 
  Print( "Chapter ", i, " : \c" );
  if Length( tst[i] ) > 0 then
    s := String(i);
    if Length(s)=1 then 
      # works for <100 chapters
      s:=Concatenation("0",s); 
    fi;
    name := Filename( Directory( "tst" ), 
                Concatenation( LowercaseString(pkgname), s, ".tst" ) );
    output := OutputTextFile( name, false ); # to empty the file first
    SetPrintFormattingStatus( output, false ); # to avoid line breaks
    ch := tst[i];
    AppendTo(output, "# ", pkgname, ", chapter ",i,"\n");
    for a in ch do
      AppendTo(output, "\n# ",a[2], a[1]);
    od;
    Print("extracted ", Length(ch), " examples \n");
  else
    Print("no examples \n" );    
  fi;  
od;
end;

###########################################################################

GUAVAMANUALFILES:=[ 
"../PackageInfo.g", 
];

###########################################################################
##
##  GUAVABuildManual()
##
GUAVABuildManual:=function()
local mypath, path, main, files, f, bookname;
path:="doc";
main:="guava.xml";
bookname:="guava";
MakeGAPDocDoc( path, main, GUAVAMANUALFILES, bookname, "../../..", "MathJax" );  
CopyHTMLStyleFiles( path );
GAPDocManualLab( "guava" );; 
ExtractMyManualExamples( "guava", main, GUAVAMANUALFILES);
end;


###########################################################################

GUAVABuildManual();

###########################################################################
##
#E
##