Citazioni/riferimenti, in progress

This commit is contained in:
cesare 2023-11-07 15:25:50 +01:00
parent 49839f338a
commit 4e4a24983f
1 changed files with 18 additions and 13 deletions

View File

@ -744,6 +744,23 @@ function resetFrasi(){
} }
//DA MODIFICARE: getComments può restituire più di un commento
function getComments(cid){
var id = cid.substr(9);
for (var pos in commentsArray){
var comments = commentsArray[pos]
if (comments.verso == id){
console.log(comments)
return ('<br>Annotazione: '+comments.annotazione + "<br> Frammento annotazione: "+comments.frammentoNota + "<br> Commentario: " + comments.commentario+"<br>"+
"<br> Testo fonte citazione: "+comments.TestoFonteCitazione+"<br> Luogo fonte citazione: "+comments.LuogoFonteCitazione+
"<br> <b>Autore citazione:</b> "+comments.AutoreCitazione+"<br> Fonte Citazione: "+comments.FonteCitazione+
"<br> Natura del riferimento: "+comments.NaturaRiferimento)
}
}
return null;
}
/*FINE GESTIONE CITAZIONI*/ /*FINE GESTIONE CITAZIONI*/
function getCantica(numeroCantica){ function getCantica(numeroCantica){
@ -1042,19 +1059,7 @@ function resetFrasi(){
spanComment.appendTo(commentArea); spanComment.appendTo(commentArea);
}) })
//DA MODIFICARE: getComments può restituire più di un commento
function getComments(cid){
var id = cid.substr(9);
for (var pos in commentsArray){
var comments = commentsArray[pos]
if (comments.verso == id){
console.log(comments)
return (comments.annotazione + comments.verso + " di" + comments.commentario+"<br>")
}
}
return null;
}
function createSpanPeriodiTag(separator, catgramm, pos, sentenceid, elementoverso, pnum) { function createSpanPeriodiTag(separator, catgramm, pos, sentenceid, elementoverso, pnum) {
var spanoccorrenza = $('<span />') var spanoccorrenza = $('<span />')