1 -------------------------------------------------------------------------------
2 -- Doclet that generates HTML output. This doclet generates a set of html files
3 -- based on a group of templates. The main templates are:
5 -- <li>index.lp: index of modules and files;</li>
6 -- <li>file.lp: documentation for a lua file;</li>
7 -- <li>module.lp: documentation for a lua module;</li>
8 -- <li>function.lp: documentation for a lua function. This is a
9 -- sub-template used by the others.</li>
12 -- @release $Id: html.lua,v 1.29 2007/12/21 17:50:48 tomas Exp $
13 -------------------------------------------------------------------------------
15 local assert, getfenv, ipairs, loadstring, pairs, setfenv, tostring, tonumber, type = assert, getfenv, ipairs, loadstring, pairs, setfenv, tostring, tonumber, type
16 local io = require"io"
17 local posix = require "posix"
18 local lp = require "luadoc.lp"
19 local luadoc = require"luadoc"
20 local package = package
21 local string = require"string"
22 local table = require"table"
24 module "luadoc.doclet.html"
26 -------------------------------------------------------------------------------
27 -- Looks for a file `name' in given path. Removed from compat-5.1
28 -- @param path String with the path.
29 -- @param name String with the name to look for.
30 -- @return String with the complete path of the file found
31 -- or nil in case the file is not found.
33 local function search (path, name)
34 for c in string.gfind(path, "[^;]+") do
35 c = string.gsub(c, "%?", name)
37 if f then -- file exist?
42 return nil -- file not found
45 -------------------------------------------------------------------------------
46 -- Include the result of a lp template into the current stream.
48 function include (template, env)
49 -- template_dir is relative to package.path
50 local templatepath = options.template_dir .. template
52 -- search using package.path (modified to search .lp instead of .lua
53 local search_path = string.gsub(package.path, "%.lua", "")
54 local templatepath = search(search_path, templatepath)
55 assert(templatepath, string.format("template `%s' not found", template))
62 env.tonumber = tonumber
63 env.tostring = tostring
68 return lp.include(templatepath, env)
71 -------------------------------------------------------------------------------
72 -- Returns a link to a html file, appending "../" to the link to make it right.
73 -- @param html Name of the html file to link to
74 -- @return link to the html file
76 function link (html, from)
79 string.gsub(from, "/", function () h = "../" .. h end)
83 -------------------------------------------------------------------------------
84 -- Returns the name of the html file to be generated from a module.
85 -- Files with "lua" or "luadoc" extensions are replaced by "html" extension.
86 -- @param modulename Name of the module to be processed, may be a .lua file or
88 -- @return name of the generated html file for the module
90 function module_link (modulename, doc, from)
91 -- TODO: replace "." by "/" to create directories?
92 -- TODO: how to deal with module names with "/"?
97 if doc.modules[modulename] == nil then
98 -- logger:error(string.format("unresolved reference to module `%s'", modulename))
102 local href = "modules/" .. modulename .. ".html"
103 string.gsub(from, "/", function () href = "../" .. href end)
107 -------------------------------------------------------------------------------
108 -- Returns the name of the html file to be generated from a lua(doc) file.
109 -- Files with "lua" or "luadoc" extensions are replaced by "html" extension.
110 -- @param to Name of the file to be processed, may be a .lua file or
112 -- @param from path of where am I, based on this we append ..'s to the
114 -- @return name of the generated html file
116 function file_link (to, from)
121 href = string.gsub(href, "lua$", "html")
122 href = string.gsub(href, "luadoc$", "html")
123 href = "files/" .. href
124 string.gsub(from, "/", function () href = "../" .. href end)
128 -------------------------------------------------------------------------------
129 -- Returns a link to a function or to a table
130 -- @param fname name of the function or table to link to.
131 -- @param doc documentation table
132 -- @param kind String specying the kinf of element to link ("functions" or "tables").
134 function link_to (fname, doc, module_doc, file_doc, from, kind)
138 kind = kind or "functions"
141 for _, func_name in pairs(file_doc[kind]) do
142 if func_name == fname then
143 return file_link(file_doc.name, from) .. "#" .. fname
148 local _, _, modulename, fname = string.find(fname, "^(.-)[%.%:]?([^%.%:]*)$")
151 -- if fname does not specify a module, use the module_doc
152 if string.len(modulename) == 0 and module_doc then
153 modulename = module_doc.name
156 local module_doc = doc.modules[modulename]
157 if not module_doc then
158 -- logger:error(string.format("unresolved reference to function `%s': module `%s' not found", fname, modulename))
162 for _, func_name in pairs(module_doc[kind]) do
163 if func_name == fname then
164 return module_link(modulename, doc, from) .. "#" .. fname
168 -- logger:error(string.format("unresolved reference to function `%s' of module `%s'", fname, modulename))
171 -------------------------------------------------------------------------------
172 -- Make a link to a file, module or function
174 function symbol_link (symbol, doc, module_doc, file_doc, from)
179 -- file_link(symbol, from) or
180 module_link(symbol, doc, from) or
181 link_to(symbol, doc, module_doc, file_doc, from, "functions") or
182 link_to(symbol, doc, module_doc, file_doc, from, "tables")
185 logger:error(string.format("unresolved reference to symbol `%s'", symbol))
191 -------------------------------------------------------------------------------
192 -- Assembly the output filename for an input file.
193 -- TODO: change the name of this function
194 function out_file (filename)
196 h = string.gsub(h, "lua$", "html")
197 h = string.gsub(h, "luadoc$", "html")
199 -- h = options.output_dir .. string.gsub (h, "^.-([%w_]+%.html)$", "%1")
200 h = options.output_dir .. h
204 -------------------------------------------------------------------------------
205 -- Assembly the output filename for a module.
206 -- TODO: change the name of this function
207 function out_module (modulename)
208 local h = modulename .. ".html"
210 h = options.output_dir .. h
214 -----------------------------------------------------------------
215 -- Generate the output.
216 -- @param doc Table with the structured documentation.
219 -- Generate index file
220 if (#doc.files > 0 or #doc.modules > 0) and (not options.noindexpage) then
221 local filename = options.output_dir.."index.html"
222 logger:info(string.format("generating file `%s'", filename))
223 local f = posix.open(filename, "w")
224 assert(f, string.format("could not open `%s' for writing", filename))
226 include("index.lp", { doc = doc })
231 if not options.nomodules then
232 for _, modulename in ipairs(doc.modules) do
233 local module_doc = doc.modules[modulename]
234 -- assembly the filename
235 local filename = out_module(modulename)
236 logger:info(string.format("generating file `%s'", filename))
238 local f = posix.open(filename, "w")
239 assert(f, string.format("could not open `%s' for writing", filename))
241 include("module.lp", { doc = doc, module_doc = module_doc })
247 if not options.nofiles then
248 for _, filepath in ipairs(doc.files) do
249 local file_doc = doc.files[filepath]
250 -- assembly the filename
251 local filename = out_file(file_doc.name)
252 logger:info(string.format("generating file `%s'", filename))
254 local f = posix.open(filename, "w")
255 assert(f, string.format("could not open `%s' for writing", filename))
257 include("file.lp", { doc = doc, file_doc = file_doc} )
263 local f = posix.open(options.output_dir.."luadoc.css", "w")
265 include("luadoc.css")