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 71 72
|
<%
// Java Plug-in Framework (JPF)
// Copyright (C) 2004 - 2007 Dmitry Olshansky
// $Id: todo.jxp,v 1.3 2007/03/04 13:53:41 ddimon Exp $
// Updated by Michael Dawson 26/01/2006
%>
<%
include("/functions.ijxp");
printHeader("TODO");
printMenu("todo");
%>
<div class="content">
<h1>JPF Project TODO List</h1>
<p>Although the current version of JPF is of production quality, fully functional and very stable there is always what to do. The follows is a list of ongoing or planned tasks:</p>
<table border="1" cellspacing="0" cellpadding="5">
<tr>
<th valign="top">Task</th>
<th valign="top">Priority</th>
</tr>
<tr>
<td valign="top">JPF-Tools library improvements</td>
<td valign="top">MEDIUM</td>
</tr>
<tr>
<td valign="top">Documentation improvements (native English speakers needed)</td>
<td valign="top">MEDIUM</td>
</tr>
</table>
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
</div>
<%
printFooter();
%>
|