|
Revision 395, 1.3 kB
(checked in by arjanmol, 4 years ago)
|
*** empty log message ***
|
- Property svn:eol-style set to
native
- Property svn:keywords set to
Author Date Id Revision
|
| Line | |
|---|
| 1 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" |
|---|
| 2 |
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-Strict.dtd"> |
|---|
| 3 |
<html> |
|---|
| 4 |
<head> |
|---|
| 5 |
|
|---|
| 6 |
<?php |
|---|
| 7 |
include "func.php"; |
|---|
| 8 |
|
|---|
| 9 |
$documents = array ( |
|---|
| 10 |
"gaphor" => "An overview of Gaphors design", |
|---|
| 11 |
"uml-intro" => "A short introduction of UML", |
|---|
| 12 |
"plan" => "Some sort of plan", |
|---|
| 13 |
"metamodel" => "A description of the data model", |
|---|
| 14 |
"diagram-model" => "A description of diagrams" |
|---|
| 15 |
); |
|---|
| 16 |
|
|---|
| 17 |
?> |
|---|
| 18 |
<?php head(); ?> |
|---|
| 19 |
|
|---|
| 20 |
</head> |
|---|
| 21 |
<body> |
|---|
| 22 |
|
|---|
| 23 |
<?php nav(); ?> |
|---|
| 24 |
|
|---|
| 25 |
<div id="main"> |
|---|
| 26 |
<?php if ($doc == "") { ?> |
|---|
| 27 |
<h1>Documentation</h1> |
|---|
| 28 |
<p>There is not very much documentation at this moment. Although most |
|---|
| 29 |
documentation is quite old, it is good enough to get you started with |
|---|
| 30 |
gaphor.</p> |
|---|
| 31 |
|
|---|
| 32 |
<ul> |
|---|
| 33 |
<?php |
|---|
| 34 |
while( $doc=each($documents) ) { |
|---|
| 35 |
$f = "$doc[0]"; |
|---|
| 36 |
$t = "$doc[1]"; |
|---|
| 37 |
|
|---|
| 38 |
#$d = date("F dS Y", $m[10]); |
|---|
| 39 |
print "<li><a href=\"doc/doc.php?doc=$f\">$t</a></li>"; |
|---|
| 40 |
} |
|---|
| 41 |
?> |
|---|
| 42 |
</ul> |
|---|
| 43 |
|
|---|
| 44 |
<p>A start for the <a href="manual/index.html">Gaphor Manual</a>.</p> |
|---|
| 45 |
|
|---|
| 46 |
<p>External documentation (not on this site):</p> |
|---|
| 47 |
<ul> |
|---|
| 48 |
<li><a href="http://www.omg.org/technology/documents/modeling_spec_catalog.htm#UML">Unified Modeling Language specifications, version 2.0</a></li> |
|---|
| 49 |
</ul> |
|---|
| 50 |
<?php } else { |
|---|
| 51 |
include "doc/$doc.html"; |
|---|
| 52 |
} ?> |
|---|
| 53 |
</div> |
|---|
| 54 |
</body> |
|---|
| 55 |
</html> |
|---|
| 56 |
|
|---|
| 57 |
|
|---|