Sandbox
From Semantic Portal Wiki
nothing, test, again mdsa:test
Sandbox
SMW BUG1
here is a bug in SMW query, duplicated entry show-up when sorting on tr_id
- Toward establishing trust in adaptive agents (Tr id KSL-07-04, TW-2008-14)
- Trustable task processing systems (Tr id TW-2008-12, KSL-2008-01)
- Explaining semantic web applications (Tr id TW-2008-28, KSL-2008-02)
- Trustable task processing systems (Tr id TW-2008-12, KSL-2008-01)
- Toward establishing trust in adaptive agents (Tr id KSL-07-04, TW-2008-14)
- Explaining semantic web applications (Tr id TW-2008-28, KSL-2008-02)
SMW BUG2
transitive redirection
- test1 which is redirected to test11
- test2 which is redirected to test21, which the redirected to test22
- however, semantic query only return one: Relation Test11
<!--
copyright (c) 2009 Google inc.
You are free to copy and use this sample.
License can be found here: http://code.google.com/apis/ajaxsearch/faq/#license
-->
<!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>
<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
<title>
Google Visualization API Sample
</title>
<script type="text/javascript" src="http://www.google.com/jsapi"></script>
<script type="text/javascript">
google.load('visualization', '1', {packages: ['annotatedtimeline']});
</script>
<script type="text/javascript">
var visualization;
function drawVisualization() {
// To see the data that this visualization uses, browse to
// http://spreadsheets.google.com/ccc?key=pCQbetd-CptGXxxQIG7VFIQ
var query = new google.visualization.Query(
'http://data-gov.tw.rpi.edu/demo/linked/castnet/test-data14.js');
// Send the query with a callback function.
query.send(handleQueryResponse);
}
function handleQueryResponse(response) {
if (response.isError()) {
alert('Error in query: ' + response.getMessage() + ' ' + response.getDetailedMessage());
return;
}
var data = response.getDataTable();
visualization = new google.visualization.AnnotatedTimeLine(document.getElementById('visualization'));
visualization.draw(data);
}
google.setOnLoadCallback(drawVisualization);
</script>
</head>
<body style="font-family: Arial;border: 0 none;">
<div id="visualization" style="height: 400px; width: 400px;"></div>
</body>
</html>

