lots of formatting fixes,
added functionindex to docapplication
This commit is contained in:
parent
7633e98eea
commit
604ab4f8ba
18 changed files with 219 additions and 116 deletions
|
@ -75,9 +75,9 @@ function appStat () {
|
|||
* utility function to sort object-arrays by name
|
||||
*/
|
||||
function sortByName(a,b) {
|
||||
if ( a.name>b.name)
|
||||
if ( a.getName () > b.getName ())
|
||||
return 1;
|
||||
else if ( a.name==b.name )
|
||||
else if (a.getName () == b.getName ())
|
||||
return 0;
|
||||
else
|
||||
return -1;
|
||||
|
|
|
@ -1,22 +1,26 @@
|
|||
|
||||
<p><a href="<% root.href action="main" %>"><img src="<% root.href action="image" %>" title="helma" border="0" width="174" height="35" align="baseline" style="border-width:3px;border-color:white;"></a>
|
||||
<a href="http://helma.org/">helma.org</a>
|
||||
<a href="http://helma.org/docs">docs</a>
|
||||
<a href="http://helma.org/lists/listinfo/hop">mailinglist</a>
|
||||
</p>
|
||||
|
||||
<div class="list_apps">
|
||||
<i><% root.appCount filter="active" singular=" app" plural=" apps"%> on
|
||||
<a href="<% root.href action="main" %>"><% root.hostname %></a></i>
|
||||
<a href="<% root.href action="main" %>"><% root.hostname %> (<% root.hostaddress %>)</a></i>
|
||||
</div>
|
||||
|
||||
<% root.appList filter="active" %>
|
||||
|
||||
<p></p>
|
||||
|
||||
<div class="list_apps">
|
||||
<i>and <% root.appCount filter="disabled" %> disabled apps:</i>
|
||||
</div>
|
||||
|
||||
<% root.appList filter="disabled" skin="navig_disabled" %>
|
||||
|
||||
<br/><br/>
|
||||
<p>
|
||||
Information on <a href="http://helma.org/">helma.org</a>:<br/>
|
||||
<li><a href="http://helma.org/docs">reference</a><br/>
|
||||
<li><a href="http://helma.org/lists/listinfo/hop">mailinglist</a><br/>
|
||||
<li><a href="http://adele.helma.org/source/cvsweb.cgi/?cvsroot=hop">cvs</a><br/>
|
||||
<li><a href="http://helma.org/download/">download</a><br/>
|
||||
</p>
|
||||
|
|
|
@ -7,7 +7,7 @@ function renderLink (docEl, param) {
|
|||
} else if (docEl.getType () == docEl.SKIN) {
|
||||
text = docEl.getName () + ".skin";
|
||||
} else if (docEl.getType () == docEl.MACRO) {
|
||||
if (docEl.getParentElement () && docEl.getParentElement().getName()!="global") {
|
||||
if (param.handler!="false" && docEl.getParentElement () && docEl.getParentElement().getName()!="global") {
|
||||
text = docEl.getParentElement ().getName () + ".";
|
||||
}
|
||||
var str = docEl.getName ();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue