Project for the Hybrid Publishing thesis award of 2018.
By Julie Boschat Thorez and Cristina Cochior.
https://www.wdka.nl/work/sic-scripture
http://51.255.169.99:8080/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
144 lines
6.1 KiB
144 lines
6.1 KiB
4 years ago
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
|
||
|
<meta charset="utf-8">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||
|
<title>Library</title>
|
||
|
<link rel="stylesheet" href="{{ url_for('static', filename='css/main.css') }}">
|
||
|
|
||
|
<!--TEST-->
|
||
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.3/jquery.min.js"></script>
|
||
|
<script type="text/javascript">
|
||
|
$(document).ready(function() {
|
||
|
$(".librarian-names").click(function(event){
|
||
|
var thename = $(this).text();
|
||
|
$(".name-elements").empty();
|
||
|
|
||
|
$.getJSON('{{ url_for('static', filename='js/mergedjson.json') }}', function(test) {
|
||
|
// iterate in test[i].librarian to find where the name is present to get the test[i].debris that goes with it
|
||
|
var alldocs = [];
|
||
|
for (var i = 0; i < test.length; ++i) {
|
||
|
var item = test[i];
|
||
|
if(item.librarian.includes(thename)){
|
||
|
ledocument = item.debrispath;
|
||
|
lelibrarian = item.librarian;
|
||
|
//put ledocument into li and nest inside ul
|
||
|
var extension = ledocument.replace(/^.*\./, '');
|
||
|
console.log(ledocument);
|
||
|
if ((extension=="jpg") || (extension=="jpeg") || (extension=="png") || (extension=="gif") || (extension=="tiff")) {
|
||
|
$(".name-elements").append("<li><img class='listed-images' src='/files/"+ledocument+"'>Librarians: "+lelibrarian+"</li>");
|
||
|
}
|
||
|
else if (extension=="pdf") {
|
||
|
$(".name-elements").append("<li><embed class='listed-pdf' src='files/"+ledocument+"'/>Librarians: "+lelibrarian+"</li>");
|
||
|
}
|
||
|
else if (extension=="epub") {
|
||
|
$(".name-elements").append("<li>"+ledocument+lelibrarian+"</li>");
|
||
|
}
|
||
|
else if ((extension=="mp3") || (extension=="wav") || (extension=="m4a")) {
|
||
|
$(".name-elements").append("<li><audio class='listed-audio' controls><source src='files/"+ledocument+"'></audio>Librarians: "+lelibrarian+"</li>");
|
||
|
}
|
||
|
else if ((extension=="mov") || (extension=="mp4")) {
|
||
|
$(".name-elements").append("<li><video class='listed-videos' controls><source src='files/"+ledocument+"'></video>Librarians: "+lelibrarian+"</li>");
|
||
|
}
|
||
|
else if ((extension=="odt") || (extension=="docx")) {
|
||
|
// something for odt and docx
|
||
|
$(".name-elements").append("<li>"+ledocument+lelibrarian+"</li>");
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
});
|
||
|
});
|
||
|
|
||
|
$(".file-names").click(function(event){
|
||
|
var thefile = $(this).text();
|
||
|
$.getJSON('{{ url_for('static', filename='js/mergedjson.json') }}', function(test) {
|
||
|
$(".name-elements").empty();
|
||
|
// iterate in test[i].librarian to find where the name is present
|
||
|
//to get the test[i].debris that goes with it
|
||
|
var allpeeps = [];
|
||
|
var category = null;
|
||
|
for (var i = 0; i < test.length; ++i) {
|
||
|
var item = test[i];
|
||
|
if(item.debrisname.includes(thefile)){
|
||
|
ledocument = item.debrispath;
|
||
|
// allpeeps.push(ledocument);
|
||
|
var extension = ledocument.replace(/^.*\./, '');
|
||
|
console.log(ledocument);
|
||
|
if ((extension=="jpg") || (extension=="jpeg") || (extension=="png") || (extension=="gif") || (extension=="tiff")) {
|
||
|
$(".name-elements").append("<li><img class='listed-images' src='/files/"+ledocument+"'></li>");
|
||
|
}
|
||
|
else if (extension=="pdf") {
|
||
|
$(".name-elements").append("<li><object class='listed-pdf' data='files/"+ledocument+"'/></li>");
|
||
|
}
|
||
|
else if (extension=="epub") {
|
||
|
$(".name-elements").append("<li>"+ledocument+"</li>");
|
||
|
}
|
||
|
else if ((extension=="mp3") || (extension=="wav") || (extension=="m4a")) {
|
||
|
$(".name-elements").append("<li><audio class='listed-audio' controls><source src='files/"+ledocument+"'></audio></li>");
|
||
|
}
|
||
|
else if ((extension=="mov") || (extension=="mp4")) {
|
||
|
$(".name-elements").append("<li><video class='listed-videos' controls><source src='files/"+ledocument+"'></video></li>");
|
||
|
}
|
||
|
else if ((extension=="odt") || (extension=="docx")) {
|
||
|
// something for odt and docx
|
||
|
$(".name-elements").append("<li>"+ledocument+"</li>");
|
||
|
};
|
||
|
};
|
||
|
category = item.method;
|
||
|
};
|
||
|
|
||
|
});
|
||
|
});
|
||
|
|
||
|
});
|
||
|
</script>
|
||
|
|
||
|
</head>
|
||
|
<body>
|
||
|
<div class="nav-top">
|
||
|
<ul>
|
||
|
<li><a class="nav-button" style="text-align: left;" href="bought">BOUGHT</a></li>
|
||
|
<li><a class="nav-button" style="text-align: center;" href="stolen">STOLEN</a>
|
||
|
<li><a class="nav-button" style="text-align: right;" href="repurposed">REPURPOSED</a>
|
||
|
</ul>
|
||
|
</div>
|
||
|
<div class="main">
|
||
|
<div class="main-column-left">
|
||
|
|
||
|
<div id="listofpeople">
|
||
|
{% for librarian in librarians %}
|
||
|
<!-- <a href="#" class="librarian-names">{{ librarian }}</a> -->
|
||
|
<span class="librarian-names">{{ librarian }}</span>
|
||
|
{% endfor %}
|
||
|
</div>
|
||
|
<br>
|
||
|
|
||
|
<div class="file-names-container">
|
||
|
{% for file in files_without_folders %}
|
||
|
<span class="file-names">{{file}}</span><br>
|
||
|
{% endfor %}
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
<div class="main-column-right">
|
||
|
<a href="{{ url_for('static', filename='realjson.json') }}">test link</a>
|
||
|
<ul class="name-elements">
|
||
|
<p>hello world</p>
|
||
|
</ul>
|
||
|
|
||
|
{% block content %}
|
||
|
{% endblock content %}
|
||
|
</div>
|
||
|
</div>
|
||
|
<div class="nav-bottom">
|
||
|
<ul>
|
||
|
<li><a class="nav-button" style="text-align: left;" href="copied">COPIED</a></li>
|
||
|
<li><a class="nav-button" style="text-align: center;" href="found">FOUND</a></li>
|
||
|
<li><a class="nav-button" style="text-align: right;" href="gift">GIFT</a></li>
|
||
|
</ul>
|
||
|
</div>
|
||
|
|
||
|
</body>
|
||
|
</html>
|