In Category on 12 Dec 2024
CKAN Patch Releases 2.11.1 and 2.10.6 Are Here
The latest patch releases for CKAN, packed with enhancements, bug fixes, and updates to improve your platform’s stability and functionality.
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" dir="ltr"> <head> <title>API Examples</title> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"> </script> </head> <body> <h1>Dynamic Data Table via a Proxy</h1> <div id="result"></div> <script type="text/javascript"> $.ajax({ url: 'http://1.latest.jsonpdataproxy.appspot.com/', type: 'GET', data: { 'url': 'http://research.dwp.gov.uk/asd/asd4/r1_values.xls', 'sheet': '1', }, success: function(data){ if (data['error'] !== undefined){ alert(data.error.title); } else { var content = '<table>'; for (var i=0; i<data.response.length; i++) { content += '<tr>'; for (var j=0; j<data.response[i].length; j++) { content += '<td>'+data.response[i][j]+'</td>'; } content += '</tr>'; } content += '</table>' $('#result').html(content); } }, error: function() { alert('Failed to get spreadsheet data.') }, dataType: 'jsonp', jsonpCallback: 'callback' }); </script> </body> </html>If you download this example, save it as simple.html and open it in a browser you'll see the data from the Excel file! Next step for us: integrate this into CKAN's package page to begin to be able to provide data previews!
The latest patch releases for CKAN, packed with enhancements, bug fixes, and updates to improve your platform’s stability and functionality.
A review of the recent developments in CKAN's DCAT support, and how you can get involved