* luci/contrib: implemented "@cstyle" tag in luadoc to tell whether a "module" is...
[project/luci.git] / contrib / luadoc / lua / luadoc / doclet / html / function.lp
index aa0e25b14cdd99a3f1b1f2630f0590c3359a7124..afc645b0758f0c5f1e8d2610637ce5fcca404ec9 100644 (file)
@@ -8,7 +8,7 @@ else
 end
 %>
 
-<dt><%=func.private and "local " or ""%><a name="<%=func.name%>"></a><strong><%=func.name%></strong>&nbsp;(<%=table.concat(func.param, ", ")%>)</dt>
+<dt><%=func.private and "local " or ""%><a name="<%=func.name%>"></a><strong><%=(oop and func.name:gsub("%.",":") or func.name:gsub(".+%.",""))%></strong>&nbsp;(<%=table.concat(func.param, ", ")%>)</dt>
 <dd>
 <%=func.description or ""%>
 
@@ -56,9 +56,9 @@ end
 <ul>
        <%for i = 1, #func.see do%>
        <li><a href="<%=luadoc.doclet.html.symbol_link(func.see[i], doc, module_doc, file_doc, from)%>">
-               <%=func.see[i]%>
+               <%=(oop and func.see[i]:gsub("%.",":") or func.see[i]:gsub(".+%.",""))%>
        </a>
        <%end%>
-</ul>
+</ul
 <%end%>
 </dd>