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
|
<%
// 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>All Plug-in Fragments</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>All Plug-in Fragments List</h1>
<ul>
<% for (PluginFragment fragment : allPluginFragments) { %>
<li>
<a href="<%= relativePath %>/<%= fragment.getId() %>/index.html"><%= fragment.getId() %> <%= fragment.getVersion() %></a>
(contributes to <a href="<%= relativePath %>/<%= fragment.getPluginId() %>/index.html"><%= fragment.getPluginId() %></a>)
</li>
<% } %>
</ul>
<% printFooter(); %>
</body>
</html>
|