browsing categorie grammaticali: aggiunto attributo

This commit is contained in:
cesare 2022-12-13 09:30:15 +01:00
parent fbc2471220
commit 0b9ce4073a
2 changed files with 99118 additions and 99322 deletions

View File

@ -2,6 +2,11 @@
*
*/
$(document).ready(function() {
const categoriegrammaticali={"v":"Verbo", "s":"Sostantivo", "a":"Aggettivo", "p":"Pronome", "r":"Articolo", "b":"Avverbio","e":"Preposizione",
"c":"Congiunzione", "i":"Interiezione", "n":"Onomastica", "f":"Citazione", "l":"Locuzione",
"r-e":"Articolo, Preposizione", "b-v":"Avverbio, Verbo", "p-v":"Pronome, Verbo",
"b-p-v":"Avverbio, Pronome, Verbo", "b-p":"Avverbio, Pronome",
"e-p":"Preposizione, Pronome", "a-s":"Aggettivo, Sostantivo"}
const cantobadgeclass = 'badge badge-outline-info badge-pill'
@ -283,7 +288,7 @@ $(document).ready(function() {
if (cantica == 'Purgatorio')
containerForme = formeseconda
for (cmpItem of containerForme) {
formaItem = cmpItem[0].split("_")
formaItem = cmpItem.split("_")
listaCanti = createDivCanti(listaCanti, cantica, 'Canto ' + formaItem[1])
var forma = new Object()
setVersi = createDivVersi(setVersi, cantica, formaItem[3], 'Canto ' + formaItem[1])
@ -292,6 +297,7 @@ $(document).ready(function() {
forma.canto = 'Canto ' + formaItem[1];
forma.pos = formaItem[2];
forma.form = formaItem[0];
forma.catgramm = formaItem[4];
forma.cantica = cantica;
createSpanForme(forma)
}
@ -303,6 +309,7 @@ $(document).ready(function() {
var spanoccorrenza = $('<span />')
var pos = parseInt(element.pos)
spanoccorrenza.attr('id', element.cantica + "_" + element.canto.replace(" ", "_") + "_" + element.numverso + "_" + pos)
spanoccorrenza.attr('cg', element.catgramm)
if (listarisultati.length > 0 && listarisultati.includes(spanoccorrenza.attr('id')))
spanoccorrenza.attr('class', "font-weight-bold mark ")
spanoccorrenza.append(element.form.replaceAll("%20", " "))

198431
js/partext.js

File diff suppressed because it is too large Load Diff