Compare commits
2 Commits
433f1972b2
...
6a4e578366
Author | SHA1 | Date |
---|---|---|
quenousimporte | 6a4e578366 | |
quenousimporte | aa967da857 |
4
ics.php
4
ics.php
|
@ -115,6 +115,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>`;
|
||||
|
@ -132,7 +134,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);
|
||||
|
|
Loading…
Reference in New Issue