Blob Blame History Raw
--- doc/HAPcryst.bib.orig	2020-02-10 06:59:09.000000000 -0700
+++ doc/HAPcryst.bib	2020-02-10 15:00:49.524560511 -0700
@@ -1,14 +1,14 @@
 @Misc{polymake,
   author = 	 "Ewgenij Gawrilow and Michael Joswig",
   title = 	 {polymake},
-  howpublished = {{http://www.math.tu-berlin.de/polymake/}}
+  howpublished = {\url{http://www.math.tu-berlin.de/polymake/}}
 }
 
 
 @Misc{polyhedral,
   author = 	 {Dutour Sikiric, Mathieu},
   title =        {Polyhedral},
-  howpublished = {{http://www.liga.ens.fr/~dutour/Polyhedral/index.html}}
+  howpublished = {\url{http://www.liga.ens.fr/~dutour/Polyhedral/index.html}}
 }
 
 
@@ -16,13 +16,13 @@
 @Misc{hap,
   author = 	 {Graham Ellis},
   title =        {HAP},
-  howpublished = {{http://hamilton.nuigalway.ie/Hap/www/}}
+  howpublished = {\url{http://hamilton.nuigalway.ie/Hap/www/}}
 }
 
 
 @Misc{cryst,
   author = 	 "Bettina Eick and Franz Gahler and Werner Nickel",
   title =        {cryst},
-  howpublished = {{http://www.gap-system.org/Packages/cryst.html}}
+  howpublished = {\url{http://www.gap-system.org/Packages/cryst.html}}
 }
 
--- makedoc.g.orig	2020-02-10 06:59:09.000000000 -0700
+++ makedoc.g	2020-02-10 15:01:49.418531339 -0700
@@ -3,12 +3,6 @@
 ##  Call this with GAP from within the package directory.
 ##
 
-if fail = LoadPackage("AutoDoc", ">= 2016.01.21") then
-    Error("AutoDoc 2016.01.21 or newer is required");
-fi;
-
-AutoDoc(rec( scaffold := rec( MainPage := false )));
-
 MakeGAPDocDoc( "lib/datatypes/doc", # path to the directory containing the main file
                "resolutionAccess",  # the name of the main file (without extension)
                           # list of (probably source code) files relative 
@@ -35,4 +29,11 @@ CopyHTMLStyleFiles( "lib/datatypes/doc"
 # Create the manual.lab file which is needed if the main manuals or another 
 # package is referring to your package
 GAPDocManualLab( "HAPcryst" );; 
- 
+
+HELP_ADD_BOOK( "HAPprog", "An experimental framework for objectifying the data structures of Hap", Directory( "./lib/datatypes/doc" ) );
+
+if fail = LoadPackage("AutoDoc", ">= 2016.01.21") then
+    Error("AutoDoc 2016.01.21 or newer is required");
+fi;
+
+AutoDoc(rec( scaffold := rec( MainPage := false )));