aggiunti commenti, modifica gestione rapp. commento/commentatore
This commit is contained in:
parent
4d8a028671
commit
7ffcdd7924
|
@ -983,44 +983,44 @@ function resetFrasi(){
|
|||
}
|
||||
|
||||
function createModuleCommentatore(collapse, commento, num, id, pos){
|
||||
let jsonCommento=JSON.parse(commento.replaceAll("'", '"').replaceAll("+", '"'));
|
||||
var urlCommento = jsonCommento.Commento;
|
||||
|
||||
var esitoCommento = jsonCommento.Rapporto;
|
||||
|
||||
var autoreCommento = jsonCommento.Autore
|
||||
//var commentoCommentatore = commento.split(',');
|
||||
|
||||
let tmpcomm='['+commento+']'
|
||||
let jsonCommento=JSON.parse(tmpcomm.replaceAll("'", '"').replaceAll("+", '"'));
|
||||
var minLength = ($('#displaynote').width() / $('#Test').width() * 2 * 32);
|
||||
var divContent = $('<div class="d-flex align-content-start flex-wrap text-muted">');
|
||||
var divTesto = $('<div class="pl-0 pr-3 py-1">')
|
||||
var nota;
|
||||
/*
|
||||
var urlCommento = commentoCommentatore[0];
|
||||
var position = urlCommento.indexOf("https");
|
||||
urlCommento = urlCommento.substring(position)
|
||||
urlCommento = urlCommento.replaceAll("'", "");
|
||||
var esitoCommento = commentoCommentatore[3];
|
||||
esitoCommento = esitoCommento.replace("'Rapporto': ", "")
|
||||
esitoCommento = esitoCommento.replaceAll("'", "");
|
||||
esitoCommento = esitoCommento.replaceAll('}', "");
|
||||
var autoreCommento = commentoCommentatore[1]+' '+commentoCommentatore[2];
|
||||
autoreCommento = autoreCommento.replace(" 'Autore':", "")
|
||||
autoreCommento = autoreCommento.replaceAll("'", "");
|
||||
*/
|
||||
if (autoreCommento == "") {
|
||||
autoreCommento = "Commento"
|
||||
}
|
||||
if (esitoCommento == "") {
|
||||
esitoCommento = "Rapporto nullo"
|
||||
}
|
||||
if (urlCommento == "") {
|
||||
nota = '<b>Rapporto commento/commentatore: </b>'+esitoCommento+' Commento nullo, '+'</b><br>';
|
||||
} else {
|
||||
nota = '<b>Rapporto commento/commentatore: </b><i>'+esitoCommento +' <a href="'+urlCommento+'"target="_blank">' + autoreCommento+ '</i></a> ' + '</b><br>';
|
||||
var nota='';
|
||||
var lenmod=0
|
||||
for (el in jsonCommento){
|
||||
var urlCommento = jsonCommento[el].Commento;
|
||||
|
||||
var esitoCommento = jsonCommento[el].Rapporto;
|
||||
|
||||
var autoreCommento = jsonCommento[el].Autore
|
||||
if (autoreCommento == "") {
|
||||
autoreCommento = "Commento"
|
||||
}
|
||||
if (esitoCommento == "") {
|
||||
esitoCommento = "Rapporto nullo"
|
||||
}
|
||||
if (nota.length>0){
|
||||
nota=nota+' - '
|
||||
}
|
||||
if (urlCommento == "") {
|
||||
//nota = '<b>Rapporto commento/commentatore: </b>'+esitoCommento+' Commento nullo, '+'</b><br>';
|
||||
nota = nota+'<i>'+esitoCommento+' Commento nullo'+'</i>'//+'<br>';
|
||||
} else {
|
||||
//nota = '<b>Rapporto commento/commentatore: </b><i>'+esitoCommento +' <a href="'+urlCommento+'"target="_blank">' + autoreCommento+ '</i></a> ' + '</b><br>';
|
||||
nota = nota+'<i>'+esitoCommento +' <a href="'+urlCommento+'"target="_blank">' + autoreCommento+ '</i></a>' //+ '</b><br>';
|
||||
}
|
||||
lenmod=lenmod+esitoCommento.length + autoreCommento.length
|
||||
//divTesto.append(nota);
|
||||
|
||||
}
|
||||
nota='<b>Rapporto commento/commentatore:</b> '+nota
|
||||
divTesto.append(nota);
|
||||
divContent.append(divTesto);
|
||||
if ((esitoCommento.length + autoreCommento.length + 32) > minLength) {
|
||||
if (lenmod+32 > 1000){//minLength) {
|
||||
var divModule = $('<div class="module pb-0">');
|
||||
var divNote = $('<div class="collapse" id="collapse'+num+'Note'+id+ '_' + pos +'" aria-expanded="false">')
|
||||
divModule.append('<a class="read-more collapsed" data-toggle="collapse" href="#collapse'+num+'Note'+id+ '_' + pos +'" role="button"></a>')
|
||||
|
|
4240
js/citazionijson.js
4240
js/citazionijson.js
File diff suppressed because one or more lines are too long
|
@ -129,7 +129,6 @@ WHERE {
|
|||
###condizioni sintattiche end
|
||||
}`
|
||||
|
||||
// ?cl syntit:hasClauseType syntit:Dichiarativa.
|
||||
|
||||
ontoSparqlQuerySynt = `
|
||||
PREFIX ecrm: <http://erlangen-crm.org/current/>
|
||||
|
@ -368,7 +367,7 @@ function parseJsonClause(op, tokens, nowhere) {
|
|||
}
|
||||
|
||||
}
|
||||
|
||||
//MULTIPLE CONDITIONS
|
||||
function buildSPQuery(guiquery) {
|
||||
theguiQ = '';
|
||||
theguiQ = guiquery;
|
||||
|
|
Loading…
Reference in New Issue