1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
|
<%
// Java Plug-in Framework (JPF)
// Copyright (C) 2004 - 2005 Dmitry Olshansky
// $Id$
%>
<%
import org.java.plugin.*;
include("functions.ijxp");
%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Plug-ins Tree Hierarchy</title>
<link rel ="stylesheet" type="text/css" href="<%= relativePath %>/stylesheet.css" title="Style">
</head>
<body onload="if (parent != null) {parent.document.title = document.title}">
<h1>Plug-ins Tree Hierarchy</h1>
<ul>
<% for (PluginDescriptor plugin : allPluginDescriptors) { %>
<li>
<b>Plug-in:</b> <a href="<%= relativePath %>/<%= plugin.getId() %>/index.html"><%= plugin.getId() %> <%= plugin.getVersion() %></a>
<% if (!plugin.getFragments().isEmpty()) { %>
<ul>
<% for (PluginFragment fragment : plugin.getFragments()) { %>
<li><b>Fragment:</b> <a href="<%= relativePath %>/<%= fragment.getId() %>/index.html"><%= fragment.getId() %></a></li>
<% } %>
</ul>
<% } %>
<% if (!plugin.getPrerequisites().isEmpty()) { %>
<ul>
<% for (PluginPrerequisite prerequisite : plugin.getPrerequisites()) { %>
<li><b>Prerequisite:</b> <a href="<%= relativePath %>/<%= prerequisite.getPluginId() %>/index.html"><%= prerequisite.getPluginId() %></a></li>
<% } %>
</ul>
<% } %>
<% if (!plugin.getExtensionPoints().isEmpty()) { %>
<ul>
<% for (ExtensionPoint extp : plugin.getExtensionPoints()) { %>
<li>
<b>Extension point:</b> <a href="<%= relativePath %>/<%= extp.getDeclaringPluginDescriptor().getId() %>/extp/<%= extp.getId() %>/index.html"><%= extp.getId() %></a>
<% if (!extp.getConnectedExtensions().isEmpty()) { %>
<ul>
<% for (Extension ext : extp.getConnectedExtensions()) { %>
<li><b>Connected extension:</b> <a href="<%= relativePath %>/<%= ext.getDeclaringPluginDescriptor().getId() %>/ext/<%= ext.getId() %>/index.html"><%= ext.getId() %></a></li>
<% } %>
</ul>
<% } %>
</li>
<% } %>
</ul>
<% } %>
<% if (!plugin.getExtensions().isEmpty()) { %>
<ul>
<% for (Extension ext : plugin.getExtensions()) { %>
<li><b>Extension:</b> <a href="<%= relativePath %>/<%= ext.getDeclaringPluginDescriptor().getId() %>/ext/<%= ext.getId() %>/index.html"><%= ext.getId() %></a></li>
<% } %>
</ul>
<% } %>
</li>
<% } %>
</ul>
<% printFooter(); %>
</body>
</html>
|