* ci: Also check generated HTML with the "vnu" validator Because HTML Tidy apparently misses a bunch of errors. * thead -> tbody * More fixes * More fixes * Start checker in test runner
41 lines
1.7 KiB
HTML
41 lines
1.7 KiB
HTML
{# Copyright The IETF Trust 2015, All Rights Reserved #}
|
|
{% load origin %}
|
|
{% load static %}
|
|
{# FIXME: the weekview only renders correctly in quirks mode, i.e., not in HTML5 with "<!doctype html>" in the next line; it should be rewritten with fullcalendar #}
|
|
{# <!doctype html> #}
|
|
<html lang="en">
|
|
{% origin %}
|
|
<head>
|
|
<title>Weekview</title>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<script src="{% static 'ietf/js/agenda_filter.js' %}"></script>
|
|
<script src="{% static 'ietf/js/moment.js' %}"></script>
|
|
<script src="{% static 'ietf/js/moment-timezone-with-data-10-year-range.js' %}"></script>
|
|
<script src="{% static 'ietf/js/week-view.js' %}"></script>
|
|
<script>
|
|
var all_items = {{ items | safe }};
|
|
|
|
//===========================================================================
|
|
// Set up events for drawing the calendar
|
|
function redraw_weekview() {
|
|
var query_params = agenda_filter.parse_query_params(window.location.search);
|
|
var timezone_name = query_params.tz || 'utc';
|
|
|
|
items = prepare_items(all_items, timezone_name);
|
|
draw_calendar(items, agenda_filter.get_filter_params(query_params));
|
|
}
|
|
|
|
window.addEventListener("resize", redraw_weekview, false);
|
|
window.addEventListener("load", redraw_weekview, false);
|
|
window.addEventListener("hashchange", redraw_weekview, false);
|
|
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<p>
|
|
Error loading calendar.
|
|
</p>
|
|
</body>
|
|
</html> |