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 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114
|
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE xsl:stylesheet [
<!ENTITY xsd "http://www.w3.org/2001/XMLSchema#" >
]>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:sparql="http://www.w3.org/2005/sparql-results#"
xmlns="http://www.w3.org/1999/xhtml">
<xsl:include href="../locale/messages.xsl" />
<xsl:variable name="title">
<xsl:value-of select="$repository-create.title" />
</xsl:variable>
<xsl:include href="template.xsl" />
<xsl:template match="sparql:sparql">
<form action="create">
<table class="dataentry">
<tbody>
<tr>
<th>
<xsl:value-of select="$repository-type.label" />
</th>
<td>
<select id="type" name="type">
<option value="memory">
In Memory Store
</option>
<option value="memory-rdfs">
In Memory Store RDF Schema
</option>
<option value="memory-rdfs-dt">
In Memory Store RDF Schema and
Direct Type
Hierarchy
</option>
<option value="memory-spin">
In Memory Java Store with basic SPIN support
</option>
<option value="native-spin-rdfs">
In Memory Store with RDFS+SPIN support
</option>
<option value="memory-customrule">
In Memory Store Custom Graph Query
Inference
</option>
<option value="native">
Native Java Store
</option>
<option value="native-rdfs">
Native Java Store RDF Schema
</option>
<option value="native-rdfs-dt">
Native Java Store RDF Schema and
Direct Type
Hierarchy
</option>
<option value="native-customrule">
Native Java Store Custom
Graph Query
Inference
</option>
<option value="native-spin">
Native Java Store with basic SPIN support
</option>
<option value="native-spin-rdfs">
Native Java Store with RDFS+SPIN support
</option>
<option value="remote">
Remote RDF Store
</option>
<option value="sparql">
SPARQL endpoint proxy
</option>
<option value="federate">Federation Store</option>
<option value="virtuoso">Virtuoso RDF Store</option>
</select>
</td>
<td></td>
</tr>
<tr>
<th>
<xsl:value-of select="$repository-id.label" />
</th>
<td>
<input type="text" id="id" name="id" size="16" />
</td>
<td></td>
</tr>
<tr>
<th>
<xsl:value-of select="$repository-title.label" />
</th>
<td>
<input type="text" id="title" name="title" size="48" />
</td>
<td></td>
</tr>
<tr>
<td></td>
<td>
<input type="button" value="{$cancel.label}" style="float:right"
data-href="repositories"
onclick="document.location.href=this.getAttribute('data-href')" />
<input type="submit" name="next" value="{$next.label}" />
</td>
</tr>
</tbody>
</table>
</form>
</xsl:template>
</xsl:stylesheet>
|