[% META
title = 'Modules Index'
%]
Modules
[% modlist = [ ];
" * Generating module pages\n" | stderr;
FOREACH modname = modules;
modfile = modname.replace('::', '/');
module = {
title = modname
url = "modules/${modfile}.html",
xml = "${dir.xml}/modules/${modfile}.xml"
};
USE File(module.url, nostat=1);
uplink = File.home;
modlist.push( module );
INCLUDE module WRAPPER layout FILTER redirect(module.url);
" - $module.title => $module.url\n" | stderr;
END
%]
[% INCLUDE docset/toc
docset = modlist
%]