added: parameter to display recent changes only

This commit is contained in:
quenousimporte 2024-01-28 18:29:40 +01:00
parent fc1b357bf3
commit aa967da857
1 changed files with 3 additions and 1 deletions

View File

@ -100,6 +100,8 @@ function showresult()
recent = 7;
}
var recentonly = params.get("recentonly");
var html = "<h1>Evénements à venir</h1>";
html += `<h3>${formatdate(new Date)}</h3>`;
html += `<div>En gras: modifié les ${recent} derniers jours</div>`;
@ -117,7 +119,7 @@ function showresult()
var group = {};
o.VEVENTS
.filter(e => e.DTSTART >= (new Date))
.filter(e => e.DTSTART >= (new Date) && (!recentonly || e.DTSTAMP >= lastmodified))
.sort( (a,b) => a.DTSTART - b.DTSTART)
.forEach(e => {
var formatteddate = formatdate(e.DTSTART);