summaryrefslogtreecommitdiff
path: root/development/documents/opie-todo.html
blob: 839fe39f4d40e60c5d7b1f73b18644ee0f1b5ff2 (plain)
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
<!--
<?php
$page = false;
if (file_exists('../page.inc')) {
     include "../page.inc";
     page("verFeature3_2");
     $page = true;
}
?>
-->

<?php

$version = "1.0";

require_once "opie-todo.inc";

parse("opie-todo.xml");
?>

<table width="100%" border="0">
  <tr><td bgcolor="red"><div align="center">TODO</div></td><td bgcolor="#ffeeee">

<?php echo printHtml($version,'todo') ?>

  </td></tr>

  <tr><td bgcolor="yellow"><div align="center">In Progress</div></td><td bgcolor="#ffffee">

<?php echo printHtml($version,'inprogress') ?>

  </td></tr>

<tr><td bgcolor="green"><div align="center">Finished</div></td><td bgcolor="#eeffee">

<?php printHtml($version,'done') ?>

</td></tr>
</table>

<?php
if ($page) {
    footer();
}

?>