diff options
Diffstat (limited to 'Data/Libraries/LDoc/tests/example/laurent/ldoc.ltp')
-rw-r--r-- | Data/Libraries/LDoc/tests/example/laurent/ldoc.ltp | 201 |
1 files changed, 201 insertions, 0 deletions
diff --git a/Data/Libraries/LDoc/tests/example/laurent/ldoc.ltp b/Data/Libraries/LDoc/tests/example/laurent/ldoc.ltp new file mode 100644 index 0000000..7e4341b --- /dev/null +++ b/Data/Libraries/LDoc/tests/example/laurent/ldoc.ltp @@ -0,0 +1,201 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" + "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> +<html> +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/> +<head> + <title>$(ldoc.title)</title> + <link rel="stylesheet" href="$(ldoc.css)" type="text/css" /> +</head> +<body> + +<div id="container"> + +<div id="product"> + <div id="product_logo"></div> + <div id="product_name"><big><b></b></big></div> + <div id="product_description"></div> +</div> <!-- id="product" --> + + +<div id="main"> + +# local no_spaces = ldoc.no_spaces +# local use_li = ldoc.use_li +# local display_name = ldoc.display_name +# local iter = ldoc.modules.iter +# local M = ldoc.markup + +<!-- Menu --> + +<div id="navigation"> + +<h1>$(ldoc.project)</h1> + +# if not ldoc.single and module then -- reference back to project index +<ul> + <li><a href="../$(ldoc.output).html">Index</a></li> +</ul> +# else +<p>$(ldoc.description)</p> +# end + + + +# -------- contents of project ---------- +# if not ldoc.no_summary then +# local this_mod = module and module.name +# for kind, mods, type in ldoc.kinds() do +# if not ldoc.kinds_allowed or ldoc.kinds_allowed[type] then +<h2>$(kind)</h2> +<ul> +# for mod in mods() do +# if mod.name == this_mod then -- highlight current module, link to others + <li><strong>$(mod.name)</strong></li> +# else + <li><a href="$(ldoc.ref_to_module(mod))">$(mod.name)</a></li> +# end +# end +# end +#end +</ul> +# else +<ul> +# for kind, items in module.kinds() do +<h2>$(kind)</h2> +# for item in items() do + <li><a href="#$(item.name)">$(display_name(item))</a></li> +# end end +</ul> +#end + +# --------- contents of module ------------- +# if module and not ldoc.no_summary and #module.items > 0 then +<h2>Contents</h2> +<ul> +# for kind,items in module.kinds() do +<li><a href="#$(no_spaces(kind))">$(kind)</a></li> +# end +</ul> +# end + +</div> + +<div id="content"> + +#if module then +<h1>$(ldoc.titlecase(module.type)) <code>$(module.name)</code></h1> +# end + +# if ldoc.body then -- verbatim HTML as contents; 'non-code' entries + $(ldoc.body) +# elseif module then -- module documentation +# ldoc.item = module -- context for M() +<p>$(M(module.summary))</p> +<p>$(M(module.description))</p> + +# if not ldoc.no_summary then +# -- bang out the tables of item types for this module (e.g Functions, Tables, etc) +# for kind,items in module.kinds() do +<h2><a href="#$(no_spaces(kind))">$(kind)</a></h2> +<table class="function_list"> +# for item in items() do + <tr> + <td class="name" nowrap><a href="#$(item.name)">$(display_name(item))</a></td> + <td class="summary">$(M(item.summary))</td> + </tr> +# end -- for items +</table> +#end -- for kinds + +<br/> +<br/> + +#end -- if not no_summary + +# --- currently works for both Functions and Tables. The params field either contains +# --- function parameters or table fields. +# local show_return = not ldoc.no_return_or_parms +# local show_parms = show_return +# for kind, items in module.kinds() do + <h2><a name="$(no_spaces(kind))"></a>$(kind)</h2> + $(M(module.kinds:get_section_description(kind))) + <dl class="function"> +# for item in items() do ldoc.item = item -- provides context for M() + <dt> + <a name = "$(item.name)"></a> + <strong>$(display_name(item))</strong> + </dt> + <dd> + $(M(item.summary..' <br />'..(item.description or ''))) + +# if show_parms and item.params and #item.params > 0 then + <h3>$(module.kinds:type_of(item).subnames):</h3> + <ul> +# for p in iter(item.params) do + <li><code><em>$(p)</em></code>: $(M(item.params[p]))</li> +# end -- for + </ul> +# end -- if params + +# if show_return and item.ret then +# local li,il = use_li(item.ret) + <h3>Returns:</h3> + <ol> +# for r in iter(item.ret) do + $(li)$(M(r))$(il) +# end -- for + </ol> +# end -- if returns + +# if item.usage then +# local li,il = use_li(item.usage) + <h3>Usage:</h3> + <ul> +# for usage in iter(item.usage) do + $(li)<pre class="example">$(usage)</pre>$(il) +# end -- for + </ul> +# end -- if usage + +# if item.see then +# local li,il = use_li(item.see) + <h3>see also:</h3> + <ul> +# for see in iter(item.see) do + $(li)<a href="$(ldoc.href(see))">$(see.label)</a>$(il) +# end -- for + </ul> +# end -- if see +</dd> +# end -- for items +</dl> +# end -- for kinds + +# else -- if module; project-level contents + +# if ldoc.description then + <p>$(M(ldoc.description))</p> +# end + +# for kind, mods in ldoc.kinds() do +<h2>$(kind)</h2> +# kind = kind:lower() +<table class="module_list"> +# for m in mods() do + <tr> + <td class="name" nowrap><a href="$(no_spaces(kind))/$(m.name).html">$(m.name)</a></td> + <td class="summary">$(M(m.summary))</td> + </tr> +# end -- for modules +</table> +# end -- for kinds +# end -- if module + +</div> <!-- id="content" --> +</div> <!-- id="main" --> +<div id="about"> +<i>generated by <a href="http://github.com/stevedonovan/LDoc">LDoc</a></i> +</div> <!-- id="about" --> +</div> <!-- id="container" --> +</body> +</html>
\ No newline at end of file |