-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_file.php
71 lines (65 loc) · 1.82 KB
/
test_file.php
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
<html>
<head>
<title>RAP Test</title>
</head>
<body>
<h1>Test a File</h1>
<form action="test_file.php" method="get">
<p>
URL di un File:
<input type="text" name="file" size="100" maxlength="255" value="xml/" required="required" autofocus="autofocus" autocomplete="on" />
</p>
<p>
Scegli una Sintassi:
<select name="syntax">
<option value="">Automatico</option>
<option value="RDF">RDF</option>
<option value="N3">Notation3</option>
<option value="GRDDL">GRDDL</option>
<option value="RSS">RSS</option>
<option value="RDF">RDF</option>
<option value="RDF">RDF</option>
</select>
</p>
<p>
Scegli un Ragionatore:
<select name="reasoner">
<option value="InfModelF">InfModelF</option>
<option value="InfModelB">InfModelB</option>
</select>
</p>
<p>
<input type="submit" value="PARSE" />
</p>
<p>
<strong>Note:</strong>
</p>
<ul>
<li>
I due Ragionatori conoscono le stesse regole (che sono definite fuori da essi).
L'unica differenza dovrebbe essere nelle prestazioni.
A seconda del Ragionatore scelto potresti vedere le Triple in ordine diverso, ma il numero
delle Triple non dovrebbe cambiare.
</li>
<li>
GRDDL è per i file XHTML.<br/>
Se non scegli una sintassi cerca di capirla dall'estensione del file,
e se non la capisce usa RDF.<br/>
Le regole semantiche che conosce verranno applicate a prescindere dalla sintassi.
</li>
</ul>
</form>
<?php
if (empty($_GET['file']) === FALSE) {
require_once 'inc.php';
$syntax = empty($_GET['syntax']) === TRUE ? $_GET['syntax'] : NULL;
$infModel = $_GET['reasoner'] === 'InfModelF' ?
ModelFactory::getInfModelF('onto://InfModelF/', TRUE) :
ModelFactory::getInfModelB('onto://InfModelB/', TRUE);
$infModel->startProfile();
$infModel->load($_GET['file'], $syntax);
require_once 'end.php';
}
?>
</body>
</html>