-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclassic.php
More file actions
59 lines (43 loc) · 1.79 KB
/
classic.php
File metadata and controls
59 lines (43 loc) · 1.79 KB
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
<?php
/**
* User: Hans-Gert Gräbe
* last update: 2022-07-30
*/
require_once 'layout.php';
// ------ the main info page
function classic() {
$out='<h2>WUMM Project – Classical TRIZ Tools</h2>
<p>In the WUMM database, information about TRIZ publications, the TRIZ Body of
Knowledge and also structured information from various sources on classical
TRIZ tools is compiled in the semantic web format RDF. In the publicly
accessible RDF store of the WUMM project, this information can be analysed in
more detail via its <a href="http://wumm.uni-leipzig.de:8891/sparql">SPARQL
endpoint</a>.</p>
<p>Here we compiled for the moment the following demonstrations:
<ul>
<li>A list of <a href="books.php">TRIZ Books</a>.</li>
<li>A translation to RDF of both the Russian (2007, 3 concept areas) and
English (2012, 7 concept areas) versions of the <a
href="https://www.aitriz.org/triz/triz-body-of-knowledge">TRIZ Body of
Knowledge</a>. Both versions are enriched with English, Russian and German
notations. The links to the literature point to the WUMM RDF database of TRIZ
References.
<ul>
<li><a href="tbk1-tree.php">English Version of 2012</a></li>
<li><a href="tbk2-tree.php">Russian Version of 2007</a></li>
</ul>
</li>
<li><a href="principles.php">40 Principles</a>.</li>
<li><a href="parameters.php">39 Parameters</a> used in the Matrix. Several <a
href="https://github.com/wumm-project/RDFData/tree/master/Matrix">Versions of
the Matrix</a> are available in JSON format.</li>
<li><a href="standards.php">76 Inventive Standards</a>.</li>
<li>Trends of Engineering Systems Evolution have yet to be added.</li>
<li><a href="flowdevpat.php">Flow Development Patterns</a> proposed by
A. Lyubomirsky (2006).</li>
</ul>
';
return '<div class="container">'.$out.'</div>';
}
echo showpage(classic());
?>