IA-Logseq-Calendar/cal.js

175 lines
5.1 KiB
JavaScript
Raw Permalink Normal View History

2023-10-15 15:22:00 +00:00
var events = [
2023-10-18 15:09:31 +00:00
{ // 40
title: "Auffrischung Mathematik - Teil 1",
start: "2023-10-04T10:30:00",
end: "2023-10-04T12:00:00",
url: "https://ia.lu-dev.de/#/page/auffrischung%20mathematik%2F23-10-04",
classNames: ["complete-page"]
},
{
title: "Auffrischung Mathematik - Teil 2",
start: "2023-10-05T10:30:00",
end: "2023-10-05T12:00:00",
url: "https://ia.lu-dev.de/#/page/auffrischung%20mathematik%2F23-10-05",
2023-10-20 02:18:37 +00:00
classNames: ["complete-page"]
2023-10-18 15:09:31 +00:00
},
{
title: "Auffrischung Mathematik - Teil 3",
start: "2023-10-06T10:30:00",
end: "2023-10-06T12:00:00",
classNames: ["missing-page"]
},
{
title: "Mathematik für Informatiker 1",
start: "2023-10-09T13:00:00",
end: "2023-10-09T14:30:00",
classNames: ["missing-page"]
2023-10-15 15:22:00 +00:00
},
2023-10-18 15:09:31 +00:00
{ // 41
title: "Grundlagen und Diskrete Strukturen",
start: "2023-10-10T09:00:00",
end: "2023-10-10T10:30:00",
url: "https://ia.lu-dev.de/#/page/grundlagen%20und%20diskrete%20strukturen%2F23-10-10",
classNames: ["complete-page"]
},
{
title: "Übung: Programmierung und Algorithmen",
start: "2023-10-10T11:00:00",
end: "2023-10-10T12:30:00",
classNames: ["missing-page"]
},
{
title: "Übung: Rechnerorganisation",
start: "2023-10-10T13:00:00",
end: "2023-10-10T14:30:00",
classNames: ["cancelled-event"]
},
{
title: "Programmierung und Algorithmen",
start: "2023-10-11T11:00:00",
end: "2023-10-11T12:30:00",
classNames: ["missing-page"]
},
{
title: "Mathematik für Informatiker 1",
start: "2023-10-11T15:00:00",
end: "2023-10-11T16:30:00",
classNames: ["missing-page"]
},
{
title: "Übung: Grundlagen und Diskrete Strukturen",
start: "2023-10-11T17:15:00",
end: "2023-10-11T18:45:00",
classNames: ["missing-page"]
},
{
title: "Rechnerorganisation",
start: "2023-10-12T13:00:00",
end: "2023-10-12T14:30:00",
classNames: ["missing-page"]
},
{
title: "Programmierung und Algorithmen",
start: "2023-10-12T17:00:00",
end: "2023-10-12T18:30:00",
classNames: ["missing-page"]
},
{
title: "Grundlagen und Diskrete Strukturen",
start: "2023-10-13T09:00:00",
end: "2023-10-13T10:30:00",
url: "https://ia.lu-dev.de/#/page/grundlagen%20und%20diskrete%20strukturen%2F23-10-13",
classNames: ["complete-page"]
},
{
title: "Übung: Mathematik für Informatiker 1",
start: "2023-10-13T11:00:00",
end: "2023-10-13T12:30:00",
classNames: ["missing-page"]
2023-10-15 16:29:05 +00:00
},
2023-10-18 15:09:31 +00:00
{ // 42
title: "Mathematik für Informatiker 1",
start: "2023-10-16T13:00:00",
end: "2023-10-16T14:30:00",
classNames: ["missing-page"]
},
{
title: "Grundlagen und Diskrete Strukturen",
start: "2023-10-17T09:00:00",
end: "2023-10-17T10:30:00",
classNames: ["missing-page"]
},
{
title: "Übung: Programmierung und Algorithmen",
start: "2023-10-17T11:00:00",
end: "2023-10-17T12:30:00",
classNames: ["missing-page"]
},
{
title: "Übung: Rechnerorganisation",
start: "2023-10-17T13:00:00",
end: "2023-10-17T14:30:00",
classNames: ["missing-page"]
},
{
title: "Programmierung und Algorithmen",
start: "2023-10-18T11:00:00",
end: "2023-10-18T12:30:00",
classNames: ["missing-page"]
},
{
title: "Mathematik für Informatiker 1",
start: "2023-10-18T15:00:00",
end: "2023-10-18T16:30:00",
classNames: ["missing-page"]
},
{
title: "Übung: Grundlagen und Diskrete Strukturen",
start: "2023-10-18T17:15:00",
end: "2023-10-18T18:45:00",
classNames: ["missing-page"]
},
2023-10-20 02:18:37 +00:00
{
title: "Rechnerorganisation",
start: "2023-10-19T13:00:00",
end: "2023-10-19T14:30:00",
classNames: ["missing-page"]
},
{
title: "Grundlagen und Diskrete Strukturen",
start: "2023-10-20T09:00:00",
end: "2023-10-20T10:30:00",
classNames: ["missing-page"]
},
{
title: "Übung: Mathematik für Informatiker 1",
start: "2023-10-20T11:00:00",
end: "2023-10-20T12:30:00",
classNames: ["missing-page"]
}
2023-10-15 15:22:00 +00:00
];
document.addEventListener("DOMContentLoaded", function () {
var calendarEl = document.getElementById("calendar");
var calendar = new FullCalendar.Calendar(calendarEl, {
initialView: "timeGridWeek",
weekNumbers: true,
navLinks: true,
selectable: true,
locale: 'de',
firstDay: 1,
height: 'auto',
multiMonthMinWidth: '500',
headerToolbar: {
left: "prev,next today",
center: "title",
right: "multiMonthYear,dayGridMonth,timeGridWeek,timeGridDay",
},
events: events,
});
calendar.render();
});