Compare commits
No commits in common. "6a4e578366642ffcb73c8007ae87bf1b7b0d175a" and "433f1972b20165005437cdcc1197b992c125205d" have entirely different histories.
6a4e578366
...
433f1972b2
4
ics.php
4
ics.php
|
@ -115,8 +115,6 @@ 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>`;
|
||||
|
@ -134,7 +132,7 @@ function showresult()
|
|||
var group = {};
|
||||
|
||||
o.VEVENTS
|
||||
.filter(e => e.DTSTART >= (new Date) && (!recentonly || e.DTSTAMP >= lastmodified))
|
||||
.filter(e => e.DTSTART >= (new Date))
|
||||
.sort( (a,b) => a.DTSTART - b.DTSTART)
|
||||
.forEach(e => {
|
||||
var formatteddate = formatdate(e.DTSTART);
|
||||
|
|
Loading…
Reference in New Issue