view examples/browser/web/index.html @ 663:bcc7a6ddb2c8

Better treatment of refine.hopsize Only adapt the query loop hopping if ADB_REFINE_HOP_SIZE is actually on the refine flags, rather than blithely taking the value of refine.hopsize. Significantly reduces the chances of inadvertently causing an infinite loop. Adjust the tests to remove the 23 now useless instances of "refine.hopsize = 1;" Closes trac ticket #16
author mas01cr
date Thu, 28 Jan 2010 10:23:42 +0000
parents 3e25f26b6a27
children
line wrap: on
line source
<html>
<head>

<link rel="stylesheet" href="http://ontologyonline.org/css/blueprint/screen.css" type="text/css" media="screen, projection"/>
<link rel="stylesheet" href="css/jOWL.css" type="text/css"/>
<link rel="stylesheet" href="css/data_table.css" type="text/css"/>
<link type="text/css" rel="stylesheet" href="css/jq/custom-theme/jquery-ui-1.7.custom.css"></link>


<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>      
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.0/jquery-ui.min.js"></script>
<script type="text/javascript" src="js/jquery.dataTables.js"></script>
<script type="text/javascript" src="js/jquery.loading.js"></script>
<script type="text/javascript" src="js/sparql.js"></script>
<script type="text/javascript" src="js/jOWL.js"></script>
<script type="text/javascript" src="js/jOWL_UI.js"></script>
<script type="text/javascript" src="js/browser.js"></script>
</head>
<body>

<div class="ui-widget">
	<div class="ui-widget-header">Search Options</div>
	<div class="ui-widget-content">
		<div align="center">
		<ul id="search_options">
			<li>Artist: <input type="text" id="artistsearch" /></li>
			<li>Track: <input type="text" id="tracksearch" /></li>
			<li><input type="button" id="search" value="Search" /></li>
		</ul>
		</div>
		<div align="center"><span id="spinner">Searching...</span></div>
	</div>
</div>

<div class="ui-widget">
<div class="ui-widget-header">Search Results</div>
<div class="ui-widget-content">
<div align="center">
<table class="display" id="results" width="50%">
    <thead>
        <tr>
            <th>Artist Name</th>
            <th>Track Name</th>
            <th>Track #</th>
            <th>Album Name</th>
        </tr>
    </thead>
    <tbody>
    </tbody>
</table>
</div>
</div>
</div>
<div style="clear:both" id="query">Current Query</div>


</body>
</html>