Mercurial > hg > audiodb
view examples/browser/web/index.html @ 719:e3f1cf653c30
wooo! direct insert works! at least for the rather limited cases I've tests.
Bad news is that I seem to have found a rather nasty bug in the query code I wrote back in september.
(segfaults around line 471 if the query returns no results...)
author | map01bf |
---|---|
date | Fri, 25 Jun 2010 09:08:56 +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>