fullcalendar/tests/gcal.html

118 lines
2.4 KiB
HTML
Raw Normal View History

2009-09-17 08:30:10 +02:00
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<script type='text/javascript' src='loader.js'></script>
<script type='text/javascript'>
var date = new Date();
var d = date.getDate();
var m = date.getMonth();
var y = date.getFullYear();
2009-09-17 08:30:10 +02:00
$(document).ready(function() {
$('#calendar').fullCalendar({
header: {
left: 'prev,next today',
center: 'title',
right: 'month,agendaWeek,basicWeek,agendaDay,basicDay'
},
2009-09-17 08:30:10 +02:00
editable: true,
eventSources: [
$.fullCalendar.gcalFeed(
"http://www.google.com/calendar/feeds/usa__en%40holiday.calendar.google.com/public/basic",
{
2009-09-21 12:11:08 +02:00
editable: true,
className: ['holiday']
2009-09-17 08:30:10 +02:00
}
),
/*$.fullCalendar.gcalFeed(
"http://www.google.com/calendar/feeds/mike%40maddogsportsbar.com/private-4ad75f9427058f8fe6525c0857c59fbc/basic",
{
className: 'maddog'
}
),*/
[
{
title: 'All Day Event',
start: new Date(y, m, 1)
2009-09-17 08:30:10 +02:00
},
{
title: 'Long Event',
start: new Date(y, m, d-5),
end: new Date(y, m, d-2)
2009-09-17 08:30:10 +02:00
},
{
id: 999,
title: 'Repeating Event',
start: new Date(y, m, d-3, 16, 0),
allDay: false
2009-09-17 08:30:10 +02:00
},
{
id: 999,
title: 'Repeating Event',
start: new Date(y, m, d+4, 16, 0),
2009-09-17 08:30:10 +02:00
allDay: false
},
{
title: 'Meeting',
start: new Date(y, m, d, 10, 30),
allDay: false
2009-09-17 08:30:10 +02:00
},
{
title: 'Lunch',
start: new Date(y, m, d, 12, 0),
end: new Date(y, m, d, 14, 0),
2009-09-17 08:30:10 +02:00
allDay: false
},
{
title: 'Birthday Party',
start: new Date(y, m, d+1, 19, 0),
end: new Date(y, m, d+1, 22, 30),
2009-09-17 08:30:10 +02:00
allDay: false
},
{
title: 'Click for Google',
start: new Date(y, m, 28),
end: new Date(y, m, 29),
url: 'http://google.com/'
2009-09-17 08:30:10 +02:00
}
]
]
});
});
</script>
<style>
.holiday,
.fc-agenda .holiday .fc-event-time,
2009-09-17 08:30:10 +02:00
.holiday a {
background: green;
border-color: green;
color: yellow;
2009-09-17 08:30:10 +02:00
}
.maddog,
.maddog a {
background: red;
border-color: red;
}
/* rescued from fullcalendar.css (not used here) */
.fc-event-nobg,
.fc-event-nobg a,
.fc-agenda .fc-event-nobg .fc-event-time {
border-style: none;
background: none;
color: inherit;
}
</style>
</head>
<body style='font-size:12px'>
<div id='calendar' style='width:900px;margin:20px auto 0;font-family:arial'></div>
</body>
2009-09-14 12:28:23 +02:00
</html>