You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
92 lines
1.8 KiB
92 lines
1.8 KiB
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
<head>
|
|
<title>YaCy '#[clientname]#': Demo-Servlet</title>
|
|
|
|
<!-- This element contains the jQuery libraries and interaction routines -->
|
|
#%env/templates/metas.template%#
|
|
|
|
</head>
|
|
|
|
|
|
<body id="index">
|
|
|
|
<p>
|
|
JavaScript example: Permanent storage of value, assigned to logged in user account
|
|
</p>
|
|
<br/>
|
|
|
|
|
|
<p>
|
|
|
|
<input id="SliderSingle" type="slider" name="price" value="0" />
|
|
|
|
<script type="text/javascript" charset="utf-8">
|
|
|
|
var oldvalue = loadvalue_t ('http://virtual.x/document/uniquenameDemo123', 'http://virtual.x/hasvalue');
|
|
|
|
if (oldvalue == "") {
|
|
oldvalue = "0";
|
|
}
|
|
|
|
document.getElementById('SliderSingle').value = oldvalue;
|
|
|
|
$("#SliderSingle").slider(
|
|
{
|
|
from: 0,
|
|
to: 100,
|
|
step: 2.5,
|
|
round: 1,
|
|
format: { format: '##.0', locale: 'de'},
|
|
dimension: ' points',
|
|
skin: 'round',
|
|
onstatechange: function(value) {
|
|
|
|
storevalue_t ('http://virtual.x/document/uniquenameDemo123', 'http://virtual.x/hasvalue', value);
|
|
|
|
}
|
|
}
|
|
);
|
|
</script>
|
|
|
|
|
|
</p>
|
|
|
|
<br/>
|
|
<br/>
|
|
|
|
<p>
|
|
JavaScript example: Load value from global RDF store
|
|
</p>
|
|
<br/>
|
|
|
|
<br/>
|
|
|
|
<p>
|
|
|
|
<input id="output" type="text" name="output" value="--"/>
|
|
<input type="submit" name="sub" onclick="storevalueglobal ('http://virtual.x/global/entry1', 'http://virtual.x/global/hasvalue', document.getElementById('output').value)"/>
|
|
|
|
l
|
|
|
|
<script type="text/javascript" charset="utf-8">
|
|
|
|
|
|
var oldvalue = loadvalueglobal ('http://virtual.x/global/entry1', 'http://virtual.x/global/hasvalue');
|
|
|
|
document.getElementById('output').value = oldvalue;
|
|
|
|
|
|
|
|
</script>
|
|
|
|
</p>
|
|
|
|
|
|
#%env/templates/footer.template%#
|
|
|
|
</body>
|
|
|
|
|
|
</html>
|