-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathinit.g
36 lines (30 loc) · 1.19 KB
/
init.g
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
#############################################################################
##
#A init.g GAPDoc Frank Lübeck / Max Neunhöffer
##
#H @(#)$Id: init.g,v 1.2 2001-06-11 08:04:27 gap Exp $
##
#Y Copyright (C) 2000, Frank Lübeck and Max Neunhöffer,
#Y Lehrstuhl D für Mathematik, RWTH Aachen
##
DeclareAutoPackage("gapdoc", "0.9", ReturnTrue);
DeclarePackageAutoDocumentation("GAPDoc", "doc", "GAPDoc",
"Package for Preparing GAP Documentation");
DeclarePackageAutoDocumentation("GAPDoc", "example", "GAPDoc Example",
"Extensive Example for GAPDoc");
#DeclarePackage("gapdoc", "0.9", ReturnTrue);
#DeclarePackageDocumentation("gapdoc", "doc");
if not "gapdoc" in AUTOLOAD_PACKAGES then
ReadPkg("gapdoc", "banner.g");
fi;
ReadPkg("gapdoc", "lib/PrintUtil.gd");
ReadPkg("gapdoc", "lib/Text.gd");
ReadPkg("gapdoc", "lib/ComposeXML.gd");
ReadPkg("gapdoc", "lib/XMLParser.gd");
ReadPkg("gapdoc", "lib/GAPDoc.gd");
ReadPkg("gapdoc", "lib/BibTeX.gd");
ReadPkg("gapdoc", "lib/GAPDoc2LaTeX.gd");
ReadPkg("gapdoc", "lib/GAPDoc2Text.gd");
ReadPkg("gapdoc", "lib/GAPDoc2HTML.gd");
# The handler functions for GAP's help system are read now:
ReadPkg("gapdoc", "lib/HelpBookHandler.g");