-
Notifications
You must be signed in to change notification settings - Fork 0
/
service-edit.xhtml
70 lines (70 loc) · 3.63 KB
/
service-edit.xhtml
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
<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="/callimachus/template.xsl"?>
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
xmlns:owl="http://www.w3.org/2002/07/owl#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:calli="http://callimachusproject.org/rdf/2009/framework#"
xmlns:foaf="http://xmlns.com/foaf/0.1/"
xmlns:skos="http://www.w3.org/2004/02/skos/core#"
xmlns:vcard="http://www.w3.org/2006/vcard/ns#"
xmlns:gr="http://purl.org/goodrelations/v1#"
xmlns:directory="http://dir.w3.org/rdf/2012/directory/">
<head>
<title resource="?this">{rdfs:label}</title>
</head>
<body resource="?this">
<div class="container">
<div class="page-header">
<h1 property="gr:description" />
</div>
<form resource="?this" typeof="gr:ProductOrServiceModel" method="POST" enctype="application/sparql-update">
<div class="row">
<div class="col-sm-6">
<div class="form-group">
<h4 for="label">Label</h4>
<input type="text" id="label" autofocus="autofocus" required="required" value="{rdfs:label}" class="form-control" />
</div>
<div class="form-group">
<h4 for="web-page">Web page</h4>
<input type="url" id="web-page" placeholder="Web page with more detail" value="{foaf:page}" class="form-control" />
</div>
<div class="form-group">
<div id="org" dropzone="link s:text/uri-list" ondrop="return calli.insertResource(event)">
<h4>Offered by</h4>
<div rel="gr:hasManufacturer" class="vbox controls">
<span about="?org" typeof="vcard:Organization" class="label label-warning">
<span property="vcard:organization-name" />
<span property="vcard:organization-unit" />
</span>
</div>
</div>
</div>
</div>
<div class="col-sm-6">
<div class="form-group">
<h4 for="comment" class="control-label">Comment</h4>
<textarea id="comment" class="auto-expand form-control">{rdfs:comment}</textarea>
</div>
<div class="form-group" dropzone="link s:text/uri-list" ondrop="return calli.insertResource(event)">
<h4>Depiction <a href="?create=/callimachus/Image" title="Upload" onclick="return calli.createResource(event)"><span class="glyphicon glyphicon-plus" /></a></h4>
<div rel="foaf:depiction">
<span resource="?depiction" typeof="foaf:Image" class="label label-warning">
<img src="{?depiction}" />
</span>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-12 form-group">
<button id="save" type="submit" class="btn btn-primary">Save</button>
<button id="cancel" type="button" onclick="location.replace('?view')" class="btn">Cancel</button>
<button id="delete" type="button" onclick="calli.deleteResource(event, '{gr:hasManufacturer}')" class="btn btn-danger">Delete</button>
</div>
</div>
</form>
</div>
</body>
</html>