Mercurial > hg > audiodb
view examples/browser/web/index.html @ 655:2a97f3f9a6ac
Rework the audioDB binary / gengetopt command-line parsing glue
For cygwin 1.7 / gengetopt 2.22.3, not even the minor constness in the
cmdline_parser() call passes muster. Just cast to (char **) and const
be damned.
author | mas01cr |
---|---|
date | Tue, 27 Oct 2009 17:48:55 +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>