10
0
mirror of https://github.com/LCPQ/QUESTDB_website.git synced 2024-07-23 19:27:42 +02:00
QUESTDB_website/index.html

34 lines
1.0 KiB
HTML
Raw Normal View History

2019-08-21 20:04:29 +02:00
<!DOCTYPE html>
<html>
2019-08-22 10:34:07 +02:00
<head>
<script src="scripts/data.js" type="text/javascript"></script>
2019-08-21 20:04:29 +02:00
<script>
2019-08-22 10:34:07 +02:00
function update_file(filename) {
lnk_doi=document.getElementById('lnk_doi');
file=filename+'.json'
data=getDataFromFile(file)
lnk_doi.setAttribute('href',getDoiUrl(data));
lnk_file=document.getElementById('lnk_file');
lnk_file.setAttribute('href',getFullDataPath(file));
}
2019-08-21 20:04:29 +02:00
</script>
<script>
2019-08-22 10:34:07 +02:00
window.onload=function() {
var inp = document.getElementById("inp_filename");
inp.addEventListener("keydown", function (e) {
if (e.keyCode === 13) { //checks whether the pressed key is "Enter"
update_file(inp.value);
}
}
);
2019-08-21 20:04:29 +02:00
}
</script>
2019-08-22 10:34:07 +02:00
</head>
<body>
<label>Write a data file name without extension<br/>
<input type="text" id='inp_filename'></input>
</label><br/>
<a target="_blank" id='lnk_doi'>Go to paper</a>
<a target="_blank" id='lnk_file'>Go to file</a>
</body>
2019-08-21 20:04:29 +02:00
</html>